mirror of
https://github.com/achlipala/frap.git
synced 2024-11-10 00:07:51 +00:00
Fix for Coq 8.5 again
This commit is contained in:
parent
466ea72b27
commit
0e68042f07
2 changed files with 2 additions and 18 deletions
|
@ -651,11 +651,7 @@ Module Stlc.
|
|||
| [ H : step _ _ |- _ ] => invert H
|
||||
end.
|
||||
right.
|
||||
exists (Plus x e2).
|
||||
eapply StepRule with (C := Plus1 C e2).
|
||||
eauto.
|
||||
eauto.
|
||||
assumption.
|
||||
|
||||
match goal with
|
||||
| [ H : exists x, _ |- _ ] => invert H
|
||||
|
@ -664,11 +660,7 @@ Module Stlc.
|
|||
| [ H : step _ _ |- _ ] => invert H
|
||||
end.
|
||||
right.
|
||||
exists (Plus e1 x).
|
||||
eapply StepRule with (C := Plus2 e1 C).
|
||||
eauto.
|
||||
eauto.
|
||||
assumption.
|
||||
|
||||
match goal with
|
||||
| [ H : exists x, step e1 _ |- _ ] => invert H
|
||||
|
@ -706,11 +698,7 @@ Module Stlc.
|
|||
| [ H : step _ _ |- _ ] => invert H
|
||||
end.
|
||||
right.
|
||||
exists (App x e2).
|
||||
eapply StepRule with (C := App1 C e2).
|
||||
eauto.
|
||||
eauto.
|
||||
assumption.
|
||||
|
||||
match goal with
|
||||
| [ H : exists x, _ |- _ ] => invert H
|
||||
|
@ -719,11 +707,7 @@ Module Stlc.
|
|||
| [ H : step _ _ |- _ ] => invert H
|
||||
end.
|
||||
right.
|
||||
exists (App e1 x).
|
||||
eapply StepRule with (C := App2 e1 C).
|
||||
eauto.
|
||||
eauto.
|
||||
assumption.
|
||||
|
||||
match goal with
|
||||
| [ H : exists x, step e1 _ |- _ ] => invert H
|
||||
|
|
|
@ -304,10 +304,10 @@ Module References.
|
|||
Proof.
|
||||
induct 2; t.
|
||||
match goal with
|
||||
| [ H1 : _ = Some _, H2 : forall l : loc, _ |- _ ] => apply H3 in H8; t
|
||||
| [ H1 : _ = Some _, H2 : forall l : loc, _ |- _ ] => apply H2 in H1; t
|
||||
end.
|
||||
match goal with
|
||||
| [ H1 : _ = Some _, H2 : forall l : loc, _ |- _ ] => apply H3 in H8; t
|
||||
| [ H1 : _ = Some _, H2 : forall l : loc, _ |- _ ] => apply H2 in H1; t
|
||||
end.
|
||||
Qed.
|
||||
|
||||
|
|
Loading…
Reference in a new issue