-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
202 lines (170 loc) · 3.45 KB
/
.gitignore
File metadata and controls
202 lines (170 loc) · 3.45 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
# SPDX-License-Identifier: PMPL-1.0-or-later
# RSR-compliant .gitignore
# OS & Editor
.DS_Store
Thumbs.db
*.swp
*.swo
*~
.idea/
# Training data scripts (one-off analysis, not part of build)
training_data/scripts/
.vscode/
# Build
/target/
/_build/
/build/
/dist/
/out/
# Dependencies
/node_modules/
/vendor/
/deps/
/.elixir_ls/
# Rust
# Cargo.lock # Keep for binaries
# Elixir
/cover/
/doc/
*.ez
erl_crash.dump
# Julia
*.jl.cov
*.jl.mem
/Manifest.toml
# ReScript
/lib/bs/
/.bsb.lock
# Python (SaltStack only)
__pycache__/
*.py[cod]
.venv/
# Ada/SPARK
*.ali
/obj/
/bin/
# Haskell
/.stack-work/
/dist-newstyle/
# Chapel
*.chpl.tmp.*
# Zig
.zig-cache/
zig-out/
zig-cache/
# Idris2
src/abi/build/
# Secrets
.env
.env.*
*.pem
*.key
secrets/
# Test/Coverage
/coverage/
htmlcov/
# Logs
*.log
/logs/
# Temp
/tmp/
*.tmp
*.bak
# Local prover artifacts
/HOL/
/proofs/mizar/*.aco
/proofs/mizar/*.ano
/proofs/mizar/*.atr
/proofs/mizar/*.cho
/proofs/mizar/*.dct
/proofs/mizar/*.dcx
/proofs/mizar/*.ecl
/proofs/mizar/*.eno
/proofs/mizar/*.ere
/proofs/mizar/*.err
/proofs/mizar/*.evl
/proofs/mizar/*.fil
/proofs/mizar/*.frm
/proofs/mizar/*.frx
/proofs/mizar/*.idx
/proofs/mizar/*.msx
/proofs/mizar/*.nol
/proofs/mizar/*.par
/proofs/mizar/*.prf
/proofs/mizar/*.ref
/proofs/mizar/*.sgl
/proofs/mizar/*.vcl
/proofs/mizar/*.wsx
/proofs/mizar/*.xml
# Hypatia scan cache
.hypatia/
# Crash recovery artifacts
ai-cli-crash-capture/
# External corpora (large, downloadable separately)
external_corpora/
# Large/intermediate training data (corpus-specific extracts, merged files)
# Keep base training_data/{premises,proof_states,tactics,stats}.jsonl and dated snapshots
training_data/*_max.jsonl
training_data/*_COMPLETE.jsonl
training_data/*_ABSOLUTE*.jsonl
training_data/*_ULTIMATE.jsonl
training_data/*_FINAL*.jsonl
training_data/*_BALANCED.jsonl
training_data/*_all.jsonl
training_data/*_coqgym.jsonl
training_data/*_mathlib4.jsonl
training_data/*_metamath.jsonl
training_data/stats_*.json
!training_data/stats.json
!training_data/stats_UNIFIED.json
training_data/vocabulary_*.txt
!training_data/vocabulary_UNIFIED.txt
# Large unified/merged JSONL files (exceed GitHub 100MB limit)
training_data/proof_states_UNIFIED.jsonl
training_data/proof_states_smtlib.jsonl
training_data/tactics_smtlib.jsonl
# TPTP full-share output exceeds 100MB (reproducible via scripts/extract_tptp.jl)
training_data/proof_states_tptp.a2ml
# KeY output exceeds 100MB (reproducible via scripts/extract_key.jl)
training_data/proof_states_key.jsonl
# Root-level merged artifacts
premises_merged.jsonl
proof_states_merged.jsonl
tactics_merged.jsonl
stats_merged.json
# Generated corpus reports (not source documentation)
COMPLETE_CORPUS_SUMMARY.md
CORPUS_EXPANSION_PLAN.md
CORPUS_MAXIMIZATION_REPORT.md
FINAL_CORPUS_COMPLETENESS_REPORT.md
PROVER_EXPANSION_ROADMAP.md
models/neural/
# Per-epoch training checkpoints (regenerated; only models/ root kept)
models/e*/
/models_e*/
# Zig FFI build output (regenerated by `zig build`)
src/zig_ffi/zig-out/
src/zig_ffi/.zig-cache/
# asdf version manager
.tool-versions
# Prover build artifacts (added 2026-04-05)
proofs/coq/**/*.vo
proofs/coq/**/*.vos
proofs/coq/**/*.vok
proofs/coq/**/*.glob
proofs/coq/**/.*.aux
proofs/agda/**/*.agdai
proofs/metamath/.metamath*
target/
node_modules/
_build/
deps/
.elixir_ls/
.cache/
build/
dist/
# Subagent worktrees (isolation mode)
.claude/worktrees/
# Generated corpus indices (rebuilt with `echidna corpus ingest`)
data/corpus/*.json
data/corpus/*.octads.jsonl