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

Make identation more consistent in upred/wp tactics.

parent a39b10c9
No related branches found
No related tags found
No related merge requests found
...@@ -151,19 +151,19 @@ Tactic Notation "ecancel" open_constr(Ps) := ...@@ -151,19 +151,19 @@ Tactic Notation "ecancel" open_constr(Ps) :=
Will turn this goal into P ⊑ Q and strip ▷ in P below ★, ∧, ∨. *) Will turn this goal into P ⊑ Q and strip ▷ in P below ★, ∧, ∨. *)
Ltac strip_later := Ltac strip_later :=
let rec strip := let rec strip :=
lazymatch goal with lazymatch goal with
| |- (_ _) _ => | |- (_ _) _ =>
etrans; last (eapply equiv_entails_sym, later_sep); etrans; last (eapply equiv_entails_sym, later_sep);
apply sep_mono; strip apply sep_mono; strip
| |- (_ _) _ => | |- (_ _) _ =>
etrans; last (eapply equiv_entails_sym, later_and); etrans; last (eapply equiv_entails_sym, later_and);
apply sep_mono; strip apply sep_mono; strip
| |- (_ _) _ => | |- (_ _) _ =>
etrans; last (eapply equiv_entails_sym, later_or); etrans; last (eapply equiv_entails_sym, later_or);
apply sep_mono; strip apply sep_mono; strip
| |- _ _ => apply later_mono; reflexivity | |- _ _ => apply later_mono; reflexivity
| |- _ _ => apply later_intro; reflexivity | |- _ _ => apply later_intro; reflexivity
end end
in let rec shape_Q := in let rec shape_Q :=
lazymatch goal with lazymatch goal with
| |- _ (_ _) => | |- _ (_ _) =>
...@@ -190,13 +190,14 @@ Ltac strip_later := ...@@ -190,13 +190,14 @@ Ltac strip_later :=
(* TODO: this name may be a big too general *) (* TODO: this name may be a big too general *)
Ltac revert_all := Ltac revert_all :=
lazymatch goal with lazymatch goal with
| |- _, _ => let H := fresh in intro H; revert_all; | |- _, _ =>
(* TODO: Really, we should distinguish based on whether this is a let H := fresh in intro H; revert_all;
dependent function type or not. Right now, we distinguish based (* TODO: Really, we should distinguish based on whether this is a
on the sort of the argument, which is suboptimal. *) dependent function type or not. Right now, we distinguish based
first [ apply (const_intro_impl _ _ _ H); clear H on the sort of the argument, which is suboptimal. *)
| revert H; apply forall_elim'] first [ apply (const_intro_impl _ _ _ H); clear H
| |- ?C _ => apply impl_entails | revert H; apply forall_elim']
| |- _ _ => apply impl_entails
end. end.
(** This starts on a goal of the form ∀ ..., ?0... → ?1 ⊑ ?2. (** This starts on a goal of the form ∀ ..., ?0... → ?1 ⊑ ?2.
...@@ -217,16 +218,15 @@ Ltac löb tac := ...@@ -217,16 +218,15 @@ Ltac löb tac :=
(* Now introduce again all the things that we reverted, and at the bottom, (* Now introduce again all the things that we reverted, and at the bottom,
do the work *) do the work *)
let rec go := let rec go :=
lazymatch goal with lazymatch goal with
| |- _ ( _, _) => apply forall_intro; | |- _ ( _, _) =>
let H := fresh in intro H; go; revert H apply forall_intro; let H := fresh in intro H; go; revert H
| |- _ ( _ _) => apply impl_intro_l, const_elim_l; | |- _ ( _ _) =>
let H := fresh in intro H; go; revert H apply impl_intro_l, const_elim_l; let H := fresh in intro H; go; revert H
(* This is the "bottom" of the goal, where we see the impl introduced (* This is the "bottom" of the goal, where we see the impl introduced
by uPred_revert_all as well as the ▷ from löb_strong and the □ we added. *) by uPred_revert_all as well as the ▷ from löb_strong and the □ we added. *)
| |- ?R (?L _) => apply impl_intro_l; | |- ?R (?L _) => apply impl_intro_l;
trans (L R)%I; trans (L R)%I;
first (eapply equiv_entails, always_and_sep_r, _; reflexivity); [eapply equiv_entails, always_and_sep_r, _; reflexivity | tac]
tac end
end
in go. in go.
...@@ -15,25 +15,25 @@ Ltac wp_finish := ...@@ -15,25 +15,25 @@ Ltac wp_finish :=
match goal with match goal with
| |- _ _ => etrans; [|apply later_mono; go; reflexivity] | |- _ _ => etrans; [|apply later_mono; go; reflexivity]
| |- _ wp _ _ _ => | |- _ wp _ _ _ =>
etrans; [|eapply wp_value_pvs; reflexivity]; etrans; [|eapply wp_value_pvs; reflexivity];
(* sometimes, we will have to do a final view shift, so only apply (* sometimes, we will have to do a final view shift, so only apply
pvs_intro if we obtain a consecutive wp *) pvs_intro if we obtain a consecutive wp *)
try (eapply pvs_intro; try (eapply pvs_intro;
match goal with |- _ wp _ _ _ => simpl | _ => fail end) match goal with |- _ wp _ _ _ => simpl | _ => fail end)
| _ => idtac | _ => idtac
end in simpl; intros_revert go. end in simpl; intros_revert go.
Tactic Notation "wp_rec" ">" := Tactic Notation "wp_rec" ">" :=
löb ltac:((* Find the redex and apply wp_rec *) löb ltac:(
idtac; (* <https://coq.inria.fr/bugs/show_bug.cgi?id=4584> *) (* Find the redex and apply wp_rec *)
lazymatch goal with idtac; (* <https://coq.inria.fr/bugs/show_bug.cgi?id=4584> *)
| |- _ wp ?E ?e ?Q => reshape_expr e ltac:(fun K e' => lazymatch goal with
match eval cbv in e' with | |- _ wp ?E ?e ?Q => reshape_expr e ltac:(fun K e' =>
| App (Rec _ _ _) _ => match eval cbv in e' with
wp_bind K; etrans; [|eapply wp_rec; reflexivity]; | App (Rec _ _ _) _ =>
wp_finish wp_bind K; etrans; [|eapply wp_rec; reflexivity]; wp_finish
end) end)
end). end).
Tactic Notation "wp_rec" := wp_rec>; try strip_later. Tactic Notation "wp_rec" := wp_rec>; try strip_later.
Tactic Notation "wp_lam" ">" := Tactic Notation "wp_lam" ">" :=
......
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