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

ghost_map API tweaks:

* Rename ghost_map_elem_elem_frac_ne → ghost_map_elem_frac_ne,
  ghost_map_elem_elem_ne → ghost_map_elem_ne.
* Make ghost_map_elem_persist work for arbitrary `dfrac`.
* Add ghost_map_insert_persist.
parent 9bd0393e
No related branches found
No related tags found
No related merge requests found
......@@ -95,23 +95,20 @@ Section lemmas.
unseal. iCombine "Hl1 Hl2" as "Hl". eauto with iFrame.
Qed.
Lemma ghost_map_elem_elem_frac_ne γ k1 k2 dq1 dq2 v1 v2 :
Lemma ghost_map_elem_frac_ne γ k1 k2 dq1 dq2 v1 v2 :
¬ (dq1 dq2) k1 [γ]{dq1} v1 -∗ k2 [γ]{dq2} v2 -∗ k1 k2⌝.
Proof.
iIntros (?) "H1 H2"; iIntros (->).
by iDestruct (ghost_map_elem_valid_2 with "H1 H2") as %[??].
Qed.
Lemma ghost_map_elem_elem_ne γ k1 k2 dq2 v1 v2 :
Lemma ghost_map_elem_ne γ k1 k2 dq2 v1 v2 :
k1 [γ] v1 -∗ k2 [γ]{dq2} v2 -∗ k1 k2⌝.
Proof. apply ghost_map_elem_elem_frac_ne. apply: exclusive_l. Qed.
Proof. apply ghost_map_elem_frac_ne. apply: exclusive_l. Qed.
(** Make an element read-only. *)
Lemma ghost_map_elem_persist k γ q v :
k [γ]{#q} v ==∗ k [γ] v.
Proof.
unseal. iApply own_update.
apply gmap_view_persist.
Qed.
Lemma ghost_map_elem_persist k γ dq v :
k [γ]{dq} v ==∗ k [γ] v.
Proof. unseal. iApply own_update. apply gmap_view_persist. Qed.
(** * Lemmas about [ghost_map_auth] *)
Lemma ghost_map_alloc_strong P m :
......@@ -193,6 +190,14 @@ Section lemmas.
unseal. intros ?. rewrite -own_op.
iApply own_update. apply: gmap_view_alloc; done.
Qed.
Lemma ghost_map_insert_persist {γ m} k v :
m !! k = None
ghost_map_auth γ 1 m ==∗ ghost_map_auth γ 1 (<[k := v]> m) k [γ] v.
Proof.
iIntros (?) "Hauth".
iMod (ghost_map_insert k with "Hauth") as "[$ Helem]"; first done.
iApply ghost_map_elem_persist. done.
Qed.
Lemma ghost_map_delete {γ m k v} :
ghost_map_auth γ 1 m -∗ k [γ] v ==∗ ghost_map_auth γ 1 (delete k m).
......
......@@ -96,8 +96,7 @@ Section proph_map.
proph p vs1 -∗ proph p vs2 -∗ False.
Proof.
rewrite proph_eq /proph_def. iIntros "Hp1 Hp2".
iDestruct (ghost_map_elem_elem_ne with "Hp1 Hp2") as %?.
done.
by iDestruct (ghost_map_elem_ne with "Hp1 Hp2") as %?.
Qed.
Lemma proph_map_new_proph p ps pvs :
......
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