-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
307 lines (267 loc) · 7.96 KB
/
Copy path.gitignore
File metadata and controls
307 lines (267 loc) · 7.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# =============================================================================
# Python / language caches
# =============================================================================
__pycache__/
*.egg-info/
.venv/
.pytest_cache/
.hypothesis/
.mypy_cache/
.ruff_cache/
# Coq solver caches (anywhere in the tree)
*.lia.cache
*.nia.cache
*.nra.cache
.csdp.cache
.coq-env
.opam/
# Coq compilation artifacts outside coq/ — coq/*.vo and coq/*.glob are tracked
*.vos
*.vok
*.aux
# Editable install metadata
thiele_verify.egg-info/
# Generic ephemeral caches
.cache/
# =============================================================================
# IDE / OS / Node
# =============================================================================
.vscode/
.claude/
.codex
.idea/
.DS_Store
node_modules/
# =============================================================================
# Build directory — most artifacts are regenerated; track only what CI needs.
# =============================================================================
build/__pycache__/
build/netlist.json
# FPGA build artifacts (yosys/nextpnr/xc7frames2bit outputs — regenerated by
# fpga/run_synthesis_xc7.sh; the .json post-synth netlist alone is ~150 MB
# and exceeds GitHub's 100 MB single-file push limit).
build/thiele_xc7*.json
build/thiele_xc7*.bit
build/thiele_xc7*.fasm
build/thiele_xc7*.frames
build/thiele_xc7*.bba
build/xc7*.bin
build/yosys_xc7.log
build/nextpnr_xc7.log
build/*.vvp
build/*.vcd
build/*.cmi
build/*.cmo
build/*.cmx
build/*.o
build/gls_flat.v
build/thiele_kami_test.lock
build/thiele_cpu_kami_tb.out
build/extracted_vm_runner_native
build/kami_hw/*.cmi
build/kami_hw/*.cmx
build/kami_hw/*.o
build/kami_hw/*.bo
build/kami_hw/kami_to_bsv
build/kami_hw/Header.bsv
build/kami_hw/thiele_hw.bsv
build/kami_hw/thiele_hw_clean.bsv
build/verilator/*
build/verilator.lock
# Kernel-conversion vacuity probes (scripts/vacuity_gate.py). Each is an
# auto-generated, "DO NOT EDIT" .v synthesised from a theorem statement plus a
# fixed tactic, compiled to .glob/.vo. They are pure scaffolding — fully
# regenerated on every gate run and deterministically reproducible — so they
# do not belong in version control. The durable output is artifacts/
# vacuity_audit.json (auto-staged by the pre-commit hook), not these probes.
build/vacuity_probes/
# Forge runtime spill (generated by scripts/forge_artifact.sh at the repo root)
synth_cpu.ys
# Hardware build artifacts
hardware/synthesis_trap/test_tb
thielecpu/hardware/thiele_cpu_tb
thielecpu/hardware/thiele_cpu_test
thielecpu/hardware/thiele_cpu_sim
/thielecpu/hardware/test_serializer
/thielecpu/hardware/test_serializer_debug
thielecpu/hardware/*.o
trace
# =============================================================================
# Distribution / proofpack artifacts
# =============================================================================
dist/
*.tar.gz
*.zip
proofpack*.tar.gz
# Build cache scaffolding
.build_cache/
.test_artifacts/
.generated/
# =============================================================================
# Thesis LaTeX build artifacts (only the PDFs are canonical)
# =============================================================================
thesis/*.aux
thesis/*.bbl
thesis/*.blg
thesis/*.log
thesis/*.out
thesis/*.toc
# Root-anchored: catches accidental compiles at the repo root,
# without shadowing the tracked thesis/short_thesis.{tex,pdf}.
/short_thesis.*
# =============================================================================
# Logs and ephemeral demo / test output
# =============================================================================
logs/
*.log
!audit_logs/*.log
!audit_logs/*.txt
!artifacts/coq/no_oracle_build.log
!artifacts/coq/no_oracle_target_missing.log
terminal_output.md
security_log.json
*.vcd
results/*.out
# Scratch files some local runs may produce
baseline_dpll_up.py
dummy.cnf
dummy.json
thiele_driver.py
plot_results.py
audit_verification.py
# Phase / status reports (work-session spill)
STATUS_REPORT.md
INTEGRATION_COMPLETE.md
*_build_log.txt
*_build_output.txt
# AI-assistant diagnostics
diagnostics/
demos/practical_examples/output/
tmpclaude-*
# =============================================================================
# Results / experiments / runtime data
# =============================================================================
results/stress_tests/
results/shor/
results/graphs/
results/partition/
results/tsp/
results/proofs/
results/equivalence_bundle.json
results/thermo_experiment.json
results/structural_heat_experiment.json
results/time_dilation_experiment.json
results/time_dilation_curve.svg
results/halting_trap.json
!results/archive/
shape_of_truth_out/
TSP_SOLUTION/
tsp_work/
experiments/results/
experiments/*_[0-9][0-9][0-9][0-9][0-9][0-9]_*/
experiments/receipt_*.json
# Output / temp dirs
out/
*_output/
runtime/
tmp/
temp/
*.tmp
# Thiele Machine demo / batch artifacts
artifacts/*_nusd_receipt.jsonl
artifacts/*.gif
artifacts/landauer_batch_*/
artifacts/genesis_ablation_*/
artifacts/closed_work/
artifacts/nl_search/campaigns/
artifacts/nl_search/serious_3x3/
# Forge / sight-log runtime
sight_logs/*.json
sight_logs/atlas/*.json
sight_logs/atlas/*.png
sight_logs/atlas/*.txt
sight_logs/meta_observatory/
sight_logs/meta_atlas/
!sight_logs/.gitkeep
evolved_strategies/*.thiele
evolved_strategies/compiled/*.py
!evolved_strategies/.gitkeep
# Engine runtime artifacts
ascension_ledger.json
critic_report.json
language_models/*.pth
final_dialogue.log
final_result.json
alpha/ascension_ledger.json
beta/ascension_ledger.json
alpha/evolved_strategies/
beta/evolved_strategies/
alpha/mitosis_alpha.log
beta/mitosis_beta.log
# Calorimetry proofpack — generated analysis outputs only
proofpacks/calorimetry_v1/analysis/report.json
proofpacks/calorimetry_v1/analysis/figs/*.png
# =============================================================================
# Receipts / figures / data files (broad ignore + intentional re-includes)
# =============================================================================
# Keep canonical receipts tracked
!receipts/
figures/
!thesis/figures/
!thesis/figures/**
*.png
!assets/(T).png
!thesis/figures/*.png
*.csv
!data/cmb_sample.csv
!tests/data/public/*.csv
!proofpacks/calorimetry_v1/data/cal_data.csv
!proofpacks/calorimetry_v1/data/idle_baseline.csv
!artifacts/bell/supra_quantum_16_5.csv
!artifacts/bell/polytope_scan.csv
tseitin_receipts.json
# =============================================================================
# Reports / break tests
# =============================================================================
*report.jsonl
break_report.jsonl
# =============================================================================
# Certificates / keys (provisioned locally; never committed)
# =============================================================================
certificates/
kernel_secret.key
kernel_public.key
# Any real Ed25519 signing key dropped into artifacts/keys/ stays local.
# The ONLY exception is the documented non-secret reproducibility fixture
# (artifacts/keys/README.md), which is intentionally tracked.
artifacts/keys/*.pem
!artifacts/keys/bitlock_ed25519_private.pem
!artifacts/keys/bitlock_ed25519_private.pub.pem
# =============================================================================
# Local-only docs (live in .claude/, not for GitHub)
# =============================================================================
STYLE_GUIDE.md
CLAUDE.md
# Kernel template / reconstructed kernel (dev-only)
kernel_template/
thiele_min.py
# Local sandbox
/drips/
# Witness logs
WITNESS.jsonl
ouroboros/witness_in_potentia.py
# Misc local
requirements_filtered.txt
# =============================================================================
# RTL cosim checkpoint JSON dumps (CHECKPOINT opcode writes state to cwd)
# =============================================================================
/[0-9]*.json
/checkpoint.json
/ck.json
/..json
# minimal core build artifacts (rebuilt by `make verify`)
minimal/*.vo
minimal/*.vok
minimal/*.vos
minimal/*.glob
minimal/.*.aux