-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
135 lines (116 loc) · 2.57 KB
/
Copy path.gitignore
File metadata and controls
135 lines (116 loc) · 2.57 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
# Rust
target/
Cargo.lock
!scpn-control-rs/Cargo.lock
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
build/
*.egg
.eggs/
# Virtual environments
.venv/
.venv-*/
venv/
env/
# Testing
.pytest_cache/
.hypothesis/
.coverage
htmlcov/
.tox/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Benchmark results (local runs)
benchmarks/results/
# Simulation outputs
*.npz
*.gif
!docs/**/*.gif
*.png
!docs/**/*.png
!weights/pretrained_mlp_itpa.npz
!weights/pretrained_fno_eurofusion_jet.npz
!weights/neural_equilibrium_sparc.npz
!weights/neural_equilibrium_iter.npz
!weights/neural_transport_qlknn.npz
!validation/reference_data/diiid/disruption_shots/*.npz
!validation/reference_data/diiid/freegs/*.npz
# Artifacts
artifacts/
!artifacts/.gitkeep
site/
# Local generated validation reports
validation/reports/code_to_code_benchmark.json
validation/reports/code_to_code_benchmark.md
validation/reports/scpn_pid_mpc_benchmark.json
validation/reports/scpn_pid_mpc_benchmark.md
# Optional native solver build outputs
src/scpn_control/core/bin/
src/scpn_control/core/libscpn_solver.so
src/scpn_control/core/scpn_solver.dll
# Streamlit (allow config.toml for Cloud deployment)
.streamlit/secrets.toml
# TeX build artifacts
*.aux
*.log
*.out
*.toc
*.fls
*.fdb_latexmk
*.synctex.gz
*.bbl
*.blg
*Notes.bib
!docs/**/*.pdf
# Release archives
*.zip
!weights/ppo_tokamak.zip
*.tar.gz
!dist/*.tar.gz
# Tool caches
.mypy_cache/
.ruff_cache/
.benchmarks/
.lake/
# Jupyter
.ipynb_checkpoints/
# ---------------------------------------------------------------------------
# Internal operational surfaces — NEVER commit, NEVER publish, FOREVER private
# ---------------------------------------------------------------------------
# docs/internal/ holds TODO, audits, handovers, SOTA plans, and other private
# ops content. It must not appear in: git index, public markdown inventory,
# MkDocs site, PyPI package data, or GitHub Pages. Guards:
# tools/check_docs_internal_private.py (preflight + CI)
# tools/check_public_surface_hygiene.py (skips prefix)
# tools/capability_manifest.py (rejects public_markdown under /internal/)
# tools/check_history_exposure.py (blocked path pattern)
# Do NOT add negation rules (!docs/internal/...) that re-include this tree.
docs/internal/
docs/internal/**
.agent_metadata.json
docs/assets/orcid_qr.png
.coordination/
.coordination/**
# Local backups — never committed
BACKUP/
ARCHIVE/
# acados generated OCP solver code (benchmark/validation runs)
c_generated_code/
*_ocp_*.json
acados_ocp_*.json
scpn_control_nmpc_ocp.json
CLAUDE.md
.claude/
.env
node_modules/