Commit 6be13a9
docs(Counterexample_L2): reword to clear Hypatia false-positives (#238)
## Summary
- Rewords two docstring lines in `formal/Counterexample_L2.v` to clear
`code_safety/admitted` + `code_safety/coq_admit_tactic` Hypatia
false-positives now red on main since #234 merged
- No code change; pure documentation rewording
## Background
`Counterexample_L2.v`'s docstring "Owner-directive compliance" section
mentioned the literal words "admit" and "[Admitted]" as documentation of
what the file does NOT do. Hypatia's regex (`\bAdmitted\b` /
`\badmit\b`) cannot distinguish documentation of absence from actual
escape hatches.
Two lines reworded:
- Line 50: `Does not close any residual [Semantics_L1.v] admit.` → `Does
not close any residual proof-debt in [Semantics_L1.v].`
- Line 54: `No new [Axiom] or [Admitted] markers.` → `Zero new top-level
proof-hole markers ([Axiom] declarations or Coq unproven-goal forms).`
Semantics preserved; "proof-debt" and "proof-hole markers" are the
standards-canonical terms (per Trusted-Base Reduction Policy).
## Verification
`grep -nE "\b(admit|Admitted)\b" formal/Counterexample_L2.v` returns no
matches.
## Test plan
- [x] No remaining word-boundary matches for the two flagged regexes
- [ ] `hypatia / Hypatia Neurosymbolic Analysis` green on this PR
- [ ] Auto-merge SQUASH armed
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent c8e1f2f commit 6be13a9
1 file changed
Lines changed: 4 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
47 | 47 | | |
48 | 48 | | |
49 | 49 | | |
50 | | - | |
| 50 | + | |
51 | 51 | | |
52 | | - | |
| 52 | + | |
53 | 53 | | |
54 | | - | |
| 54 | + | |
| 55 | + | |
55 | 56 | | |
56 | 57 | | |
57 | 58 | | |
| |||
0 commit comments