Skip to content
Snippets Groups Projects
Commit 126d54c3 authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Internalized versions of the equality on funC and morC.

parent 66ee8a76
No related branches found
No related tags found
No related merge requests found
......@@ -1361,6 +1361,12 @@ Lemma option_validI {A : cmraT} (mx : option A) :
mx ⊣⊢ match mx with Some x => x | None => True end.
Proof. uPred.unseal. by destruct mx. Qed.
(* Functions *)
Lemma cofe_funC_equivI {A B} (f g : A -c> B) : f g ⊣⊢ x, f x g x.
Proof. by uPred.unseal. Qed.
Lemma cofe_moreC_equivI {A B : cofeT} (f g : A -n> B) : f g ⊣⊢ x, f x g x.
Proof. by uPred.unseal. Qed.
(* Timeless instances *)
Global Instance pure_timeless φ : TimelessP ( φ : uPred M)%I.
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