aboutsummaryrefslogtreecommitdiffstats
path: root/src/versions/native/smtcoq_plugin_native.ml4
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2016-09-28 14:30:51 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2016-09-28 14:30:51 +0200
commit73e19ad0aac3cbd472b8add74594bbc158fce334 (patch)
tree3a934afc8948023512c8943599d6e8044e15886f /src/versions/native/smtcoq_plugin_native.ml4
parente54e5bbee68de0e6b1dce4cd5a99e991fe3cf84e (diff)
downloadsmtcoq-73e19ad0aac3cbd472b8add74594bbc158fce334.tar.gz
smtcoq-73e19ad0aac3cbd472b8add74594bbc158fce334.zip
Uniform treatment of sat and smt tactics
Diffstat (limited to 'src/versions/native/smtcoq_plugin_native.ml4')
-rw-r--r--src/versions/native/smtcoq_plugin_native.ml44
1 files changed, 2 insertions, 2 deletions
diff --git a/src/versions/native/smtcoq_plugin_native.ml4 b/src/versions/native/smtcoq_plugin_native.ml4
index e7c2f5b..d23bb5c 100644
--- a/src/versions/native/smtcoq_plugin_native.ml4
+++ b/src/versions/native/smtcoq_plugin_native.ml4
@@ -48,9 +48,9 @@ END
TACTIC EXTEND Tactic_zchaff
-| [ "zchaff" ] -> [ Structures.mk_sat_tactic Zchaff.tactic ]
+| [ "zchaff" ] -> [ Structures.mk_tactic Zchaff.tactic ]
END
TACTIC EXTEND Tactic_verit
-| [ "verit" ] -> [ Structures.mk_smt_tactic Verit.tactic ]
+| [ "verit" ] -> [ Structures.mk_tactic Verit.tactic ]
END