aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2016-10-07 15:41:03 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2016-10-07 15:41:03 +0200
commita6cd7db941af0d41932fafc8104c3ee142b1c6f7 (patch)
tree8fef5ab8f6c26826c30b4cc83c30ccbe30d84264
parentab72bee190e0e7b6a4136298a70f9fc5cfa0f907 (diff)
downloadsmtcoq-a6cd7db941af0d41932fafc8104c3ee142b1c6f7.tar.gz
smtcoq-a6cd7db941af0d41932fafc8104c3ee142b1c6f7.zip
Corrected a bug with holes in proofs (for native-coq)
-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 d23bb5c..6dae9dd 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_tactic Zchaff.tactic ]
+| [ "zchaff" ] -> [ Zchaff.tactic () ]
END
TACTIC EXTEND Tactic_verit
-| [ "verit" ] -> [ Structures.mk_tactic Verit.tactic ]
+| [ "verit" ] -> [ Verit.tactic () ]
END