Skip to content

Commit 5e3a6f7

Browse files
author
Loop-Locksmith
committed
fix(coq): rwrite → rewrite typo in INV6_HybridQkGain.v line 62
`rwrite` is not a valid Coq tactic; this single-character typo prevented `inv_phi_in_unit` from parsing, which silently failed every downstream theorem (`inv_phi_pos`, `hybrid_gain_positive`, `inv6_supports_asha_stability`, `inv6_all_certified`). The file claimed "all admits closed" but did not actually compile. Surfaced by R5 review on PR #490 (#490 (comment)). Part-of: #441 Part-of: #446 Agent: Loop-Locksmith
1 parent 26a6c0e commit 5e3a6f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/phd/theorems/igla/INV6_HybridQkGain.v

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Proof.
5959
exact phi_pos.
6060
- (* 1/phi < 1 because phi > 1 *)
6161
(* From CorePhi: 1.618 < phi, so phi > 1, so 1/phi < 1 *)
62-
rwrite <- Rinv_1.
62+
rewrite <- Rinv_1.
6363
apply Rinv_lt_contravar.
6464
+ lra.
6565
+ pose proof phi_between_1_618_and_1_619 as [Hlo _].

0 commit comments

Comments
 (0)