Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/coq-proofs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ on:
branches: [main]
paths:
- 'trinity-clara/proofs/**'
- 'docs/phd/theorems/**'
# invariants.rs migrated to gHashTag/trios-trainer-igla per L-T1+L-T3
- '.github/workflows/coq-proofs.yml'
pull_request:
branches: [main]
paths:
- 'trinity-clara/proofs/**'
- 'docs/phd/theorems/**'

concurrency:
group: coq-${{ github.ref }}
Expand Down Expand Up @@ -65,6 +67,23 @@ jobs:
coqc trinity-clara/proofs/igla/igla_asha_bound.v
echo "✅ INV-2 OK: asha_champion_survives"

# --- docs/phd/theorems/igla/* via _CoqProject -------------
# Added for INV-6-HybridQkGain (#441, PR #490) and future
# IGLA_* theorems under docs/phd/theorems/igla/. Respects
# the local _CoqProject's -R trinity Trinity / -R igla IGLA
# layout so CorePhi, AlphaPhi, FormulaEval can be imported.
echo "=== docs/phd/theorems/igla/* (Trinity anchor files) ==="
if [ -f docs/phd/theorems/igla/_CoqProject ]; then
cd docs/phd/theorems
# coq_makefile + make-all respects _CoqProject's load paths
coq_makefile -f igla/_CoqProject -o igla/Makefile
make -f igla/Makefile all
cd -
echo "✅ docs/phd/theorems/igla/* OK"
else
echo "(no _CoqProject under docs/phd/theorems/igla — skipped)"
fi

echo "=== ALL PROOFS VERIFIED ==="

- name: Check no Admitted in proofs (L-R14 strict)
Expand Down
Loading