Skip to content

Commit 4ae4c20

Browse files
authored
Merge pull request #18 from DistributedComponents/transparent-have
make key have sentences transparent to enable extraction in 8.20
2 parents df89c4a + 87d0560 commit 4ae4c20

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

theories/Examples/Calculator/DelegatingCalculatorServer.v

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,21 +91,21 @@ Proof. by move=>????; rewrite dom0. Qed.
9191

9292
Next Obligation.
9393
rewrite -(unitR V)/V.
94-
have V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
94+
have @V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
9595
apply: (injectL V); do?[apply: hook_complete_unit | apply: hooks_consistent_unit].
9696
by move=>??????; rewrite dom0.
9797
Defined.
9898

9999
Next Obligation.
100100
rewrite -(unitR V)/V.
101-
have V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
101+
have @V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
102102
apply: (injectR V); do?[apply: hook_complete_unit | apply: hooks_consistent_unit].
103103
by move=>??????; rewrite dom0.
104104
Qed.
105105

106106
Next Obligation.
107107
rewrite -(unitR V)/V.
108-
have V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
108+
have @V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
109109
apply: (injectL V); do?[apply: hook_complete_unit | apply: hooks_consistent_unit].
110110
by move=>??????; rewrite dom0.
111111
Defined.

theories/Examples/Calculator/SimpleCalculatorApp.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Program Definition client_run (u : unit) :
223223

224224
Next Obligation.
225225
rewrite -(unitR V)/V.
226-
have V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
226+
have @V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
227227
apply: (injectL V); do?[apply: hook_complete_unit | apply: hooks_consistent_unit].
228228
by move=>??????; rewrite dom0.
229229
Qed.
@@ -282,7 +282,7 @@ Program Definition server2_run (u : unit) :
282282

283283
Next Obligation.
284284
rewrite -(unitR V)/V.
285-
have V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
285+
have @V: valid (W1 \+ W2 \+ Unit) by rewrite unitR validV.
286286
apply: (injectR V); do?[apply: hook_complete_unit | apply: hooks_consistent_unit].
287287
by move=>??????; rewrite dom0.
288288
Qed.

0 commit comments

Comments
 (0)