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

avoid rewrite in tactics, for additional robustness

parent 5b0340e6
Branches
Tags
No related merge requests found
......@@ -56,7 +56,8 @@ Ltac uLöb tac :=
let H := fresh in intro H; go; revert H
| |- ?R (?L -★ locked _) => apply wand_intro_l;
(* TODO: Do sth. more robust than rewriting. *)
trans ( (L R))%I; first (rewrite later_sep -(later_intro L); reflexivity );
trans ( L R)%I; first (apply sep_mono_l, later_intro; reflexivity);
trans ( (L R))%I; first (apply equiv_spec, later_sep; reflexivity );
unlock; tac
end
in go.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment