| author | bulwahn |
| Tue, 04 Aug 2009 08:34:56 +0200 | |
| changeset 32318 | bca7fd849829 |
| parent 32257 | bad5a99c16d8 |
| permissions | -rw-r--r-- |
| 28592 | 1 |
(* Title: HOL/Tools/atp_wrapper.ML |
2 |
Author: Fabian Immler, TU Muenchen |
|
3 |
||
4 |
Wrapper functions for external ATPs. |
|
5 |
*) |
|
6 |
||
7 |
signature ATP_WRAPPER = |
|
8 |
sig |
|
9 |
val destdir: string ref |
|
10 |
val problem_name: string ref |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
11 |
val tptp_prover_opts_full: int -> bool -> bool -> Path.T * string -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
12 |
val tptp_prover_opts: int -> bool -> Path.T * string -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
13 |
val tptp_prover: Path.T * string -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
14 |
val full_prover_opts: int -> bool -> Path.T * string -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
15 |
val full_prover: Path.T * string -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
16 |
val vampire_opts: int -> bool -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
17 |
val vampire: AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
18 |
val vampire_opts_full: int -> bool -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
19 |
val vampire_full: AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
20 |
val eprover_opts: int -> bool -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
21 |
val eprover: AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
22 |
val eprover_opts_full: int -> bool -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
23 |
val eprover_full: AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
24 |
val spass_opts: int -> bool -> AtpManager.prover |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
25 |
val spass: AtpManager.prover |
| 31835 | 26 |
val remote_prover_opts: int -> bool -> string -> string -> AtpManager.prover |
27 |
val remote_prover: string -> string -> AtpManager.prover |
|
28 |
val refresh_systems: unit -> unit |
|
| 28592 | 29 |
end; |
30 |
||
31 |
structure AtpWrapper: ATP_WRAPPER = |
|
32 |
struct |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
33 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
34 |
(** generic ATP wrapper **) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
35 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
36 |
(* global hooks for writing problemfiles *) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
37 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
38 |
val destdir = ref ""; (*Empty means write files to /tmp*) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
39 |
val problem_name = ref "prob"; |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
40 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
41 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
42 |
(* basic template *) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
43 |
|
|
31409
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
44 |
fun external_prover relevance_filter preparer writer (cmd, args) find_failure produce_answer |
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
45 |
timeout axiom_clauses filtered_clauses name subgoalno goal = |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
46 |
let |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
47 |
(* path to unique problem file *) |
| 28592 | 48 |
val destdir' = ! destdir |
49 |
val problem_name' = ! problem_name |
|
50 |
fun prob_pathname nr = |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
51 |
let val probfile = Path.basic (problem_name' ^ serial_string () ^ "_" ^ string_of_int nr) |
| 28592 | 52 |
in if destdir' = "" then File.tmp_path probfile |
53 |
else if File.exists (Path.explode (destdir')) |
|
54 |
then Path.append (Path.explode (destdir')) probfile |
|
55 |
else error ("No such directory: " ^ destdir')
|
|
56 |
end |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
57 |
|
| 31750 | 58 |
(* get clauses and prepare them for writing *) |
| 30537 | 59 |
val (ctxt, (chain_ths, th)) = goal |
|
30536
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
60 |
val thy = ProofContext.theory_of ctxt |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
61 |
val chain_ths = map (Thm.put_name_hint ResReconstruct.chained_hint) chain_ths |
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
62 |
val goal_cls = #1 (ResAxioms.neg_conjecture_clauses ctxt th subgoalno) |
|
32091
30e2ffbba718
proper context for Display.pretty_thm etc. or old-style versions Display.pretty_thm_global, Display.pretty_thm_without_context etc.;
wenzelm
parents:
31840
diff
changeset
|
63 |
val _ = app (fn th => Output.debug (fn _ => Display.string_of_thm ctxt th)) goal_cls |
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
64 |
val the_filtered_clauses = |
|
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
65 |
case filtered_clauses of |
|
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
66 |
NONE => relevance_filter goal goal_cls |
|
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
67 |
| SOME fcls => fcls |
|
31409
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
68 |
val the_axiom_clauses = |
|
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
69 |
case axiom_clauses of |
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
70 |
NONE => the_filtered_clauses |
|
31409
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
71 |
| SOME axcls => axcls |
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
72 |
val (thm_names, clauses) = |
|
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
73 |
preparer goal_cls chain_ths the_axiom_clauses the_filtered_clauses thy |
| 31750 | 74 |
|
75 |
(* write out problem file and call prover *) |
|
76 |
val probfile = prob_pathname subgoalno |
|
|
31840
beeaa1ed1f47
check if conjectures have been used in proof
immler@in.tum.de
parents:
31838
diff
changeset
|
77 |
val conj_pos = writer probfile clauses |
| 31838 | 78 |
val (proof, rc) = system_out ( |
79 |
if File.exists cmd then |
|
80 |
space_implode " " ["exec", File.shell_path cmd, args, File.platform_path probfile] |
|
81 |
else error ("Bad executable: " ^ Path.implode cmd))
|
|
| 28592 | 82 |
|
| 31751 | 83 |
(* if problemfile has not been exported, delete problemfile; otherwise export proof, too *) |
84 |
val _ = |
|
| 31838 | 85 |
if destdir' = "" then File.rm probfile |
86 |
else File.write (Path.explode (Path.implode probfile ^ "_proof")) proof |
|
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
87 |
|
| 29590 | 88 |
(* check for success and print out some information on failure *) |
89 |
val failure = find_failure proof |
|
| 29597 | 90 |
val success = rc = 0 andalso is_none failure |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
91 |
val message = |
|
30896
ec3f33437fe3
more generic error message, which also covers more fundamental failure;
wenzelm
parents:
30874
diff
changeset
|
92 |
if is_some failure then "External prover failed." |
|
ec3f33437fe3
more generic error message, which also covers more fundamental failure;
wenzelm
parents:
30874
diff
changeset
|
93 |
else if rc <> 0 then "External prover failed: " ^ proof |
|
31840
beeaa1ed1f47
check if conjectures have been used in proof
immler@in.tum.de
parents:
31838
diff
changeset
|
94 |
else "Try this command: " ^ |
|
beeaa1ed1f47
check if conjectures have been used in proof
immler@in.tum.de
parents:
31838
diff
changeset
|
95 |
produce_answer name (proof, thm_names, conj_pos, ctxt, th, subgoalno) |
| 31411 | 96 |
val _ = Output.debug (fn () => "Sledgehammer response (rc = " ^ string_of_int rc ^ "):\n" ^ proof) |
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
97 |
in (success, message, proof, thm_names, the_filtered_clauses) end; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
98 |
|
| 28592 | 99 |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
100 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
101 |
(** common provers **) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
102 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
103 |
(* generic TPTP-based provers *) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
104 |
|
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
105 |
fun tptp_prover_opts_full max_new theory_const full command timeout ax_clauses fcls name n goal = |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
106 |
external_prover |
|
31409
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
107 |
(ResAtp.get_relevant max_new theory_const) |
|
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
108 |
(ResAtp.prepare_clauses false) |
| 31791 | 109 |
(ResHolClause.tptp_write_file (AtpManager.get_full_types())) |
|
31409
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
110 |
command |
|
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
111 |
ResReconstruct.find_failure |
|
31840
beeaa1ed1f47
check if conjectures have been used in proof
immler@in.tum.de
parents:
31838
diff
changeset
|
112 |
(if full then ResReconstruct.structured_proof else ResReconstruct.lemma_list false) |
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
113 |
timeout ax_clauses fcls name n goal; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
114 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
115 |
(*arbitrary ATP with TPTP input/output and problemfile as last argument*) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
116 |
fun tptp_prover_opts max_new theory_const = |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
117 |
tptp_prover_opts_full max_new theory_const false; |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
118 |
|
| 31368 | 119 |
fun tptp_prover x = tptp_prover_opts 60 true x; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
120 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
121 |
(*for structured proofs: prover must support TSTP*) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
122 |
fun full_prover_opts max_new theory_const = |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
123 |
tptp_prover_opts_full max_new theory_const true; |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
124 |
|
| 31368 | 125 |
fun full_prover x = full_prover_opts 60 true x; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
126 |
|
| 28592 | 127 |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
128 |
(* Vampire *) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
129 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
130 |
(*NB: Vampire does not work without explicit timelimit*) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
131 |
|
| 29593 | 132 |
fun vampire_opts max_new theory_const timeout = tptp_prover_opts |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
133 |
max_new theory_const |
| 29593 | 134 |
(Path.explode "$VAMPIRE_HOME/vampire", |
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
135 |
("--output_syntax tptp --mode casc -t " ^ string_of_int timeout))
|
| 29593 | 136 |
timeout; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
137 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
138 |
val vampire = vampire_opts 60 false; |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
139 |
|
| 29593 | 140 |
fun vampire_opts_full max_new theory_const timeout = full_prover_opts |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
141 |
max_new theory_const |
| 29593 | 142 |
(Path.explode "$VAMPIRE_HOME/vampire", |
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
143 |
("--output_syntax tptp --mode casc -t " ^ string_of_int timeout))
|
| 29593 | 144 |
timeout; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
145 |
|
| 31832 | 146 |
val vampire_full = vampire_opts_full 60 false; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
147 |
|
| 28592 | 148 |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
149 |
(* E prover *) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
150 |
|
|
30536
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
151 |
fun eprover_opts max_new theory_const timeout = tptp_prover_opts |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
152 |
max_new theory_const |
|
30536
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
153 |
(Path.explode "$E_HOME/eproof", |
|
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
154 |
"--tstp-in --tstp-out -l5 -xAutoDev -tAutoDev --silent --cpu-limit=" ^ string_of_int timeout) |
|
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
155 |
timeout; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
156 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
157 |
val eprover = eprover_opts 100 false; |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
158 |
|
|
30536
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
159 |
fun eprover_opts_full max_new theory_const timeout = full_prover_opts |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
160 |
max_new theory_const |
|
30536
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
161 |
(Path.explode "$E_HOME/eproof", |
|
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
162 |
"--tstp-in --tstp-out -l5 -xAutoDev -tAutoDev --silent --cpu-limit=" ^ string_of_int timeout) |
|
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
163 |
timeout; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
164 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
165 |
val eprover_full = eprover_opts_full 100 false; |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
166 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
167 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
168 |
(* SPASS *) |
| 28592 | 169 |
|
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
170 |
fun spass_opts max_new theory_const timeout ax_clauses fcls name n goal = external_prover |
|
31409
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
171 |
(ResAtp.get_relevant max_new theory_const) |
|
d8537ba165b5
split preparing clauses and writing problemfile;
immler@in.tum.de
parents:
31368
diff
changeset
|
172 |
(ResAtp.prepare_clauses true) |
| 31791 | 173 |
(ResHolClause.dfg_write_file (AtpManager.get_full_types())) |
|
30536
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
174 |
(Path.explode "$SPASS_HOME/SPASS", |
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
175 |
"-Auto -SOS=1 -PGiven=0 -PProblem=0 -Splits=0 -FullRed=0 -DocProof -TimeLimit=" ^ |
|
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
176 |
string_of_int timeout) |
|
30874
34927a1e0ae8
reverted to explicitly check the presence of a refutation
immler@in.tum.de
parents:
30542
diff
changeset
|
177 |
ResReconstruct.find_failure |
|
31840
beeaa1ed1f47
check if conjectures have been used in proof
immler@in.tum.de
parents:
31838
diff
changeset
|
178 |
(ResReconstruct.lemma_list true) |
|
31752
19a5f1c8a844
use results of relevance-filter to determine additional clauses;
immler@in.tum.de
parents:
31751
diff
changeset
|
179 |
timeout ax_clauses fcls name n goal; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
180 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
181 |
val spass = spass_opts 40 true; |
| 28592 | 182 |
|
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
183 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
184 |
(* remote prover invocation via SystemOnTPTP *) |
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
185 |
|
| 31835 | 186 |
val systems = |
187 |
Synchronized.var "atp_wrapper_systems" ([]: string list); |
|
188 |
||
189 |
fun get_systems () = |
|
190 |
let |
|
191 |
val (answer, rc) = system_out (("$ISABELLE_HOME/lib/scripts/SystemOnTPTP" |>
|
|
192 |
Path.explode |> File.shell_path) ^ " -w") |
|
193 |
in |
|
194 |
if rc <> 0 then error ("Get available systems from SystemOnTPTP:\n" ^ answer)
|
|
195 |
else split_lines answer |
|
196 |
end; |
|
197 |
||
198 |
fun refresh_systems () = Synchronized.change systems (fn _ => |
|
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
199 |
get_systems ()); |
| 31835 | 200 |
|
201 |
fun get_system prefix = Synchronized.change_result systems (fn systems => |
|
202 |
let val systems = if null systems then get_systems() else systems |
|
203 |
in (find_first (String.isPrefix prefix) systems, systems) end); |
|
204 |
||
205 |
fun remote_prover_opts max_new theory_const args prover_prefix timeout = |
|
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
206 |
let val sys = |
|
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
207 |
case get_system prover_prefix of |
| 31835 | 208 |
NONE => error ("No system like " ^ quote prover_prefix ^ " at SystemOnTPTP")
|
209 |
| SOME sys => sys |
|
210 |
in tptp_prover_opts max_new theory_const |
|
211 |
(Path.explode "$ISABELLE_HOME/lib/scripts/SystemOnTPTP", |
|
|
32257
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
212 |
args ^ " -t " ^ string_of_int timeout ^ " -s " ^ sys) timeout |
|
bad5a99c16d8
neg_conjecture_clauses, neg_clausify_tac: proper context, eliminated METAHYPS;
wenzelm
parents:
32091
diff
changeset
|
213 |
end; |
|
28596
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
214 |
|
|
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
wenzelm
parents:
28592
diff
changeset
|
215 |
val remote_prover = remote_prover_opts 60 false; |
| 28592 | 216 |
|
217 |
end; |
|
|
30536
07b4f050e4df
split relevance-filter and writing of problem-files;
immler@in.tum.de
parents:
30535
diff
changeset
|
218 |