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

Added proper and nonexpansive classes for iMsg_car

parent 69e9e8d2
No related branches found
No related tags found
No related merge requests found
Pipeline #38535 failed
......@@ -356,6 +356,17 @@ Section proto.
Proof. by rewrite internal_eq_sym iProto_message_end_equivI. Qed.
(** ** Non-expansiveness of operators *)
Global Instance iMsg_car_proper :
Proper (iMsg_equiv ==> (=) ==> () ==> ()) (iMsg_car (Σ:=Σ) (V:=V)).
Proof.
iIntros (m1 m2 meq v1 v2 veq p1 p2 peq). rewrite meq. by do 2 f_equiv=> //.
Qed.
Global Instance iMsg_car_ne :
Proper (iMsg_dist n ==> (=) ==> (dist n) ==> (dist n)) (iMsg_car (Σ:=Σ) (V:=V)).
Proof.
iIntros (n m1 m2 meq v1 v2 veq p1 p2 peq). rewrite meq. by do 2 f_equiv=> //.
Qed.
Global Instance iMsg_contractive v n :
Proper (dist n ==> dist_later n ==> dist n) (iMsg_base (Σ:=Σ) (V:=V) v).
Proof. rewrite iMsg_base_eq=> P1 P2 HP p1 p2 Hp w q /=. solve_contractive. 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