aboutsummaryrefslogtreecommitdiffstats
path: root/src/PropToBool.v
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2022-04-14 18:09:46 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2022-04-14 18:09:46 +0200
commitd2585fac6defa17889a0244556b6822fc0c3cb4e (patch)
treeca0f10fb4be4caadc348670b0fde3ddd49d19cd9 /src/PropToBool.v
parent7ce6bf4f7740de4c69877ec9179520bcaa0d014c (diff)
parent1f21e1f95d43f5e76e38e1737de9a2a0322fd71c (diff)
downloadsmtcoq-d2585fac6defa17889a0244556b6822fc0c3cb4e.tar.gz
smtcoq-d2585fac6defa17889a0244556b6822fc0c3cb4e.zip
Merge remote-tracking branch 'origin/coq-8.12' into coq-8.13
Diffstat (limited to 'src/PropToBool.v')
-rw-r--r--src/PropToBool.v10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/PropToBool.v b/src/PropToBool.v
index d71c81c..5a7bf53 100644
--- a/src/PropToBool.v
+++ b/src/PropToBool.v
@@ -164,10 +164,10 @@ Ltac prop2bool_hyp H :=
destruct HFalse
| ];
clear H';
- match (eval compute in prop2bool_comp) with
+ lazymatch (eval compute in prop2bool_comp) with
| true =>
let A := eval cbv in prop2bool_t in
- match goal with
+ lazymatch goal with
| [ _ : CompDec A |- _ ] => idtac
| _ =>
let Hcompdec := fresh "Hcompdec" in
@@ -195,7 +195,7 @@ Ltac prop2bool_hyp H :=
| _ => prop2bool
end in
tac_rec;
- match goal with
+ lazymatch goal with
| [ |- ?g ] => only [prop2bool_Hbool_evar]: refine g
end;
destruct HFalse
@@ -213,9 +213,9 @@ Ltac prop2bool_hyp H :=
Ltac remove_compdec_hyp H :=
let TH := type of H in
- match TH with
+ lazymatch TH with
| forall p : CompDec ?A, _ =>
- match goal with
+ lazymatch goal with
| [ p' : CompDec A |- _ ] =>
let H1 := fresh in
assert (H1 := H p'); clear H; assert (H := H1); clear H1;