aboutsummaryrefslogtreecommitdiffstats
path: root/src/versions
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-02-23 18:02:59 +0100
committerChantal Keller <Chantal.Keller@lri.fr>2021-02-23 18:02:59 +0100
commitdbf1adc5daaadf92bc3245648f30cf79bd010e86 (patch)
treed4e54f6ace255a98adaebf22bf6c915cbb08a81b /src/versions
parent68ca86514065cef3d5fc6ce54a86ef15452d8f0a (diff)
parent240b76807340e59bb85b35e3ebbb807792459912 (diff)
downloadsmtcoq-dbf1adc5daaadf92bc3245648f30cf79bd010e86.tar.gz
smtcoq-dbf1adc5daaadf92bc3245648f30cf79bd010e86.zip
Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10
Diffstat (limited to 'src/versions')
-rw-r--r--src/versions/standard/Tactics_standard.v12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/versions/standard/Tactics_standard.v b/src/versions/standard/Tactics_standard.v
index 95b92d6..4162f13 100644
--- a/src/versions/standard/Tactics_standard.v
+++ b/src/versions/standard/Tactics_standard.v
@@ -29,11 +29,11 @@ Tactic Notation "verit_bool_no_check" constr_list(h) :=
Ltac zchaff := prop2bool; zchaff_bool; bool2prop.
Ltac zchaff_no_check := prop2bool; zchaff_bool_no_check; bool2prop.
-Tactic Notation "verit" constr_list(h) := prop2bool; verit_bool h; bool2prop.
-Tactic Notation "verit_no_check" constr_list(h) := prop2bool; verit_bool_no_check h; bool2prop.
+Tactic Notation "verit" constr_list(h) := prop2bool; [ .. | verit_bool h; bool2prop ].
+Tactic Notation "verit_no_check" constr_list(h) := prop2bool; [ .. | verit_bool_no_check h; bool2prop ].
-Ltac cvc4 := prop2bool; cvc4_bool; bool2prop.
-Ltac cvc4_no_check := prop2bool; cvc4_bool_no_check; bool2prop.
+Ltac cvc4 := prop2bool; [ .. | cvc4_bool; bool2prop ].
+Ltac cvc4_no_check := prop2bool; [ .. | cvc4_bool_no_check; bool2prop ].
(* Ltac smt := prop2bool; *)
@@ -53,8 +53,8 @@ Ltac cvc4_no_check := prop2bool; cvc4_bool_no_check; bool2prop.
(* end; *)
(* bool2prop. *)
-Tactic Notation "smt" constr_list(h) := (prop2bool; try verit_bool h; cvc4_bool; try verit_bool h; bool2prop).
-Tactic Notation "smt_no_check" constr_list(h) := (prop2bool; try verit_bool_no_check h; cvc4_bool_no_check; try verit_bool_no_check h; bool2prop).
+Tactic Notation "smt" constr_list(h) := (prop2bool; [ .. | try verit_bool h; cvc4_bool; try verit_bool h; bool2prop ]).
+Tactic Notation "smt_no_check" constr_list(h) := (prop2bool; [ .. | try verit_bool_no_check h; cvc4_bool_no_check; try verit_bool_no_check h; bool2prop]).