| author | wenzelm | 
| Mon, 20 Jun 2016 17:03:50 +0200 | |
| changeset 63322 | bc1f17d45e91 | 
| parent 63116 | 32492105b015 | 
| child 63692 | 1bc4bc2c9fd1 | 
| permissions | -rw-r--r-- | 
| 38047 | 1 | (* Title: HOL/Tools/ATP/atp_systems.ML | 
| 28592 | 2 | Author: Fabian Immler, TU Muenchen | 
| 36371 
8c83ea1a7740
move the Sledgehammer menu options to "sledgehammer_isar.ML"
 blanchet parents: 
36370diff
changeset | 3 | Author: Jasmin Blanchette, TU Muenchen | 
| 28592 | 4 | |
| 36376 | 5 | Setup for supported ATPs. | 
| 28592 | 6 | *) | 
| 7 | ||
| 36376 | 8 | signature ATP_SYSTEMS = | 
| 28592 | 9 | sig | 
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 10 | type term_order = ATP_Problem.term_order | 
| 45301 
866b075aa99b
added sorted DFG output for coming version of SPASS
 blanchet parents: 
45300diff
changeset | 11 | type atp_format = ATP_Problem.atp_format | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53515diff
changeset | 12 | type atp_formula_role = ATP_Problem.atp_formula_role | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53515diff
changeset | 13 | type atp_failure = ATP_Proof.atp_failure | 
| 38023 | 14 | |
| 51011 | 15 | type slice_spec = (int * string) * atp_format * string * string * bool | 
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 16 | type atp_config = | 
| 57671 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 17 |     {exec : bool -> string list * string list,
 | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 18 | arguments : Proof.context -> bool -> string -> Time.time -> string -> | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 19 | term_order * (unit -> (string * int) list) * (unit -> (string * real) list) -> string, | 
| 42578 
1eaf4d437d4c
define type system in ATP module so that ATPs can suggest a type system
 blanchet parents: 
42577diff
changeset | 20 | proof_delims : (string * string) list, | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53515diff
changeset | 21 | known_failures : (atp_failure * string) list, | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53515diff
changeset | 22 | prem_role : atp_formula_role, | 
| 48716 
1d2a12bb0640
stop distinguishing between complete and incomplete slices, since this is very fragile and has hardly any useful semantics to users
 blanchet parents: 
48715diff
changeset | 23 | best_slices : Proof.context -> (real * (slice_spec * string)) list, | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 24 | best_max_mono_iters : int, | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 25 | best_max_new_mono_instances : int} | 
| 38023 | 26 | |
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 27 | val default_max_mono_iters : int | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 28 | val default_max_new_mono_instances : int | 
| 44099 | 29 | val force_sos : bool Config.T | 
| 47032 | 30 | val term_order : string Config.T | 
| 43566 
a818d5a34cca
filter out some tautologies using an ATP, especially for those theories that are known for producing such things
 blanchet parents: 
43529diff
changeset | 31 | val e_smartN : string | 
| 
a818d5a34cca
filter out some tautologies using an ATP, especially for those theories that are known for producing such things
 blanchet parents: 
43529diff
changeset | 32 | val e_autoN : string | 
| 
a818d5a34cca
filter out some tautologies using an ATP, especially for those theories that are known for producing such things
 blanchet parents: 
43529diff
changeset | 33 | val e_fun_weightN : string | 
| 
a818d5a34cca
filter out some tautologies using an ATP, especially for those theories that are known for producing such things
 blanchet parents: 
43529diff
changeset | 34 | val e_sym_offset_weightN : string | 
| 47032 | 35 | val e_selection_heuristic : string Config.T | 
| 42646 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 36 | val e_default_fun_weight : real Config.T | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 37 | val e_fun_weight_base : real Config.T | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 38 | val e_fun_weight_span : real Config.T | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 39 | val e_default_sym_offs_weight : real Config.T | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 40 | val e_sym_offs_weight_base : real Config.T | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 41 | val e_sym_offs_weight_span : real Config.T | 
| 50950 | 42 | val spass_H1SOS : string | 
| 43 | val spass_H2 : string | |
| 44 | val spass_H2LR0LT0 : string | |
| 45 | val spass_H2NuVS0 : string | |
| 46 | val spass_H2NuVS0Red2 : string | |
| 47 | val spass_H2SOS : string | |
| 48 | val spass_extra_options : string Config.T | |
| 57671 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 49 | val remote_atp : string -> string -> string list -> (string * string) list -> | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 50 | (atp_failure * string) list -> atp_formula_role -> (Proof.context -> slice_spec * string) -> | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 51 | string * (unit -> atp_config) | 
| 47606 
06dde48a1503
true delayed evaluation of "SPASS_VERSION" environment variable
 blanchet parents: 
47506diff
changeset | 52 | val add_atp : string * (unit -> atp_config) -> theory -> theory | 
| 
06dde48a1503
true delayed evaluation of "SPASS_VERSION" environment variable
 blanchet parents: 
47506diff
changeset | 53 | val get_atp : theory -> string -> (unit -> atp_config) | 
| 41727 
ab3f6d76fb23
available_provers ~> supported_provers (for clarity)
 blanchet parents: 
41725diff
changeset | 54 | val supported_atps : theory -> string list | 
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 55 | val is_atp_installed : theory -> string -> bool | 
| 35867 | 56 | val refresh_systems_on_tptp : unit -> unit | 
| 47055 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 57 | val effective_term_order : Proof.context -> string -> term_order | 
| 28592 | 58 | end; | 
| 59 | ||
| 36376 | 60 | structure ATP_Systems : ATP_SYSTEMS = | 
| 28592 | 61 | struct | 
| 28596 
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
 wenzelm parents: 
28592diff
changeset | 62 | |
| 42577 
78414ec6fa4e
made the format (TFF or FOF) of the TPTP problem a global argument of the problem again and have the ATPs report which formats they support
 blanchet parents: 
42571diff
changeset | 63 | open ATP_Problem | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39375diff
changeset | 64 | open ATP_Proof | 
| 46320 | 65 | open ATP_Problem_Generate | 
| 32864 
a226f29d4bdc
re-organized signature of AtpWrapper structure: records instead of unnamed parameters and return values,
 boehmes parents: 
32740diff
changeset | 66 | |
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 67 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 68 | (* ATP configuration *) | 
| 32864 
a226f29d4bdc
re-organized signature of AtpWrapper structure: records instead of unnamed parameters and return values,
 boehmes parents: 
32740diff
changeset | 69 | |
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 70 | val default_max_mono_iters = 3 (* FUDGE *) | 
| 53515 
f5b678b155f6
adjusted number of generated monomorphic instances for new monomorphizer based on new evaluation (E, SPASS, Vampire)
 blanchet parents: 
53225diff
changeset | 71 | val default_max_new_mono_instances = 100 (* FUDGE *) | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 72 | |
| 51011 | 73 | type slice_spec = (int * string) * atp_format * string * string * bool | 
| 46409 
d4754183ccce
made option available to users (mostly for experiments)
 blanchet parents: 
46407diff
changeset | 74 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 75 | type atp_config = | 
| 57671 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 76 |   {exec : bool -> string list * string list,
 | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 77 | arguments : Proof.context -> bool -> string -> Time.time -> string -> | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 78 | term_order * (unit -> (string * int) list) * (unit -> (string * real) list) -> string, | 
| 42578 
1eaf4d437d4c
define type system in ATP module so that ATPs can suggest a type system
 blanchet parents: 
42577diff
changeset | 79 | proof_delims : (string * string) list, | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53515diff
changeset | 80 | known_failures : (atp_failure * string) list, | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53515diff
changeset | 81 | prem_role : atp_formula_role, | 
| 48716 
1d2a12bb0640
stop distinguishing between complete and incomplete slices, since this is very fragile and has hardly any useful semantics to users
 blanchet parents: 
48715diff
changeset | 82 | best_slices : Proof.context -> (real * (slice_spec * string)) list, | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 83 | best_max_mono_iters : int, | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 84 | best_max_new_mono_instances : int} | 
| 28596 
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
 wenzelm parents: 
28592diff
changeset | 85 | |
| 42723 | 86 | (* "best_slices" must be found empirically, taking a wholistic approach since | 
| 51011 | 87 | the ATPs are run in parallel. Each slice has the format | 
| 88 | ||
| 89 | (time_frac, ((max_facts, fact_filter), format, type_enc, | |
| 90 | lam_trans, uncurried_aliases), extra) | |
| 91 | ||
| 92 | where | |
| 93 | ||
| 94 | time_frac = faction of the time available given to the slice (which should | |
| 95 | add up to 1.0) | |
| 96 | ||
| 97 | extra = extra information to the prover (e.g., SOS or no SOS). | |
| 42723 | 98 | |
| 99 | The last slice should be the most "normal" one, because it will get all the | |
| 43569 
b342cd125533
removed "full_types" option from Sledgehammer, now that virtually sound encodings are used as the default anyway
 blanchet parents: 
43567diff
changeset | 100 | time available if the other slices fail early and also because it is used if | 
| 
b342cd125533
removed "full_types" option from Sledgehammer, now that virtually sound encodings are used as the default anyway
 blanchet parents: 
43567diff
changeset | 101 | slicing is disabled (e.g., by the minimizer). *) | 
| 42710 
84fcce345b5d
further improved type system setup based on Judgment Days
 blanchet parents: 
42709diff
changeset | 102 | |
| 51011 | 103 | val mepoN = "mepo" | 
| 104 | val mashN = "mash" | |
| 105 | val meshN = "mesh" | |
| 106 | ||
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 107 | val tstp_proof_delims = | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 108 |   [("% SZS output start CNFRefutation", "% SZS output end CNFRefutation"),
 | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 109 |    ("% SZS output start Refutation", "% SZS output end Refutation"),
 | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 110 |    ("% SZS output start Proof", "% SZS output end Proof")]
 | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 111 | |
| 38061 
685d1f0f75b3
handle Perl and "libwww-perl" failures more gracefully, giving the user some clues about what goes on
 blanchet parents: 
38049diff
changeset | 112 | val known_perl_failures = | 
| 38094 | 113 | [(CantConnect, "HTTP error"), | 
| 114 | (NoPerl, "env: perl"), | |
| 38065 | 115 | (NoLibwwwPerl, "Can't locate HTTP")] | 
| 28596 
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
 wenzelm parents: 
28592diff
changeset | 116 | |
| 45203 | 117 | fun known_szs_failures wrap = | 
| 118 | [(Unprovable, wrap "CounterSatisfiable"), | |
| 119 | (Unprovable, wrap "Satisfiable"), | |
| 120 | (GaveUp, wrap "GaveUp"), | |
| 121 | (GaveUp, wrap "Unknown"), | |
| 122 | (GaveUp, wrap "Incomplete"), | |
| 123 | (ProofMissing, wrap "Theorem"), | |
| 124 | (ProofMissing, wrap "Unsatisfiable"), | |
| 125 | (TimedOut, wrap "Timeout"), | |
| 126 | (Inappropriate, wrap "Inappropriate"), | |
| 127 | (OutOfResources, wrap "ResourceOut"), | |
| 128 | (OutOfResources, wrap "MemoryOut"), | |
| 129 | (Interrupted, wrap "Forced"), | |
| 130 | (Interrupted, wrap "User")] | |
| 131 | ||
| 132 | val known_szs_status_failures = known_szs_failures (prefix "SZS status ") | |
| 133 | val known_says_failures = known_szs_failures (prefix " says ") | |
| 134 | ||
| 38023 | 135 | structure Data = Theory_Data | 
| 136 | ( | |
| 47606 
06dde48a1503
true delayed evaluation of "SPASS_VERSION" environment variable
 blanchet parents: 
47506diff
changeset | 137 | type T = ((unit -> atp_config) * stamp) Symtab.table | 
| 38023 | 138 | val empty = Symtab.empty | 
| 139 | val extend = I | |
| 46407 
30e9720cc0b9
optimization: slice caching in case two consecutive slices are nearly identical
 blanchet parents: 
46402diff
changeset | 140 | fun merge data : T = | 
| 
30e9720cc0b9
optimization: slice caching in case two consecutive slices are nearly identical
 blanchet parents: 
46402diff
changeset | 141 | Symtab.merge (eq_snd (op =)) data | 
| 38023 | 142 |     handle Symtab.DUP name => error ("Duplicate ATP: " ^ quote name ^ ".")
 | 
| 143 | ) | |
| 38017 
3ad3e3ca2451
move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
 blanchet parents: 
38015diff
changeset | 144 | |
| 43981 
404ae49ce29f
give E at least two seconds -- anything else risks causing too early timeouts in the minimizer, because of too conservative time computations in E and eproof scripts
 blanchet parents: 
43850diff
changeset | 145 | fun to_secs min time = Int.max (min, (Time.toMilliseconds time + 999) div 1000) | 
| 36142 
f5e15e9aae10
make Sledgehammer "minimize" output less confusing + round up (not down) time limits to nearest second
 blanchet parents: 
36064diff
changeset | 146 | |
| 43473 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 blanchet parents: 
43467diff
changeset | 147 | val sosN = "sos" | 
| 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 blanchet parents: 
43467diff
changeset | 148 | val no_sosN = "no_sos" | 
| 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 blanchet parents: 
43467diff
changeset | 149 | |
| 44099 | 150 | val force_sos = Attrib.setup_config_bool @{binding atp_force_sos} (K false)
 | 
| 151 | ||
| 47032 | 152 | val smartN = "smart" | 
| 47073 
c73f7b0c7ebc
generate weights and precedences for predicates as well
 blanchet parents: 
47055diff
changeset | 153 | (* val kboN = "kbo" *) | 
| 47032 | 154 | val lpoN = "lpo" | 
| 47034 
77da780ddd6b
implement term order attribute (for experiments)
 blanchet parents: 
47033diff
changeset | 155 | val xweightsN = "_weights" | 
| 
77da780ddd6b
implement term order attribute (for experiments)
 blanchet parents: 
47033diff
changeset | 156 | val xprecN = "_prec" | 
| 
77da780ddd6b
implement term order attribute (for experiments)
 blanchet parents: 
47033diff
changeset | 157 | val xsimpN = "_simp" (* SPASS-specific *) | 
| 47032 | 158 | |
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 159 | (* Possible values for "atp_term_order": | 
| 47049 | 160 | "smart", "(kbo|lpo)(_weights)?(_prec|_simp)?" *) | 
| 47032 | 161 | val term_order = | 
| 162 |   Attrib.setup_config_string @{binding atp_term_order} (K smartN)
 | |
| 163 | ||
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 164 | |
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 165 | (* agsyHOL *) | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 166 | |
| 54197 
994ebb795b75
use definitions for LEO-II as well -- this simplifies the code and matches some users' expectations
 blanchet parents: 
53586diff
changeset | 167 | val agsyhol_thf0 = THF (Monomorphic, THF_Without_Choice) | 
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 168 | |
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 169 | val agsyhol_config : atp_config = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 170 |   {exec = K (["AGSYHOL_HOME"], ["agsyHOL"]),
 | 
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 171 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 172 | "--proof --time-out " ^ string_of_int (to_secs 1 timeout) ^ " " ^ | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 173 | file_name, | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 174 | proof_delims = tstp_proof_delims, | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 175 | known_failures = known_szs_status_failures, | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 176 | prem_role = Hypothesis, | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 177 | best_slices = | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 178 | (* FUDGE *) | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 179 | K [(1.0, (((60, ""), agsyhol_thf0, "mono_native_higher", keep_lamsN, false), ""))], | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 180 | best_max_mono_iters = default_max_mono_iters - 1 (* FUDGE *), | 
| 53515 
f5b678b155f6
adjusted number of generated monomorphic instances for new monomorphizer based on new evaluation (E, SPASS, Vampire)
 blanchet parents: 
53225diff
changeset | 181 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 182 | |
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 183 | val agsyhol = (agsyholN, fn () => agsyhol_config) | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 184 | |
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 185 | |
| 46643 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 186 | (* Alt-Ergo *) | 
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 187 | |
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 188 | val alt_ergo_config : atp_config = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 189 |   {exec = K (["WHY3_HOME"], ["why3"]),
 | 
| 50927 | 190 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 56379 
d8ecce5d51cd
use Alt-Ergo 0.95.2, the latest and greatest version
 blanchet parents: 
56378diff
changeset | 191 | "--format tptp --prover 'Alt-Ergo,0.95.2,' --timelimit " ^ | 
| 50927 | 192 | string_of_int (to_secs 1 timeout) ^ " " ^ file_name, | 
| 46643 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 193 | proof_delims = [], | 
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 194 | known_failures = | 
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 195 | [(ProofMissing, ": Valid"), | 
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 196 | (TimedOut, ": Timeout"), | 
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 197 | (GaveUp, ": Unknown")], | 
| 47976 | 198 | prem_role = Hypothesis, | 
| 46643 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 199 | best_slices = fn _ => | 
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 200 | (* FUDGE *) | 
| 57547 
677b07d777c3
don't generate TPTP THF 'Definition's, because they complicate reconstruction for AgsyHOL and Satallax
 blanchet parents: 
57293diff
changeset | 201 | [(1.0, (((100, ""), TFF Polymorphic, "poly_native", liftingN, false), ""))], | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 202 | best_max_mono_iters = default_max_mono_iters, | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 203 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 46643 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 204 | |
| 47646 | 205 | val alt_ergo = (alt_ergoN, fn () => alt_ergo_config) | 
| 46643 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 206 | |
| 
a88bccd2b567
added support for Alt-Ergo through Why3 (mostly for experimental purposes, e.g. polymorphism vs. monomorphization)
 blanchet parents: 
46481diff
changeset | 207 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 208 | (* E *) | 
| 28596 
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
 wenzelm parents: 
28592diff
changeset | 209 | |
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 210 | fun is_e_at_least_1_8 () = string_ord (getenv "E_VERSION", "1.8") <> LESS | 
| 44420 | 211 | |
| 43473 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 blanchet parents: 
43467diff
changeset | 212 | val e_smartN = "smart" | 
| 42646 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 213 | val e_autoN = "auto" | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 214 | val e_fun_weightN = "fun_weight" | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 215 | val e_sym_offset_weightN = "sym_offset_weight" | 
| 41725 
7cca2de89296
added support for bleeding-edge E weighting function "SymOffsetsWeight"
 blanchet parents: 
41335diff
changeset | 216 | |
| 47032 | 217 | val e_selection_heuristic = | 
| 218 |   Attrib.setup_config_string @{binding atp_e_selection_heuristic} (K e_smartN)
 | |
| 41770 | 219 | (* FUDGE *) | 
| 42646 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 220 | val e_default_fun_weight = | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 221 |   Attrib.setup_config_real @{binding atp_e_default_fun_weight} (K 20.0)
 | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 222 | val e_fun_weight_base = | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 223 |   Attrib.setup_config_real @{binding atp_e_fun_weight_base} (K 0.0)
 | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 224 | val e_fun_weight_span = | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 225 |   Attrib.setup_config_real @{binding atp_e_fun_weight_span} (K 40.0)
 | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 226 | val e_default_sym_offs_weight = | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 227 |   Attrib.setup_config_real @{binding atp_e_default_sym_offs_weight} (K 1.0)
 | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 228 | val e_sym_offs_weight_base = | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 229 |   Attrib.setup_config_real @{binding atp_e_sym_offs_weight_base} (K ~20.0)
 | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 230 | val e_sym_offs_weight_span = | 
| 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 231 |   Attrib.setup_config_real @{binding atp_e_sym_offs_weight_span} (K 60.0)
 | 
| 41725 
7cca2de89296
added support for bleeding-edge E weighting function "SymOffsetsWeight"
 blanchet parents: 
41335diff
changeset | 232 | |
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 233 | fun e_selection_heuristic_case heuristic fw sow = | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 234 | if heuristic = e_fun_weightN then fw | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 235 | else if heuristic = e_sym_offset_weightN then sow | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 236 |   else raise Fail ("unexpected " ^ quote heuristic)
 | 
| 41725 
7cca2de89296
added support for bleeding-edge E weighting function "SymOffsetsWeight"
 blanchet parents: 
41335diff
changeset | 237 | |
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 238 | fun scaled_e_selection_weight ctxt heuristic w = | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 239 | w * Config.get ctxt (e_selection_heuristic_case heuristic | 
| 47029 | 240 | e_fun_weight_span e_sym_offs_weight_span) | 
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 241 | + Config.get ctxt (e_selection_heuristic_case heuristic | 
| 47029 | 242 | e_fun_weight_base e_sym_offs_weight_base) | 
| 41725 
7cca2de89296
added support for bleeding-edge E weighting function "SymOffsetsWeight"
 blanchet parents: 
41335diff
changeset | 243 | |> Real.ceil |> signed_string_of_int | 
| 41313 
a96ac4d180b7
optionally supply constant weights to E -- turned off by default until properly parameterized
 blanchet parents: 
41269diff
changeset | 244 | |
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 245 | fun e_selection_weight_arguments ctxt heuristic sel_weights = | 
| 51631 | 246 | if heuristic = e_fun_weightN orelse heuristic = e_sym_offset_weightN then | 
| 43622 | 247 | (* supplied by Stephan Schulz *) | 
| 41314 
2dc1dfc1bc69
use the options provided by Stephan Schulz -- much better
 blanchet parents: 
41313diff
changeset | 248 | "--split-clauses=4 --split-reuse-defs --simul-paramod --forward-context-sr \ | 
| 
2dc1dfc1bc69
use the options provided by Stephan Schulz -- much better
 blanchet parents: 
41313diff
changeset | 249 | \--destructive-er-aggressive --destructive-er --presat-simplify \ | 
| 47505 
e33d957ae2bf
avoid option introduced in E 1.2 when invoking older versions of E
 blanchet parents: 
47499diff
changeset | 250 | \--prefer-initial-clauses -winvfreqrank -c1 -Ginvfreqconjmax -F1 \ | 
| 
e33d957ae2bf
avoid option introduced in E 1.2 when invoking older versions of E
 blanchet parents: 
47499diff
changeset | 251 | \--delete-bad-limit=150000000 -WSelectMaxLComplexAvoidPosPred -H'(4*" ^ | 
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 252 | e_selection_heuristic_case heuristic "FunWeight" "SymOffsetWeight" ^ | 
| 48376 
416e4123baf3
use "eproof_ram" script if available (plug-in replacement for "eproof", but faster)
 blanchet parents: 
48232diff
changeset | 253 | "(SimulateSOS," ^ | 
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 254 | (e_selection_heuristic_case heuristic | 
| 47029 | 255 | e_default_fun_weight e_default_sym_offs_weight | 
| 42646 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 256 | |> Config.get ctxt |> Real.ceil |> signed_string_of_int) ^ | 
| 41314 
2dc1dfc1bc69
use the options provided by Stephan Schulz -- much better
 blanchet parents: 
41313diff
changeset | 257 | ",20,1.5,1.5,1" ^ | 
| 47030 | 258 | (sel_weights () | 
| 47029 | 259 | |> map (fn (s, w) => "," ^ s ^ ":" ^ | 
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 260 | scaled_e_selection_weight ctxt heuristic w) | 
| 42646 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 261 | |> implode) ^ | 
| 41314 
2dc1dfc1bc69
use the options provided by Stephan Schulz -- much better
 blanchet parents: 
41313diff
changeset | 262 | "),3*ConjectureGeneralSymbolWeight(PreferNonGoals,200,100,200,50,50,1,100,\ | 
| 
2dc1dfc1bc69
use the options provided by Stephan Schulz -- much better
 blanchet parents: 
41313diff
changeset | 263 | \1.5,1.5,1),1*Clauseweight(PreferProcessed,1,1,1),1*\ | 
| 57672 | 264 | \FIFOWeight(PreferProcessed))' " | 
| 51631 | 265 | else | 
| 57672 | 266 | "-xAuto " | 
| 41313 
a96ac4d180b7
optionally supply constant weights to E -- turned off by default until properly parameterized
 blanchet parents: 
41269diff
changeset | 267 | |
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 268 | val e_ord_weights = | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 269 | map (fn (s, w) => s ^ ":" ^ string_of_int w) #> space_implode "," | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 270 | fun e_ord_precedence [_] = "" | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 271 | | e_ord_precedence info = info |> map fst |> space_implode "<" | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 272 | |
| 47039 
1b36a05a070d
added "metis_advisory_simp" option to orient as many equations as possible in Metis the right way (cf. "More SPASS with Isabelle")
 blanchet parents: 
47038diff
changeset | 273 | fun e_term_order_info_arguments false false _ = "" | 
| 
1b36a05a070d
added "metis_advisory_simp" option to orient as many equations as possible in Metis the right way (cf. "More SPASS with Isabelle")
 blanchet parents: 
47038diff
changeset | 274 | | e_term_order_info_arguments gen_weights gen_prec ord_info = | 
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 275 | let val ord_info = ord_info () in | 
| 57672 | 276 | (if gen_weights then "--order-weights='" ^ e_ord_weights ord_info ^ "' " else "") ^ | 
| 277 | (if gen_prec then "--precedence='" ^ e_ord_precedence ord_info ^ "' " else "") | |
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 278 | end | 
| 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 279 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 280 | val e_config : atp_config = | 
| 57671 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 281 |   {exec = fn full_proofs => (["E_HOME"],
 | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 282 | if full_proofs orelse not (is_e_at_least_1_8 ()) then ["eproof_ram", "eproof"] | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 283 | else ["eprover"]), | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 284 | arguments = fn ctxt => fn full_proofs => fn heuristic => fn timeout => fn file_name => | 
| 57008 | 285 |      fn ({is_lpo, gen_weights, gen_prec, ...}, ord_info, sel_weights) =>
 | 
| 286 | (if is_e_at_least_1_8 () then "--auto-schedule " else "") ^ | |
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 287 | "--tstp-in --tstp-out --silent " ^ | 
| 57672 | 288 | e_selection_weight_arguments ctxt heuristic sel_weights ^ | 
| 289 | e_term_order_info_arguments gen_weights gen_prec ord_info ^ | |
| 57636 
3ab503b04bdb
stick to external proofs when invoking E, because they are more detailed and do not merge steps
 blanchet parents: 
57547diff
changeset | 290 | "--term-ordering=" ^ (if is_lpo then "LPO4" else "KBO6") ^ " " ^ | 
| 48651 | 291 | "--cpu-limit=" ^ string_of_int (to_secs 2 timeout) ^ | 
| 57671 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 292 | (if full_proofs orelse not (is_e_at_least_1_8 ()) then | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 293 | " --output-level=5 --pcl-shell-level=" ^ (if full_proofs then "0" else "2") | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 294 | else | 
| 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 295 | " --proof-object=1") ^ | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 296 | " " ^ file_name, | 
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 297 | proof_delims = | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 298 |      [("# SZS output start CNFRefutation", "# SZS output end CNFRefutation")] @
 | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 299 | tstp_proof_delims, | 
| 36265 
41c9e755e552
distinguish between the different ATP errors in the user interface;
 blanchet parents: 
36264diff
changeset | 300 | known_failures = | 
| 45203 | 301 | [(TimedOut, "Failure: Resource limit exceeded (time)"), | 
| 47972 | 302 | (TimedOut, "time limit exceeded")] @ | 
| 303 | known_szs_status_failures, | |
| 47976 | 304 | prem_role = Conjecture, | 
| 42646 
4781fcd53572
replaced some Unsynchronized.refs with Config.Ts
 blanchet parents: 
42643diff
changeset | 305 | best_slices = fn ctxt => | 
| 57636 
3ab503b04bdb
stick to external proofs when invoking E, because they are more detailed and do not merge steps
 blanchet parents: 
57547diff
changeset | 306 | let val heuristic = Config.get ctxt e_selection_heuristic in | 
| 43474 
423cd1ecf714
optimized E's time slicing, based on latest exhaustive Judgment Day results
 blanchet parents: 
43473diff
changeset | 307 | (* FUDGE *) | 
| 47038 
2409b484e1cc
continued implementation of term ordering attributes
 blanchet parents: 
47034diff
changeset | 308 | if heuristic = e_smartN then | 
| 51017 | 309 | [(0.15, (((128, meshN), FOF, "mono_tags??", combsN, false), e_fun_weightN)), | 
| 310 | (0.15, (((128, mashN), FOF, "mono_guards??", combsN, false), e_sym_offset_weightN)), | |
| 311 | (0.15, (((91, mepoN), FOF, "mono_tags??", combsN, false), e_autoN)), | |
| 312 | (0.15, (((1000, meshN), FOF, "poly_guards??", combsN, false), e_sym_offset_weightN)), | |
| 51214 
4fb12e2598dc
swap slices so that the last slice is more complete (for minimization)
 blanchet parents: 
51205diff
changeset | 313 | (0.15, (((256, mepoN), FOF, "mono_tags??", liftingN, false), e_fun_weightN)), | 
| 
4fb12e2598dc
swap slices so that the last slice is more complete (for minimization)
 blanchet parents: 
51205diff
changeset | 314 | (0.25, (((64, mashN), FOF, "mono_guards??", combsN, false), e_fun_weightN))] | 
| 43473 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 blanchet parents: 
43467diff
changeset | 315 | else | 
| 51011 | 316 | [(1.0, (((500, ""), FOF, "mono_tags??", combsN, false), heuristic))] | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 317 | end, | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 318 | best_max_mono_iters = default_max_mono_iters, | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 319 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 38454 
9043eefe8d71
detect old Vampire and give a nicer error message
 blanchet parents: 
38433diff
changeset | 320 | |
| 47646 | 321 | val e = (eN, fn () => e_config) | 
| 28596 
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
 wenzelm parents: 
28592diff
changeset | 322 | |
| 
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
 wenzelm parents: 
28592diff
changeset | 323 | |
| 48651 | 324 | (* E-MaLeS *) | 
| 325 | ||
| 326 | val e_males_config : atp_config = | |
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 327 |   {exec = K (["E_MALES_HOME"], ["emales.py"]),
 | 
| 50927 | 328 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 329 | "-t " ^ string_of_int (to_secs 1 timeout) ^ " -p " ^ file_name, | |
| 48651 | 330 | proof_delims = tstp_proof_delims, | 
| 331 | known_failures = #known_failures e_config, | |
| 332 | prem_role = Conjecture, | |
| 333 | best_slices = | |
| 334 | (* FUDGE *) | |
| 51018 | 335 | K [(0.25, (((500, meshN), FOF, "mono_guards??", combs_or_liftingN, false), "")), | 
| 336 | (0.25, (((150, meshN), FOF, "poly_tags??", combs_or_liftingN, false), "")), | |
| 337 | (0.25, (((50, meshN), FOF, "mono_tags??", combs_or_liftingN, false), "")), | |
| 338 | (0.25, (((1000, meshN), FOF, "poly_guards??", combsN, false), ""))], | |
| 48651 | 339 | best_max_mono_iters = default_max_mono_iters, | 
| 340 | best_max_new_mono_instances = default_max_new_mono_instances} | |
| 341 | ||
| 342 | val e_males = (e_malesN, fn () => e_males_config) | |
| 343 | ||
| 344 | ||
| 50927 | 345 | (* E-Par *) | 
| 346 | ||
| 347 | val e_par_config : atp_config = | |
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 348 |   {exec = K (["E_HOME"], ["runepar.pl"]),
 | 
| 50927 | 349 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 350 | string_of_int (to_secs 1 timeout) ^ " 1 " (* SInE *) ^ file_name ^ | |
| 351 | " 2" (* proofs *), | |
| 352 | proof_delims = tstp_proof_delims, | |
| 353 | known_failures = #known_failures e_config, | |
| 354 | prem_role = Conjecture, | |
| 355 | best_slices = #best_slices e_males_config, | |
| 356 | best_max_mono_iters = default_max_mono_iters, | |
| 357 | best_max_new_mono_instances = default_max_new_mono_instances} | |
| 358 | ||
| 359 | val e_par = (e_parN, fn () => e_par_config) | |
| 360 | ||
| 361 | ||
| 48700 | 362 | (* iProver *) | 
| 363 | ||
| 364 | val iprover_config : atp_config = | |
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 365 |   {exec = K (["IPROVER_HOME"], ["iprover"]),
 | 
| 50927 | 366 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 48720 | 367 | "--clausifier \"$IPROVER_HOME\"/vclausify_rel --time_out_real " ^ | 
| 50927 | 368 | string_of_real (Time.toReal timeout) ^ " " ^ file_name, | 
| 48700 | 369 | proof_delims = tstp_proof_delims, | 
| 370 | known_failures = | |
| 371 | [(ProofIncomplete, "% SZS output start CNFRefutation")] @ | |
| 372 | known_szs_status_failures, | |
| 373 | prem_role = Hypothesis, | |
| 374 | best_slices = | |
| 375 | (* FUDGE *) | |
| 51011 | 376 | K [(1.0, (((150, ""), FOF, "mono_guards??", liftingN, false), ""))], | 
| 48700 | 377 | best_max_mono_iters = default_max_mono_iters, | 
| 378 | best_max_new_mono_instances = default_max_new_mono_instances} | |
| 379 | ||
| 380 | val iprover = (iproverN, fn () => iprover_config) | |
| 381 | ||
| 382 | ||
| 383 | (* iProver-Eq *) | |
| 384 | ||
| 385 | val iprover_eq_config : atp_config = | |
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 386 |   {exec = K (["IPROVER_EQ_HOME"], ["iprover-eq"]),
 | 
| 48700 | 387 | arguments = #arguments iprover_config, | 
| 388 | proof_delims = #proof_delims iprover_config, | |
| 389 | known_failures = #known_failures iprover_config, | |
| 390 | prem_role = #prem_role iprover_config, | |
| 391 | best_slices = #best_slices iprover_config, | |
| 392 | best_max_mono_iters = #best_max_mono_iters iprover_config, | |
| 393 | best_max_new_mono_instances = #best_max_new_mono_instances iprover_config} | |
| 394 | ||
| 395 | val iprover_eq = (iprover_eqN, fn () => iprover_eq_config) | |
| 396 | ||
| 397 | ||
| 44099 | 398 | (* LEO-II *) | 
| 399 | ||
| 54197 
994ebb795b75
use definitions for LEO-II as well -- this simplifies the code and matches some users' expectations
 blanchet parents: 
53586diff
changeset | 400 | val leo2_thf0 = THF (Monomorphic, THF_Without_Choice) | 
| 44754 | 401 | |
| 44099 | 402 | val leo2_config : atp_config = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 403 |   {exec = K (["LEO2_HOME"], ["leo.opt", "leo"]),
 | 
| 57759 | 404 | arguments = fn _ => fn full_proofs => fn _ => fn timeout => fn file_name => fn _ => | 
| 405 | "--foatp e --atp e=\"$E_HOME\"/eprover \ | |
| 406 | \--atp epclextract=\"$E_HOME\"/epclextract \ | |
| 407 | \--proofoutput 1 --timeout " ^ string_of_int (to_secs 1 timeout) ^ " " ^ | |
| 408 | (if full_proofs then "--notReplLeibnizEQ --notReplAndrewsEQ --notUseExtCnfCmbd " else "") ^ | |
| 409 | file_name, | |
| 44099 | 410 | proof_delims = tstp_proof_delims, | 
| 45207 | 411 | known_failures = | 
| 47974 
08d2dcc2dab9
improved LEO-II definition handling -- still hoping for a fix directly in LEO-II
 blanchet parents: 
47972diff
changeset | 412 | [(TimedOut, "CPU time limit exceeded, terminating"), | 
| 47972 | 413 | (GaveUp, "No.of.Axioms")] @ | 
| 414 | known_szs_status_failures, | |
| 47976 | 415 | prem_role = Hypothesis, | 
| 47914 
94f37848b7c9
LEO-II's "--sos" option confusingly disables rather than enables SOS, and SOS seems to be ignored anyway; also, pass a number of facts that's more appropriate for each prover
 blanchet parents: 
47912diff
changeset | 416 | best_slices = | 
| 44099 | 417 | (* FUDGE *) | 
| 51011 | 418 | K [(1.0, (((40, ""), leo2_thf0, "mono_native_higher", keep_lamsN, false), ""))], | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 419 | best_max_mono_iters = default_max_mono_iters - 1 (* FUDGE *), | 
| 53515 
f5b678b155f6
adjusted number of generated monomorphic instances for new monomorphizer based on new evaluation (E, SPASS, Vampire)
 blanchet parents: 
53225diff
changeset | 420 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39375diff
changeset | 421 | |
| 47646 | 422 | val leo2 = (leo2N, fn () => leo2_config) | 
| 44099 | 423 | |
| 424 | ||
| 425 | (* Satallax *) | |
| 426 | ||
| 52097 | 427 | (* Choice is disabled until there is proper reconstruction for it. *) | 
| 54197 
994ebb795b75
use definitions for LEO-II as well -- this simplifies the code and matches some users' expectations
 blanchet parents: 
53586diff
changeset | 428 | val satallax_thf0 = THF (Monomorphic, THF_Without_Choice) | 
| 44754 | 429 | |
| 44099 | 430 | val satallax_config : atp_config = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 431 |   {exec = K (["SATALLAX_HOME"], ["satallax.opt", "satallax"]),
 | 
| 50927 | 432 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 57707 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57672diff
changeset | 433 | "-p tstp -t " ^ string_of_int (to_secs 1 timeout) ^ " " ^ file_name, | 
| 45162 | 434 | proof_delims = | 
| 57707 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57672diff
changeset | 435 |      [("% SZS output start Proof", "% SZS output end Proof")],
 | 
| 45203 | 436 | known_failures = known_szs_status_failures, | 
| 47981 | 437 | prem_role = Hypothesis, | 
| 44416 
cabd06b69c18
added formats to the slice and use TFF for remote Vampire
 blanchet parents: 
44391diff
changeset | 438 | best_slices = | 
| 44754 | 439 | (* FUDGE *) | 
| 51011 | 440 | K [(1.0, (((60, ""), satallax_thf0, "mono_native_higher", keep_lamsN, false), ""))], | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 441 | best_max_mono_iters = default_max_mono_iters - 1 (* FUDGE *), | 
| 53515 
f5b678b155f6
adjusted number of generated monomorphic instances for new monomorphizer based on new evaluation (E, SPASS, Vampire)
 blanchet parents: 
53225diff
changeset | 442 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 44099 | 443 | |
| 47646 | 444 | val satallax = (satallaxN, fn () => satallax_config) | 
| 44099 | 445 | |
| 446 | ||
| 447 | (* SPASS *) | |
| 42725 
64dea91bbe0e
added "force_sos" options to control SPASS's and Vampire's use of SOS in experiments + added corresponding Mirabelle options
 blanchet parents: 
42723diff
changeset | 448 | |
| 48005 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
48004diff
changeset | 449 | val spass_H1SOS = "-Heuristic=1 -SOS" | 
| 50333 
20c69b00e73c
tweak SPASS default a tiny bit, so that a more interesting heuristic is chosen when "slicing=false" (for experiments)
 blanchet parents: 
49991diff
changeset | 450 | val spass_H2 = "-Heuristic=2" | 
| 48005 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
48004diff
changeset | 451 | val spass_H2LR0LT0 = "-Heuristic=2 -LR=0 -LT=0" | 
| 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
48004diff
changeset | 452 | val spass_H2NuVS0 = "-Heuristic=2 -RNuV=1 -Sorts=0" | 
| 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
48004diff
changeset | 453 | val spass_H2NuVS0Red2 = "-Heuristic=2 -RNuV=1 -Sorts=0 -RFRew=2 -RBRew=2 -RTaut=2" | 
| 50333 
20c69b00e73c
tweak SPASS default a tiny bit, so that a more interesting heuristic is chosen when "slicing=false" (for experiments)
 blanchet parents: 
49991diff
changeset | 454 | val spass_H2SOS = "-Heuristic=2 -SOS" | 
| 47055 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 455 | |
| 50950 | 456 | val spass_extra_options = | 
| 457 |   Attrib.setup_config_string @{binding atp_spass_extra_options} (K "")
 | |
| 458 | ||
| 48005 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
48004diff
changeset | 459 | (* FIXME: Make "SPASS_NEW_HOME" legacy. *) | 
| 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
48004diff
changeset | 460 | val spass_config : atp_config = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 461 |   {exec = K (["SPASS_NEW_HOME", "SPASS_HOME"], ["SPASS"]),
 | 
| 52151 
de43876e77bf
disable SPASS's splitting if Isar proofs are desired, because these are not handled by the proof reconstruction code (and it's not clear how to handle them considering the lack of documentation)
 blanchet parents: 
52097diff
changeset | 462 | arguments = fn _ => fn full_proofs => fn extra_options => fn timeout => | 
| 
de43876e77bf
disable SPASS's splitting if Isar proofs are desired, because these are not handled by the proof reconstruction code (and it's not clear how to handle them considering the lack of documentation)
 blanchet parents: 
52097diff
changeset | 463 | fn file_name => fn _ => | 
| 58478 | 464 | "-Isabelle=1 " ^ (if full_proofs then "-CNFRenaming=0 -Splits=0 " else "") ^ | 
| 52151 
de43876e77bf
disable SPASS's splitting if Isar proofs are desired, because these are not handled by the proof reconstruction code (and it's not clear how to handle them considering the lack of documentation)
 blanchet parents: 
52097diff
changeset | 465 | "-TimeLimit=" ^ string_of_int (to_secs 1 timeout) ^ " " ^ file_name | 
| 
de43876e77bf
disable SPASS's splitting if Isar proofs are desired, because these are not handled by the proof reconstruction code (and it's not clear how to handle them considering the lack of documentation)
 blanchet parents: 
52097diff
changeset | 466 | |> extra_options <> "" ? prefix (extra_options ^ " "), | 
| 36369 
d2cd0d04b8e6
handle ATP proof delimiters in a cleaner, more extensible fashion
 blanchet parents: 
36289diff
changeset | 467 |    proof_delims = [("Here is a proof", "Formulae used in the proof")],
 | 
| 36289 
f75b6a3e1450
set "atps" reference's default value to "(remote_)e (remote_)spass (remote_)vampire", based on what is installed
 blanchet parents: 
36287diff
changeset | 468 | known_failures = | 
| 53225 
16235bb41881
got rid of old error -- users who install SPASS manually are responsible for any version mismatches
 blanchet parents: 
52995diff
changeset | 469 | [(GaveUp, "SPASS beiseite: Completion found"), | 
| 36370 
a4f601daa175
centralized ATP-specific error handling in "atp_wrapper.ML"
 blanchet parents: 
36369diff
changeset | 470 | (TimedOut, "SPASS beiseite: Ran out of time"), | 
| 36965 | 471 | (OutOfResources, "SPASS beiseite: Maximal number of loops exceeded"), | 
| 37413 | 472 | (MalformedInput, "Undefined symbol"), | 
| 37414 
d0cea0796295
expect SPASS 3.7, and give a friendly warning if an older version is used
 blanchet parents: 
37413diff
changeset | 473 | (MalformedInput, "Free Variable"), | 
| 44391 | 474 | (Unprovable, "No formulae and clauses found in input file"), | 
| 47972 | 475 | (InternalError, "Please report this error")] @ | 
| 476 | known_perl_failures, | |
| 47976 | 477 | prem_role = Conjecture, | 
| 50950 | 478 | best_slices = fn ctxt => | 
| 42723 | 479 | (* FUDGE *) | 
| 51016 | 480 | [(0.1667, (((150, meshN), DFG Monomorphic, "mono_native", combsN, true), "")), | 
| 481 | (0.1667, (((500, meshN), DFG Monomorphic, "mono_native", liftingN, true), spass_H2SOS)), | |
| 482 | (0.1666, (((50, meshN), DFG Monomorphic, "mono_native", liftingN, true), spass_H2LR0LT0)), | |
| 483 | (0.1000, (((250, meshN), DFG Monomorphic, "mono_native", combsN, true), spass_H2NuVS0)), | |
| 484 | (0.1000, (((1000, mepoN), DFG Monomorphic, "mono_native", liftingN, true), spass_H1SOS)), | |
| 485 | (0.1000, (((150, meshN), DFG Monomorphic, "poly_guards??", liftingN, false), spass_H2NuVS0Red2)), | |
| 486 | (0.1000, (((300, meshN), DFG Monomorphic, "mono_native", combsN, true), spass_H2SOS)), | |
| 487 | (0.1000, (((100, meshN), DFG Monomorphic, "mono_native", combs_and_liftingN, true), spass_H2))] | |
| 50950 | 488 | |> (case Config.get ctxt spass_extra_options of | 
| 489 | "" => I | |
| 490 | | opts => map (apsnd (apsnd (K opts)))), | |
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 491 | best_max_mono_iters = default_max_mono_iters, | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 492 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 38454 
9043eefe8d71
detect old Vampire and give a nicer error message
 blanchet parents: 
38433diff
changeset | 493 | |
| 48005 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
48004diff
changeset | 494 | val spass = (spassN, fn () => spass_config) | 
| 38454 
9043eefe8d71
detect old Vampire and give a nicer error message
 blanchet parents: 
38433diff
changeset | 495 | |
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 496 | |
| 37509 
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
 blanchet parents: 
37506diff
changeset | 497 | (* Vampire *) | 
| 
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
 blanchet parents: 
37506diff
changeset | 498 | |
| 56380 
9bb2856cc845
don't pass Vampire option that doesn't exist anymore (and that wasn't strictly necessary with older Vampires)
 blanchet parents: 
56379diff
changeset | 499 | (* Vampire 1.8 has TFF0 support, but the support was buggy until revision | 
| 48007 | 500 | 1435 (or shortly before). *) | 
| 51873 | 501 | fun is_vampire_at_least_1_8 () = string_ord (getenv "VAMPIRE_VERSION", "1.8") <> LESS | 
| 502 | fun is_vampire_beyond_1_8 () = string_ord (getenv "VAMPIRE_VERSION", "1.8") = GREATER | |
| 44420 | 503 | |
| 52995 
ab98feb66684
Vampire 3.0 requires types to be declared -- make it happy (and get rid of "implicit" types since only Satallax seems to support them anymore)
 blanchet parents: 
52754diff
changeset | 504 | val vampire_tff0 = TFF Monomorphic | 
| 44589 
0a1dfc6365e9
first step towards polymorphic TFF + changed defaults for Vampire
 blanchet parents: 
44586diff
changeset | 505 | |
| 58084 | 506 | val vampire_basic_options = "--proof tptp --output_axiom_names on --mode casc" | 
| 507 | ||
| 508 | (* cf. p. 20 of http://www.complang.tuwien.ac.at/lkovacs/Cade23_Tutorial_Slides/Session2_Slides.pdf *) | |
| 509 | val vampire_full_proof_options = | |
| 510 | " --forced_options splitting=off:equality_proxy=off:general_splitting=off:inequality_splitting=0:\ | |
| 511 | \naming=0" | |
| 512 | ||
| 513 | val remote_vampire_full_proof_command = | |
| 514 | "vampire " ^ vampire_basic_options ^ " " ^ vampire_full_proof_options ^ " -t %d %s" | |
| 515 | ||
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 516 | val vampire_config : atp_config = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 517 |   {exec = K (["VAMPIRE_HOME"], ["vampire"]),
 | 
| 58084 | 518 | arguments = fn _ => fn full_proofs => fn sos => fn timeout => fn file_name => fn _ => | 
| 519 | vampire_basic_options ^ | |
| 520 | (if is_vampire_at_least_1_8 () andalso full_proofs then " " ^ vampire_full_proof_options | |
| 521 | else "") ^ | |
| 522 | " -t " ^ string_of_int (to_secs 1 timeout) ^ " --input_file " ^ file_name | |
| 523 | |> sos = sosN ? prefix "--sos on ", | |
| 37509 
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
 blanchet parents: 
37506diff
changeset | 524 | proof_delims = | 
| 
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
 blanchet parents: 
37506diff
changeset | 525 |      [("=========== Refutation ==========",
 | 
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 526 | "======= End of refutation =======")] @ | 
| 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 527 | tstp_proof_delims, | 
| 37509 
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
 blanchet parents: 
37506diff
changeset | 528 | known_failures = | 
| 43050 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 blanchet parents: 
42999diff
changeset | 529 | [(GaveUp, "UNPROVABLE"), | 
| 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 blanchet parents: 
42999diff
changeset | 530 | (GaveUp, "CANNOT PROVE"), | 
| 37509 
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
 blanchet parents: 
37506diff
changeset | 531 | (Unprovable, "Satisfiability detected"), | 
| 38647 
5500241da479
play with fudge factor + parse one more Vampire error
 blanchet parents: 
38646diff
changeset | 532 | (Unprovable, "Termination reason: Satisfiable"), | 
| 47972 | 533 | (Interrupted, "Aborted by signal SIGINT")] @ | 
| 534 | known_szs_status_failures, | |
| 63116 | 535 | prem_role = Hypothesis, | 
| 42725 
64dea91bbe0e
added "force_sos" options to control SPASS's and Vampire's use of SOS in experiments + added corresponding Mirabelle options
 blanchet parents: 
42723diff
changeset | 536 | best_slices = fn ctxt => | 
| 42723 | 537 | (* FUDGE *) | 
| 48653 | 538 | (if is_vampire_beyond_1_8 () then | 
| 58495 
aefcb244423f
use native encoding with Vampire -- modern versions handle types better than the old ones
 blanchet parents: 
58478diff
changeset | 539 | [(0.333, (((500, meshN), vampire_tff0, "mono_native", combs_or_liftingN, false), sosN)), | 
| 51016 | 540 | (0.333, (((150, meshN), vampire_tff0, "poly_tags??", combs_or_liftingN, false), sosN)), | 
| 51017 | 541 | (0.334, (((50, meshN), vampire_tff0, "mono_native", combs_or_liftingN, false), no_sosN))] | 
| 47055 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 542 | else | 
| 51016 | 543 | [(0.333, (((150, meshN), FOF, "poly_guards??", combs_or_liftingN, false), sosN)), | 
| 51011 | 544 | (0.333, (((500, meshN), FOF, "mono_tags??", combs_or_liftingN, false), sosN)), | 
| 51016 | 545 | (0.334, (((50, meshN), FOF, "mono_guards??", combs_or_liftingN, false), no_sosN))]) | 
| 58084 | 546 | |> Config.get ctxt force_sos ? (hd #> apfst (K 1.0) #> single), | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 547 | best_max_mono_iters = default_max_mono_iters, | 
| 53515 
f5b678b155f6
adjusted number of generated monomorphic instances for new monomorphizer based on new evaluation (E, SPASS, Vampire)
 blanchet parents: 
53225diff
changeset | 548 | best_max_new_mono_instances = 2 * default_max_new_mono_instances (* FUDGE *)} | 
| 38454 
9043eefe8d71
detect old Vampire and give a nicer error message
 blanchet parents: 
38433diff
changeset | 549 | |
| 47646 | 550 | val vampire = (vampireN, fn () => vampire_config) | 
| 37509 
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
 blanchet parents: 
37506diff
changeset | 551 | |
| 48803 
ffa31bf5c662
tone down "z3_tptp", now that Z3 (starting with 4.1) no longer supports TPTP TFF0
 blanchet parents: 
48801diff
changeset | 552 | (* Z3 with TPTP syntax (half experimental, half legacy) *) | 
| 41740 
4b09f8b9e012
added "Z3 as an ATP" support to Sledgehammer locally
 blanchet parents: 
41738diff
changeset | 553 | |
| 52995 
ab98feb66684
Vampire 3.0 requires types to be declared -- make it happy (and get rid of "implicit" types since only Satallax seems to support them anymore)
 blanchet parents: 
52754diff
changeset | 554 | val z3_tff0 = TFF Monomorphic | 
| 44589 
0a1dfc6365e9
first step towards polymorphic TFF + changed defaults for Vampire
 blanchet parents: 
44586diff
changeset | 555 | |
| 44423 
f74707e12d30
exploit TFF format in Z3 used as ATP, and renamed it "z3_tptp"
 blanchet parents: 
44422diff
changeset | 556 | val z3_tptp_config : atp_config = | 
| 56378 | 557 |   {exec = K (["Z3_TPTP_HOME"], ["z3_tptp"]),
 | 
| 50927 | 558 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 57261 | 559 | "-proof -t:" ^ string_of_int (to_secs 1 timeout) ^ " -file:" ^ file_name, | 
| 56397 | 560 |    proof_delims = [("SZS status Theorem", "")],
 | 
| 45203 | 561 | known_failures = known_szs_status_failures, | 
| 47976 | 562 | prem_role = Hypothesis, | 
| 42723 | 563 | best_slices = | 
| 44423 
f74707e12d30
exploit TFF format in Z3 used as ATP, and renamed it "z3_tptp"
 blanchet parents: 
44422diff
changeset | 564 | (* FUDGE *) | 
| 51011 | 565 | K [(0.5, (((250, meshN), z3_tff0, "mono_native", combsN, false), "")), | 
| 566 | (0.25, (((125, mepoN), z3_tff0, "mono_native", combsN, false), "")), | |
| 567 | (0.125, (((62, mashN), z3_tff0, "mono_native", combsN, false), "")), | |
| 568 | (0.125, (((31, meshN), z3_tff0, "mono_native", combsN, false), ""))], | |
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 569 | best_max_mono_iters = default_max_mono_iters, | 
| 53515 
f5b678b155f6
adjusted number of generated monomorphic instances for new monomorphizer based on new evaluation (E, SPASS, Vampire)
 blanchet parents: 
53225diff
changeset | 570 | best_max_new_mono_instances = 2 * default_max_new_mono_instances (* FUDGE *)} | 
| 41740 
4b09f8b9e012
added "Z3 as an ATP" support to Sledgehammer locally
 blanchet parents: 
41738diff
changeset | 571 | |
| 47646 | 572 | val z3_tptp = (z3_tptpN, fn () => z3_tptp_config) | 
| 41740 
4b09f8b9e012
added "Z3 as an ATP" support to Sledgehammer locally
 blanchet parents: 
41738diff
changeset | 573 | |
| 44590 | 574 | |
| 57154 | 575 | (* Zipperposition*) | 
| 576 | ||
| 577 | val zipperposition_config : atp_config = | |
| 578 |   {exec = K (["ZIPPERPOSITION_HOME"], ["zipperposition"]),
 | |
| 579 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | |
| 580 | "-print none -proof tstp -print-types -timeout " ^ | |
| 581 | string_of_int (to_secs 1 timeout) ^ " " ^ file_name, | |
| 582 | proof_delims = tstp_proof_delims, | |
| 583 | known_failures = known_szs_status_failures, | |
| 584 | prem_role = Hypothesis, | |
| 585 | best_slices = fn _ => | |
| 586 | (* FUDGE *) | |
| 57547 
677b07d777c3
don't generate TPTP THF 'Definition's, because they complicate reconstruction for AgsyHOL and Satallax
 blanchet parents: 
57293diff
changeset | 587 | [(1.0, (((100, ""), TFF Polymorphic, "poly_native", liftingN, false), ""))], | 
| 57154 | 588 | best_max_mono_iters = default_max_mono_iters, | 
| 589 | best_max_new_mono_instances = default_max_new_mono_instances} | |
| 590 | ||
| 591 | val zipperposition = (zipperpositionN, fn () => zipperposition_config) | |
| 592 | ||
| 593 | ||
| 48131 | 594 | (* Not really a prover: Experimental Polymorphic THF and DFG output *) | 
| 44590 | 595 | |
| 51919 
097b191d1f0d
use right default for "uncurried_aliases" with polymorphic SPASS
 blanchet parents: 
51873diff
changeset | 596 | fun dummy_config prem_role format type_enc uncurried_aliases : atp_config = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 597 |   {exec = K (["ISABELLE_ATP"], ["scripts/dummy_atp"]),
 | 
| 50927 | 598 | arguments = K (K (K (K (K (K ""))))), | 
| 44590 | 599 | proof_delims = [], | 
| 45203 | 600 | known_failures = known_szs_status_failures, | 
| 51467 | 601 | prem_role = prem_role, | 
| 45521 | 602 | best_slices = | 
| 51011 | 603 | K [(1.0, (((200, ""), format, type_enc, | 
| 48716 
1d2a12bb0640
stop distinguishing between complete and incomplete slices, since this is very fragile and has hardly any useful semantics to users
 blanchet parents: 
48715diff
changeset | 604 | if is_format_higher_order format then keep_lamsN | 
| 51919 
097b191d1f0d
use right default for "uncurried_aliases" with polymorphic SPASS
 blanchet parents: 
51873diff
changeset | 605 | else combsN, uncurried_aliases), ""))], | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 606 | best_max_mono_iters = default_max_mono_iters, | 
| 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 607 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 44590 | 608 | |
| 54197 
994ebb795b75
use definitions for LEO-II as well -- this simplifies the code and matches some users' expectations
 blanchet parents: 
53586diff
changeset | 609 | val dummy_thf_format = THF (Polymorphic, THF_With_Choice) | 
| 57293 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57269diff
changeset | 610 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 611 | val dummy_thf_config = dummy_config Hypothesis dummy_thf_format "poly_native_higher" false | 
| 47646 | 612 | val dummy_thf = (dummy_thfN, fn () => dummy_thf_config) | 
| 44754 | 613 | |
| 57293 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57269diff
changeset | 614 | val dummy_thf_ml_config = dummy_config Hypothesis dummy_thf_format "ml_poly_native_higher" false | 
| 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57269diff
changeset | 615 | val dummy_thf_ml = (dummy_thf_mlN, fn () => dummy_thf_ml_config) | 
| 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57269diff
changeset | 616 | |
| 59577 | 617 | val pirate_format = DFG Polymorphic | 
| 618 | val remote_pirate_config : atp_config = | |
| 619 |   {exec = K (["ISABELLE_ATP"], ["scripts/remote_pirate"]),
 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 620 | arguments = fn _ => fn _ => fn _ => fn timeout => fn file_name => fn _ => | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 621 | string_of_int (to_secs 1 timeout) ^ " " ^ file_name, | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 622 |    proof_delims = [("Involved clauses:", "Involved clauses:")],
 | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 623 | known_failures = known_szs_status_failures, | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 624 | prem_role = #prem_role spass_config, | 
| 59577 | 625 | best_slices = K [(1.0, (((200, ""), pirate_format, "tc_native", combsN, true), ""))], | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 626 | best_max_mono_iters = default_max_mono_iters, | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 627 | best_max_new_mono_instances = default_max_new_mono_instances} | 
| 59577 | 628 | val remote_pirate = (remote_prefix ^ pirateN, fn () => remote_pirate_config) | 
| 41740 
4b09f8b9e012
added "Z3 as an ATP" support to Sledgehammer locally
 blanchet parents: 
41738diff
changeset | 629 | |
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 630 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 631 | (* Remote ATP invocation via SystemOnTPTP *) | 
| 28596 
fcd463a6b6de
tuned interfaces -- plain prover function, without thread;
 wenzelm parents: 
28592diff
changeset | 632 | |
| 49984 | 633 | val remote_systems = Synchronized.var "atp_remote_systems" ([] : string list) | 
| 31835 | 634 | |
| 49984 | 635 | fun get_remote_systems () = | 
| 62519 | 636 | Timeout.apply (seconds 10.0) (fn () => | 
| 58084 | 637 | (case Isabelle_System.bash_output "\"$ISABELLE_ATP/scripts/remote_atp\" -w 2>&1" of | 
| 638 | (output, 0) => split_lines output | |
| 639 | | (output, _) => | |
| 640 | (warning | |
| 641 | (case extract_known_atp_failure known_perl_failures output of | |
| 642 | SOME failure => string_of_atp_failure failure | |
| 643 | | NONE => trim_line output ^ "."); []))) () | |
| 62519 | 644 | handle Timeout.TIMEOUT _ => [] | 
| 31835 | 645 | |
| 49984 | 646 | fun find_remote_system name [] systems = | 
| 42537 
25ceb855a18b
improve version handling -- prefer versions of ToFoF, SInE, and SNARK that are known to work
 blanchet parents: 
42535diff
changeset | 647 | find_first (String.isPrefix (name ^ "---")) systems | 
| 49984 | 648 | | find_remote_system name (version :: versions) systems = | 
| 38690 
38a926e033ad
make remote ATP versions more robust, by starting with "preferred" version numbers and falling back on any version
 blanchet parents: 
38685diff
changeset | 649 | case find_first (String.isPrefix (name ^ "---" ^ version)) systems of | 
| 49984 | 650 | NONE => find_remote_system name versions systems | 
| 38690 
38a926e033ad
make remote ATP versions more robust, by starting with "preferred" version numbers and falling back on any version
 blanchet parents: 
38685diff
changeset | 651 | | res => res | 
| 
38a926e033ad
make remote ATP versions more robust, by starting with "preferred" version numbers and falling back on any version
 blanchet parents: 
38685diff
changeset | 652 | |
| 49984 | 653 | fun get_remote_system name versions = | 
| 654 | Synchronized.change_result remote_systems | |
| 655 | (fn systems => (if null systems then get_remote_systems () else systems) | |
| 656 | |> `(`(find_remote_system name versions))) | |
| 32864 
a226f29d4bdc
re-organized signature of AtpWrapper structure: records instead of unnamed parameters and return values,
 boehmes parents: 
32740diff
changeset | 657 | |
| 49984 | 658 | fun the_remote_system name versions = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 659 | (case get_remote_system name versions of | 
| 42955 | 660 | (SOME sys, _) => sys | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 661 | | (NONE, []) => error "SystemOnTPTP is not available." | 
| 42955 | 662 | | (NONE, syss) => | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 663 | (case syss |> filter_out (String.isPrefix "%") |> filter_out (curry (op =) "") of | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 664 | [] => error "SystemOnTPTP is currently not available." | 
| 49990 | 665 |     | [msg] => error ("SystemOnTPTP is currently not available: " ^ msg ^ ".")
 | 
| 46480 | 666 | | syss => | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 667 |       error ("System " ^ quote name ^ " is not available at SystemOnTPTP.\n(Available systems: " ^
 | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 668 | commas_quote syss ^ ".)"))) | 
| 31835 | 669 | |
| 41148 | 670 | val max_remote_secs = 240 (* give Geoff Sutcliffe's servers a break *) | 
| 671 | ||
| 58084 | 672 | fun remote_config system_name system_versions proof_delims known_failures prem_role best_slice = | 
| 52754 
d9d90d29860e
added support for E 1.8's internal proof objects (eliminating the need for "eproof_ram")
 blanchet parents: 
52151diff
changeset | 673 |   {exec = K (["ISABELLE_ATP"], ["scripts/remote_atp"]),
 | 
| 58084 | 674 | arguments = fn _ => fn full_proofs => fn full_proof_command => fn timeout => fn file_name => fn _ => | 
| 675 | (if full_proofs andalso full_proof_command <> "" then "-c " ^ quote full_proof_command ^ " " | |
| 676 | else "") ^ | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 677 | "-s " ^ the_remote_system system_name system_versions ^ " " ^ | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 678 | "-t " ^ string_of_int (Int.min (max_remote_secs, to_secs 1 timeout)) ^ | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 679 | " " ^ file_name, | 
| 42962 
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
 blanchet parents: 
42955diff
changeset | 680 | proof_delims = union (op =) tstp_proof_delims proof_delims, | 
| 45203 | 681 | known_failures = known_failures @ known_perl_failures @ known_says_failures, | 
| 47976 | 682 | prem_role = prem_role, | 
| 48716 
1d2a12bb0640
stop distinguishing between complete and incomplete slices, since this is very fragile and has hardly any useful semantics to users
 blanchet parents: 
48715diff
changeset | 683 | best_slices = fn ctxt => [(1.0, best_slice ctxt)], | 
| 47962 
137883567114
lower the monomorphization thresholds for less scalable provers
 blanchet parents: 
47955diff
changeset | 684 | best_max_mono_iters = default_max_mono_iters, | 
| 58084 | 685 | best_max_new_mono_instances = default_max_new_mono_instances} : atp_config | 
| 42443 
724e612ba248
implemented general slicing for ATPs, especially E 1.2w and above
 blanchet parents: 
42332diff
changeset | 686 | |
| 43500 
4c357b7aa710
provide appropriate type system and number of fact defaults for remote ATPs
 blanchet parents: 
43497diff
changeset | 687 | fun remotify_config system_name system_versions best_slice | 
| 58084 | 688 |     ({proof_delims, known_failures, prem_role, ...} : atp_config) =
 | 
| 689 | remote_config system_name system_versions proof_delims known_failures prem_role best_slice | |
| 38023 | 690 | |
| 58084 | 691 | fun remote_atp name system_name system_versions proof_delims known_failures prem_role best_slice = | 
| 692 | (remote_prefix ^ name, fn () => | |
| 693 | remote_config system_name system_versions proof_delims known_failures prem_role best_slice) | |
| 43500 
4c357b7aa710
provide appropriate type system and number of fact defaults for remote ATPs
 blanchet parents: 
43497diff
changeset | 694 | fun remotify_atp (name, config) system_name system_versions best_slice = | 
| 58084 | 695 | (remote_prefix ^ name, remotify_config system_name system_versions best_slice o config) | 
| 28592 | 696 | |
| 57269 
1df6f747f164
changed type encoding for new Waldmeister, to trigger filtering of 'dangerous' lemmas
 blanchet parents: 
57265diff
changeset | 697 | fun gen_remote_waldmeister name type_enc = | 
| 57265 | 698 | remote_atp name "Waldmeister" ["710"] tstp_proof_delims | 
| 699 | ([(OutOfResources, "Too many function symbols"), | |
| 700 | (Inappropriate, "**** Unexpected end of file."), | |
| 701 | (Crashed, "Unrecoverable Segmentation Fault")] | |
| 702 | @ known_szs_status_failures) | |
| 57264 | 703 | Hypothesis | 
| 57269 
1df6f747f164
changed type encoding for new Waldmeister, to trigger filtering of 'dangerous' lemmas
 blanchet parents: 
57265diff
changeset | 704 | (K (((50, ""), CNF_UEQ, type_enc, combsN, false), "") (* FUDGE *)) | 
| 57264 | 705 | |
| 52995 
ab98feb66684
Vampire 3.0 requires types to be declared -- make it happy (and get rid of "implicit" types since only Satallax seems to support them anymore)
 blanchet parents: 
52754diff
changeset | 706 | val explicit_tff0 = TFF Monomorphic | 
| 44589 
0a1dfc6365e9
first step towards polymorphic TFF + changed defaults for Vampire
 blanchet parents: 
44586diff
changeset | 707 | |
| 52094 | 708 | val remote_agsyhol = | 
| 709 | remotify_atp agsyhol "agsyHOL" ["1.0", "1"] | |
| 58084 | 710 | (K (((60, ""), agsyhol_thf0, "mono_native_higher", keep_lamsN, false), "") (* FUDGE *)) | 
| 43500 
4c357b7aa710
provide appropriate type system and number of fact defaults for remote ATPs
 blanchet parents: 
43497diff
changeset | 711 | val remote_e = | 
| 59070 
c67c0a729c2d
prefer E 1.8, now that it's been tried and tested
 blanchet parents: 
58495diff
changeset | 712 | remotify_atp e "EP" ["1.8", "1.7", "1.6", "1.5", "1"] | 
| 58084 | 713 | (K (((750, ""), FOF, "mono_tags??", combsN, false), "") (* FUDGE *)) | 
| 48700 | 714 | val remote_iprover = | 
| 52094 | 715 | remotify_atp iprover "iProver" ["0.99"] | 
| 58084 | 716 | (K (((150, ""), FOF, "mono_guards??", liftingN, false), "") (* FUDGE *)) | 
| 48700 | 717 | val remote_iprover_eq = | 
| 52094 | 718 | remotify_atp iprover_eq "iProver-Eq" ["0.8"] | 
| 58084 | 719 | (K (((150, ""), FOF, "mono_guards??", liftingN, false), "") (* FUDGE *)) | 
| 44099 | 720 | val remote_leo2 = | 
| 52094 | 721 | remotify_atp leo2 "LEO-II" ["1.5.0", "1.4", "1.3", "1.2", "1"] | 
| 58084 | 722 | (K (((40, ""), leo2_thf0, "mono_native_higher", liftingN, false), "") (* FUDGE *)) | 
| 44099 | 723 | val remote_satallax = | 
| 52094 | 724 | remotify_atp satallax "Satallax" ["2.7", "2.3", "2"] | 
| 58084 | 725 | (K (((60, ""), satallax_thf0, "mono_native_higher", keep_lamsN, false), "") (* FUDGE *)) | 
| 43500 
4c357b7aa710
provide appropriate type system and number of fact defaults for remote ATPs
 blanchet parents: 
43497diff
changeset | 726 | val remote_vampire = | 
| 63116 | 727 | remotify_atp vampire "Vampire" ["4.0", "3.0", "2.6"] | 
| 58084 | 728 | (K (((400, ""), vampire_tff0, "mono_native", combs_or_liftingN, false), remote_vampire_full_proof_command) (* FUDGE *)) | 
| 44092 
bf489e54d7f8
renamed E wrappers for consistency with CASC conventions
 blanchet parents: 
43989diff
changeset | 729 | val remote_e_sine = | 
| 47912 
12de57c5eee5
get rid of "conj_sym_kind" -- most interesting provers now have built-in sorts, and for the others (e.g. E) "Hypothesis" isn't too bad a default
 blanchet parents: 
47900diff
changeset | 730 | remote_atp e_sineN "SInE" ["0.4"] [] (#known_failures e_config) Conjecture | 
| 58084 | 731 | (K (((500, ""), FOF, "mono_guards??", combsN, false), "") (* FUDGE *)) | 
| 41740 
4b09f8b9e012
added "Z3 as an ATP" support to Sledgehammer locally
 blanchet parents: 
41738diff
changeset | 732 | val remote_snark = | 
| 52094 | 733 | remote_atp snarkN "SNARK" ["20120808r022", "20080805r029", "20080805r024"] | 
| 58084 | 734 |     [("refutation.", "end_refutation.")] [] Hypothesis
 | 
| 735 | (K (((100, ""), explicit_tff0, "mono_native", liftingN, false), "") (* FUDGE *)) | |
| 44092 
bf489e54d7f8
renamed E wrappers for consistency with CASC conventions
 blanchet parents: 
43989diff
changeset | 736 | val remote_e_tofof = | 
| 47912 
12de57c5eee5
get rid of "conj_sym_kind" -- most interesting provers now have built-in sorts, and for the others (e.g. E) "Hypothesis" isn't too bad a default
 blanchet parents: 
47900diff
changeset | 737 | remote_atp e_tofofN "ToFoF" ["0.1"] [] (#known_failures e_config) Hypothesis | 
| 58084 | 738 | (K (((150, ""), explicit_tff0, "mono_native", liftingN, false), "") (* FUDGE *)) | 
| 57269 
1df6f747f164
changed type encoding for new Waldmeister, to trigger filtering of 'dangerous' lemmas
 blanchet parents: 
57265diff
changeset | 739 | val remote_waldmeister = gen_remote_waldmeister waldmeisterN "raw_mono_tags??" | 
| 
1df6f747f164
changed type encoding for new Waldmeister, to trigger filtering of 'dangerous' lemmas
 blanchet parents: 
57265diff
changeset | 740 | val remote_waldmeister_new = gen_remote_waldmeister waldmeister_newN "mono_args" | 
| 38454 
9043eefe8d71
detect old Vampire and give a nicer error message
 blanchet parents: 
38433diff
changeset | 741 | |
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 742 | |
| 38454 
9043eefe8d71
detect old Vampire and give a nicer error message
 blanchet parents: 
38433diff
changeset | 743 | (* Setup *) | 
| 
9043eefe8d71
detect old Vampire and give a nicer error message
 blanchet parents: 
38433diff
changeset | 744 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 745 | fun add_atp (name, config) thy = | 
| 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 746 | Data.map (Symtab.update_new (name, (config, stamp ()))) thy | 
| 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 747 |   handle Symtab.DUP name => error ("Duplicate ATP: " ^ quote name ^ ".")
 | 
| 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 748 | |
| 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 749 | fun get_atp thy name = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 750 | fst (the (Symtab.lookup (Data.get thy) name)) | 
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 751 |   handle Option.Option => error ("Unknown ATP: " ^ name ^ ".")
 | 
| 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 752 | |
| 41727 
ab3f6d76fb23
available_provers ~> supported_provers (for clarity)
 blanchet parents: 
41725diff
changeset | 753 | val supported_atps = Symtab.keys o Data.get | 
| 36371 
8c83ea1a7740
move the Sledgehammer menu options to "sledgehammer_isar.ML"
 blanchet parents: 
36370diff
changeset | 754 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 755 | fun is_atp_installed thy name = | 
| 48376 
416e4123baf3
use "eproof_ram" script if available (plug-in replacement for "eproof", but faster)
 blanchet parents: 
48232diff
changeset | 756 |   let val {exec, ...} = get_atp thy name () in
 | 
| 57671 
dc5e1b1db9ba
avoid 'eproof' and 'eproof_ram' scripts if possible (i.e. if 'eprover' can produce reasonable enough proofs for one-liner reconstruction)
 blanchet parents: 
57636diff
changeset | 757 | exists (fn var => getenv var <> "") (fst (exec false)) | 
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 758 | end | 
| 36371 
8c83ea1a7740
move the Sledgehammer menu options to "sledgehammer_isar.ML"
 blanchet parents: 
36370diff
changeset | 759 | |
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 760 | fun refresh_systems_on_tptp () = | 
| 49984 | 761 | Synchronized.change remote_systems (fn _ => get_remote_systems ()) | 
| 40059 
6ad9081665db
use consistent terminology in Sledgehammer: "prover = ATP or SMT solver or ..."
 blanchet parents: 
39491diff
changeset | 762 | |
| 47055 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 763 | fun effective_term_order ctxt atp = | 
| 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 764 | let val ord = Config.get ctxt term_order in | 
| 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 765 | if ord = smartN then | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 766 |       {is_lpo = false, gen_weights = (atp = spassN), gen_prec = (atp = spassN),
 | 
| 59577 | 767 | gen_simp = String.isSuffix pirateN atp} | 
| 47055 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 768 | else | 
| 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 769 | let val is_lpo = String.isSubstring lpoN ord in | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 770 |         {is_lpo = is_lpo, gen_weights = not is_lpo andalso String.isSubstring xweightsN ord,
 | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 771 | gen_prec = String.isSubstring xprecN ord, gen_simp = String.isSubstring xsimpN ord} | 
| 47055 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 772 | end | 
| 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 773 | end | 
| 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 774 | |
| 52073 
ccb292952774
started adding agsyHOL as an experimental prover
 blanchet parents: 
51998diff
changeset | 775 | val atps = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54197diff
changeset | 776 | [agsyhol, alt_ergo, e, e_males, e_par, iprover, iprover_eq, leo2, satallax, spass, vampire, | 
| 57293 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57269diff
changeset | 777 | z3_tptp, zipperposition, dummy_thf, dummy_thf_ml, remote_agsyhol, remote_e, remote_e_sine, | 
| 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57269diff
changeset | 778 | remote_e_tofof, remote_iprover, remote_iprover_eq, remote_leo2, remote_satallax, remote_vampire, | 
| 59577 | 779 | remote_snark, remote_pirate, remote_waldmeister, remote_waldmeister_new] | 
| 47055 
16e2633f3b4b
made "spass" a "metaprover" that uses either the new SPASS or the old SPASS, to preserve backward compatibility and prepare for the upcoming release
 blanchet parents: 
47053diff
changeset | 780 | |
| 57262 | 781 | val _ = Theory.setup (fold add_atp atps) | 
| 35867 | 782 | |
| 28592 | 783 | end; |