Commit 1ed7e24
fix(proof-bundle): non-vacuous fixtures so reconcile reports complete (#67)
## Summary
Fixes the pre-existing **"Proof assistant bundle checks"** CI failure
(the one flagged on #65 as unrelated to that PR). The
`proof-assistant-bundle` job runs
`test/ci/proof_bundle_reconciliation.jl` +
`scripts/proof-bundle-evidence.jl`; both failed because
`reconcile_proof_bundle` returned `"incomplete"` where they expected
`"complete"`.
## Root cause — stale test fixtures, not a logic bug
This is the honesty machinery working *correctly*. Both fixtures wrote
proof artifacts whose theorem proves bare **`True`**:
```lean
theorem ci_bundle_complete : True := by trivial
```
`proof_export.jl`'s `_vacuous_statement` /
`_assistant_has_substantive_statement` (added to stop false "verified"
claims) correctly treats a `True`-only tautology as **vacuous** — it
proves nothing about the model — so the artifact reconciles to
`"incomplete"`. The fixtures were stale relative to that check.
## Fix
Replace the vacuous `True` statements with a real, non-vacuous claim (`1
+ 1 = 2`) in the Lean/Coq/Isabelle fixtures of **both** files,
exercising the substantive-statement path so reconciliation reports
`"complete"` / `"assistant_completed"` as intended. No production logic
changed — only the test/evidence fixtures.
## Verification
- `test/ci/proof_bundle_reconciliation.jl` → **12/12** pass.
- `scripts/proof-bundle-evidence.jl` → exit 0, writes
`build/proof_bundle_evidence.json`.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
https://claude.ai/code/session_01UPFC9YQ7g9gc3VnRox42Q1
---
_Generated by [Claude
Code](https://claude.ai/code/session_01UPFC9YQ7g9gc3VnRox42Q1)_
Co-authored-by: Claude <noreply@anthropic.com>1 parent 815e66b commit 1ed7e24
2 files changed
Lines changed: 8 additions & 10 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
58 | | - | |
| 57 | + | |
59 | 58 | | |
60 | 59 | | |
61 | 60 | | |
| |||
67 | 66 | | |
68 | 67 | | |
69 | 68 | | |
70 | | - | |
| 69 | + | |
71 | 70 | | |
72 | | - | |
| 71 | + | |
73 | 72 | | |
74 | 73 | | |
75 | 74 | | |
| |||
86 | 85 | | |
87 | 86 | | |
88 | 87 | | |
89 | | - | |
| 88 | + | |
90 | 89 | | |
91 | 90 | | |
92 | 91 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
60 | | - | |
| 59 | + | |
61 | 60 | | |
62 | 61 | | |
63 | 62 | | |
| |||
69 | 68 | | |
70 | 69 | | |
71 | 70 | | |
72 | | - | |
| 71 | + | |
73 | 72 | | |
74 | | - | |
| 73 | + | |
75 | 74 | | |
76 | 75 | | |
77 | 76 | | |
| |||
88 | 87 | | |
89 | 88 | | |
90 | 89 | | |
91 | | - | |
| 90 | + | |
92 | 91 | | |
93 | 92 | | |
94 | 93 | | |
| |||
0 commit comments