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

Add lemma `view_update_frag`.

parent 4df70955
No related branches found
No related tags found
No related merge requests found
...@@ -389,12 +389,21 @@ Section cmra. ...@@ -389,12 +389,21 @@ Section cmra.
intros Hup. rewrite -(right_id _ _ (V a')). intros Hup. rewrite -(right_id _ _ (V a')).
apply view_update=> n bf. rewrite left_id. apply Hup. apply view_update=> n bf. rewrite left_id. apply Hup.
Qed. Qed.
Lemma view_update_auth a a' b' : Lemma view_update_auth a a' b' :
( n bf, rel n a bf rel n a' bf) V a ~~> V a'. ( n bf, rel n a bf rel n a' bf)
V a ~~> V a'.
Proof. Proof.
intros Hup. rewrite -(right_id _ _ (V a)) -(right_id _ _ (V a')). intros Hup. rewrite -(right_id _ _ (V a)) -(right_id _ _ (V a')).
apply view_update=> n bf. rewrite !left_id. apply Hup. apply view_update=> n bf. rewrite !left_id. apply Hup.
Qed. Qed.
Lemma view_update_frag b b' :
( a n bf, rel n a (b bf) rel n a (b' bf))
b ~~> b'
V b ~~> V b'.
Proof.
rewrite !cmra_total_update view_validN_eq=> ?? n [[[q ag]|] bf]; naive_solver.
Qed.
Lemma view_update_alloc_frac q a b : Lemma view_update_alloc_frac q a b :
( n bf, rel n a bf rel n a (b bf)) ( n bf, rel n a bf rel n a (b bf))
......
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