aboutsummaryrefslogtreecommitdiffstats
path: root/src/versions/standard
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2017-10-03 10:49:51 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2017-10-03 10:49:51 +0200
commit0d5b50fad7bf72dd0fe332eab05c68bd932220b0 (patch)
tree42a37f17f015fa24d7a67add20ee62fa69207d83 /src/versions/standard
parent041e5eef89b1db909f076494204eda2c20562bb8 (diff)
downloadsmtcoq-0d5b50fad7bf72dd0fe332eab05c68bd932220b0.tar.gz
smtcoq-0d5b50fad7bf72dd0fe332eab05c68bd932220b0.zip
Removed unused file
Diffstat (limited to 'src/versions/standard')
-rw-r--r--src/versions/standard/smtcoq_plugin_standard.ml462
1 files changed, 0 insertions, 62 deletions
diff --git a/src/versions/standard/smtcoq_plugin_standard.ml4 b/src/versions/standard/smtcoq_plugin_standard.ml4
deleted file mode 100644
index ab097a1..0000000
--- a/src/versions/standard/smtcoq_plugin_standard.ml4
+++ /dev/null
@@ -1,62 +0,0 @@
-(**************************************************************************)
-(* *)
-(* SMTCoq *)
-(* Copyright (C) 2011 - 2016 *)
-(* *)
-(* Michaël Armand *)
-(* Benjamin Grégoire *)
-(* Chantal Keller *)
-(* *)
-(* Inria - École Polytechnique - Université Paris-Sud *)
-(* *)
-(* This file is distributed under the terms of the CeCILL-C licence *)
-(* *)
-(**************************************************************************)
-
-
-DECLARE PLUGIN "smtcoq_plugin"
-
-open Genarg
-open Stdarg
-open Constrarg
-
-VERNAC COMMAND EXTEND Vernac_zchaff CLASSIFIED AS QUERY
-| [ "Parse_certif_zchaff"
- ident(dimacs) ident(trace) string(fdimacs) string(fproof) ] ->
- [
- Zchaff.parse_certif dimacs trace fdimacs fproof
- ]
-| [ "Zchaff_Checker" string(fdimacs) string(fproof) ] ->
- [
- Zchaff.checker fdimacs fproof
- ]
-| [ "Zchaff_Theorem" ident(name) string(fdimacs) string(fproof) ] ->
- [
- Zchaff.theorem name fdimacs fproof
- ]
-END
-
-VERNAC COMMAND EXTEND Vernac_verit CLASSIFIED AS QUERY
-| [ "Parse_certif_verit"
- ident(t_i) ident(t_func) ident(t_atom) ident(t_form) ident(root) ident(used_roots) ident(trace) string(fsmt) string(fproof) ] ->
- [
- Verit.parse_certif t_i t_func t_atom t_form root used_roots trace fsmt fproof
- ]
-| [ "Verit_Checker" string(fsmt) string(fproof) ] ->
- [
- Verit.checker fsmt fproof
- ]
-| [ "Verit_Theorem" ident(name) string(fsmt) string(fproof) ] ->
- [
- Verit.theorem name fsmt fproof
- ]
-END
-
-
-TACTIC EXTEND Tactic_zchaff
-| [ "zchaff" ] -> [ Zchaff.tactic () ]
-END
-
-TACTIC EXTEND Tactic_verit
-| [ "verit" ] -> [ Verit.tactic () ]
-END