Skip to content
Snippets Groups Projects
Commit 8453ed18 authored by Jonas Kastberg's avatar Jonas Kastberg
Browse files

Added existential quantification elimination rule

parent 176ff8bb
No related branches found
No related tags found
No related merge requests found
Pipeline #26767 passed
......@@ -99,6 +99,10 @@ Section subtype.
iIntros "#Hle" (v) "!>". iDestruct 1 as (A) "H". iExists A. by iApply "Hle".
Qed.
Lemma lty_exist_le_elim C B :
(C B) <: ( A, C A).
Proof. iIntros "!>" (v) "Hle". by iExists B. Qed.
Lemma lty_rec_le_1 (C : lty Σ lty Σ) `{!Contractive C} :
lty_rec C <: C (lty_rec C).
Proof.
......
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