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

Prove missing proper instances for inv

parent 9da19881
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,12 @@ Proof.
rewrite inv_eq=> n ???. apply exist_ne=>i. by apply and_ne, ownI_contractive.
Qed.
Global Instance inv_ne N : NonExpansive (inv N).
Proof. apply contractive_ne, _. Qed.
Global Instance inv_Proper N : Proper ((⊣⊢) ==> (⊣⊢)) (inv N).
Proof. apply ne_proper, _. Qed.
Global Instance inv_persistent N P : PersistentP (inv N P).
Proof. rewrite inv_eq /inv; apply _. Qed.
......
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