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

Merge branch 'ofe_tweaks' into 'master'

Add a `Proper` instance for ccompose.

See merge request iris/iris!695
parents b123b1a4 9fb6751e
No related branches found
No related tags found
No related merge requests found
......@@ -604,6 +604,9 @@ Infix "◎" := ccompose (at level 40, left associativity).
Global Instance ccompose_ne {A B C} :
NonExpansive2 (@ccompose A B C).
Proof. intros n ?? Hf g1 g2 Hg x. rewrite /= (Hg x) (Hf (g2 x)) //. Qed.
Global Instance ccompose_proper {A B C} :
Proper (() ==> () ==> ()) (@ccompose A B C).
Proof. apply ne_proper_2; apply _. Qed.
(* Function space maps *)
Definition ofe_mor_map {A A' B B'} (f : A' -n> A) (g : B -n> B')
......
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