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

Fix mess by my previous commits ...

due to an accidental git commit --amend after a git push.
parent 6146f3c9
No related branches found
No related tags found
No related merge requests found
......@@ -290,7 +290,7 @@ Proof.
intros s2; rewrite elem_of_intersection. destruct_conjs.
unfold up_set; rewrite elem_of_bind; intros (?&s1&?&?&?).
apply closed_steps with T2 s1; auto with sts.
Admitted.
Qed.
Canonical Structure RA : cmraT := validityRA (car sts).
End sts_dra. End sts_dra.
......
......@@ -42,7 +42,7 @@ Module barrier_proto.
Proof.
split.
- move=>[p I]. rewrite /= /tok !mkSet_elem_of /= =>HI.
destruct p; set_solver.
destruct p; set_solver eauto.
- (* If we do the destruct of the states early, and then inversion
on the proof of a transition, it doesn't work - we do not obtain
the equalities we need. So we destruct the states late, because this
......@@ -57,9 +57,7 @@ Module barrier_proto.
assert (Change i change_tokens I1) as HI1
by (rewrite mkSet_not_elem_of; set_solver +Hs1).
assert (Change i change_tokens I2) as HI2.
{ destruct p.
- set_solver +Htok Hdisj HI1.
- set_solver +Htok Hdisj HI1 / discriminate. }
{ destruct p; set_solver +Htok Hdisj HI1. }
done.
Qed.
......@@ -92,7 +90,7 @@ Module barrier_proto.
i I sts.steps (State High I, {[ Change i ]}) (State High (I {[ i ]}), ).
Proof.
intros. apply rtc_once.
constructor; first constructor; rewrite /= /tok /=; [set_solver..|].
constructor; first constructor; rewrite /= /tok /=; [set_solver eauto..|].
(* TODO this proof is rather annoying. *)
apply elem_of_equiv=>t. rewrite !elem_of_union.
rewrite !mkSet_elem_of /change_tokens /=.
......@@ -100,7 +98,7 @@ Module barrier_proto.
rewrite elem_of_difference elem_of_singleton.
destruct (decide (i = j)); set_solver.
Qed.
Lemma split_step p i i1 i2 I :
i I i1 I i2 I i1 i2
sts.steps (State p I, {[ Change i ]})
......
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