aboutsummaryrefslogtreecommitdiffstats
path: root/src/trace
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2016-05-01 23:51:12 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2016-05-01 23:51:12 +0200
commitfb4e5e5be1cc365e3a2ae1758c385ee0fc51e10a (patch)
treefafa585b405bb5c6f0a5eb604fad506e59c25466 /src/trace
parent5a1b0fdd5bab9b40c10d71c09fdb58725e7373bc (diff)
downloadsmtcoq-fb4e5e5be1cc365e3a2ae1758c385ee0fc51e10a.tar.gz
smtcoq-fb4e5e5be1cc365e3a2ae1758c385ee0fc51e10a.zip
Now, Coq 8.5 is the default
Diffstat (limited to 'src/trace')
-rw-r--r--src/trace/smt_tactic.ml459
1 files changed, 0 insertions, 59 deletions
diff --git a/src/trace/smt_tactic.ml4 b/src/trace/smt_tactic.ml4
deleted file mode 100644
index d3fca95..0000000
--- a/src/trace/smt_tactic.ml4
+++ /dev/null
@@ -1,59 +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 *)
-(* *)
-(**************************************************************************)
-
-
-(* Uncomment for 8.5 *)
-(* DECLARE PLUGIN "trace/smt_tactic" *)
-
-VERNAC COMMAND EXTEND Vernac_zchaff
-| [ "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
-| [ "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" ] -> [ Structures.mk_sat_tactic Zchaff.tactic ]
-END
-
-TACTIC EXTEND Tactic_verit
-| [ "verit" ] -> [ Structures.mk_smt_tactic Verit.tactic ]
-END