From a6cd7db941af0d41932fafc8104c3ee142b1c6f7 Mon Sep 17 00:00:00 2001 From: Chantal Keller Date: Fri, 7 Oct 2016 15:41:03 +0200 Subject: Corrected a bug with holes in proofs (for native-coq) --- src/versions/native/smtcoq_plugin_native.ml4 | 4 ++-- 1 file 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 -- cgit