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

Slices are contractive.

parent e922a646
No related branches found
No related tags found
No related merge requests found
......@@ -45,11 +45,17 @@ Implicit Types P Q : iProp Σ.
Global Instance box_own_prop_ne n γ : Proper (dist n ==> dist n) (box_own_prop γ).
Proof. solve_proper. Qed.
Global Instance box_own_prop_contractive γ : Contractive (box_own_prop γ).
Proof. solve_contractive. Qed.
Global Instance box_inv_ne n γ : Proper (dist n ==> dist n) (slice_inv γ).
Proof. solve_proper. Qed.
Global Instance slice_ne n γ : Proper (dist n ==> dist n) (slice N γ).
Proof. solve_proper. Qed.
Global Instance slice_contractive γ : Contractive (slice N γ).
Proof. solve_contractive. Qed.
Global Instance slice_persistent γ P : PersistentP (slice N γ P).
Proof. apply _. Qed.
......
......@@ -37,4 +37,4 @@ Section core.
Qed.
End core.
Global Opaque coreP.
\ No newline at end of file
Global Opaque coreP.
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