Skip to content
Snippets Groups Projects
Commit 57dbcba0 authored by Ralf Jung's avatar Ralf Jung
Browse files

Merge branch 'robbert/later_exist_except_0' into 'master'

Add lemma `later_exist_except_0`.

See merge request iris/iris!337
parents 263ab0d2 5f45af1a
No related branches found
No related tags found
No related merge requests found
...@@ -187,6 +187,8 @@ Proof. ...@@ -187,6 +187,8 @@ Proof.
Qed. Qed.
Lemma later_exist_2 {A} (Φ : A PROP) : ( a, Φ a) ( a, Φ a). Lemma later_exist_2 {A} (Φ : A PROP) : ( a, Φ a) ( a, Φ a).
Proof. apply exist_elim; eauto using exist_intro. Qed. Proof. apply exist_elim; eauto using exist_intro. Qed.
Lemma later_exist_except_0 {A} (Φ : A PROP) : ( a, Φ a) ( a, Φ a).
Proof. apply later_exist_false. Qed.
Lemma later_exist `{Inhabited A} (Φ : A PROP) : ( a, Φ a) ⊣⊢ ( a, Φ a). Lemma later_exist `{Inhabited A} (Φ : A PROP) : ( a, Φ a) ⊣⊢ ( a, Φ a).
Proof. Proof.
apply: anti_symm; [|apply later_exist_2]. apply: anti_symm; [|apply later_exist_2].
......
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