Skip to content
Snippets Groups Projects
Commit 850e6c3c authored by Jacques-Henri Jourdan's avatar Jacques-Henri Jourdan
Browse files

Remove Admitted.

parent 4cd7ccda
No related branches found
No related tags found
No related merge requests found
...@@ -75,10 +75,16 @@ Section tests. ...@@ -75,10 +75,16 @@ Section tests.
emp -∗ P -∗ Q -∗ R -∗ (P Q). emp -∗ P -∗ Q -∗ R -∗ (P Q).
Proof. iIntros "#? HP HQ HR". iAlways. by iSplitL "HP". Qed. Proof. iIntros "#? HP HQ HR". iAlways. by iSplitL "HP". Qed.
(* We do not use section variables to avoid coq bug #5735. *) (* This is a hack to avoid avoid coq bug #5735: sections variables
Instance BU : BUpd PROP. Admitted. ignore hint modes. So we assume the instances in a way that
Instance FU : FUpd PROP. Admitted. cannot be used by type class resolution, and then declare the
Instance FUF : FUpdFacts PROP. Admitted. instance. as such. *)
Context (BU0 : BUpd PROP * unit).
Instance BU : BUpd PROP := fst BU0.
Context (FU0 : FUpd PROP * unit).
Instance FU : FUpd PROP := fst FU0.
Context (FUF0 : FUpdFacts PROP * unit).
Instance FUF : FUpdFacts PROP := fst FUF0.
Lemma test_apply_fupd_intro_mask E1 E2 P : Lemma test_apply_fupd_intro_mask E1 E2 P :
E2 E1 P -∗ |={E1,E2}=> |={E2,E1}=> P. E2 E1 P -∗ |={E1,E2}=> |={E2,E1}=> P.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment