| author | nipkow | 
| Fri, 06 Jun 2014 10:53:33 +0200 | |
| changeset 57178 | 276befcd90d9 | 
| parent 57154 | f0eff6393a32 | 
| child 57202 | a582f98292c0 | 
| permissions | -rw-r--r-- | 
| 39452 | 1 | (* Title: HOL/Tools/ATP/atp_proof.ML | 
| 2 | Author: Lawrence C. Paulson, Cambridge University Computer Laboratory | |
| 3 | Author: Claire Quigley, Cambridge University Computer Laboratory | |
| 4 | Author: Jasmin Blanchette, TU Muenchen | |
| 5 | ||
| 42876 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 blanchet parents: 
42848diff
changeset | 6 | Abstract representation of ATP proofs and TSTP/SPASS syntax. | 
| 39452 | 7 | *) | 
| 8 | ||
| 9 | signature ATP_PROOF = | |
| 10 | sig | |
| 54811 | 11 | type 'a atp_type = 'a ATP_Problem.atp_type | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 12 |   type ('a, 'b) atp_term = ('a, 'b) ATP_Problem.atp_term
 | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 13 | type atp_formula_role = ATP_Problem.atp_formula_role | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 14 |   type ('a, 'b, 'c, 'd) atp_formula = ('a, 'b, 'c, 'd) ATP_Problem.atp_formula
 | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 15 | type 'a atp_problem = 'a ATP_Problem.atp_problem | 
| 39452 | 16 | |
| 42965 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 17 | exception UNRECOGNIZED_ATP_PROOF of unit | 
| 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 18 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 19 | datatype atp_failure = | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 20 | Unprovable | | 
| 43050 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 blanchet parents: 
43029diff
changeset | 21 | GaveUp | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 22 | ProofMissing | | 
| 42882 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 blanchet parents: 
42876diff
changeset | 23 | ProofIncomplete | | 
| 44915 
635ae0a73688
simplified unsound proof detection by removing impossible case
 blanchet parents: 
44784diff
changeset | 24 | UnsoundProof of bool * string list | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 25 | CantConnect | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 26 | TimedOut | | 
| 42953 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 blanchet parents: 
42943diff
changeset | 27 | Inappropriate | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 28 | OutOfResources | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 29 | NoPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 30 | NoLibwwwPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 31 | MalformedInput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 32 | MalformedOutput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 33 | Interrupted | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 34 | Crashed | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 35 | InternalError | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 36 | UnknownError of string | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 37 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 38 | type atp_step_name = string * string list | 
| 53587 
3fb81ab13ea3
generalized data structure, for extension with SMT solver proofs
 blanchet parents: 
53586diff
changeset | 39 |   type ('a, 'b) atp_step =
 | 
| 
3fb81ab13ea3
generalized data structure, for extension with SMT solver proofs
 blanchet parents: 
53586diff
changeset | 40 | atp_step_name * atp_formula_role * 'a * 'b * atp_step_name list | 
| 39452 | 41 | |
| 54811 | 42 |   type 'a atp_proof = (('a, 'a, ('a, 'a atp_type) atp_term, 'a) atp_formula, string) atp_step list
 | 
| 39452 | 43 | |
| 57154 | 44 | (* Named ATPs *) | 
| 45 | val agsyholN : string | |
| 46 | val alt_ergoN : string | |
| 47 | val dummy_thfN : string | |
| 48 | val eN : string | |
| 49 | val e_malesN : string | |
| 50 | val e_parN : string | |
| 51 | val e_sineN : string | |
| 52 | val e_tofofN : string | |
| 53 | val iproverN : string | |
| 54 | val iprover_eqN : string | |
| 55 | val leo2N : string | |
| 56 | val satallaxN : string | |
| 57 | val snarkN : string | |
| 58 | val spassN : string | |
| 59 | val spass_pirateN : string | |
| 60 | val vampireN : string | |
| 61 | val waldmeisterN : string | |
| 62 | val z3_tptpN : string | |
| 63 | val zipperpositionN : string | |
| 64 | val remote_prefix : string | |
| 65 | ||
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 66 | val agsyhol_core_rule : string | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 67 | val satallax_core_rule : string | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 68 | val spass_input_rule : string | 
| 55192 
b75b52c7cf94
unskolemize SPASS formula to ensure that the variables are in the right order for 'metis's skolemizer
 blanchet parents: 
54836diff
changeset | 69 | val spass_pre_skolemize_rule : string | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 70 | val spass_skolemize_rule : string | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 71 | val z3_tptp_core_rule : string | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 72 | |
| 41259 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 blanchet parents: 
41222diff
changeset | 73 | val short_output : bool -> string -> string | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 74 | val string_of_atp_failure : atp_failure -> string | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 75 | val extract_important_message : string -> string | 
| 54811 | 76 | val extract_known_atp_failure : (atp_failure * string) list -> string -> atp_failure option | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 77 | val extract_tstplike_proof_and_outcome : | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 78 | bool -> (string * string) list -> (atp_failure * string) list -> string | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 79 | -> string * atp_failure option | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 80 | val is_same_atp_step : atp_step_name -> atp_step_name -> bool | 
| 42961 | 81 | val scan_general_id : string list -> string * string list | 
| 54811 | 82 | val parse_formula : string list -> | 
| 83 | (string, string atp_type, (string, string atp_type) atp_term, string) atp_formula * string list | |
| 57154 | 84 | val atp_proof_of_tstplike_proof : string -> string atp_problem -> string -> string atp_proof | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 85 | val clean_up_atp_proof_dependencies : string atp_proof -> string atp_proof | 
| 54811 | 86 | val map_term_names_in_atp_proof : (string -> string) -> string atp_proof -> string atp_proof | 
| 87 | val nasty_atp_proof : string Symtab.table -> string atp_proof -> string atp_proof | |
| 39452 | 88 | end; | 
| 89 | ||
| 90 | structure ATP_Proof : ATP_PROOF = | |
| 91 | struct | |
| 92 | ||
| 43085 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 blanchet parents: 
43050diff
changeset | 93 | open ATP_Util | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 94 | open ATP_Problem | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 95 | |
| 57154 | 96 | (* Named ATPs *) | 
| 97 | ||
| 98 | val agsyholN = "agsyhol" | |
| 99 | val alt_ergoN = "alt_ergo" | |
| 100 | val dummy_thfN = "dummy_thf" (* for experiments *) | |
| 101 | val eN = "e" | |
| 102 | val e_malesN = "e_males" | |
| 103 | val e_parN = "e_par" | |
| 104 | val e_sineN = "e_sine" | |
| 105 | val e_tofofN = "e_tofof" | |
| 106 | val iproverN = "iprover" | |
| 107 | val iprover_eqN = "iprover_eq" | |
| 108 | val leo2N = "leo2" | |
| 109 | val satallaxN = "satallax" | |
| 110 | val snarkN = "snark" | |
| 111 | val spassN = "spass" | |
| 112 | val spass_pirateN = "spass_pirate" | |
| 113 | val vampireN = "vampire" | |
| 114 | val waldmeisterN = "waldmeister" | |
| 115 | val z3_tptpN = "z3_tptp" | |
| 116 | val zipperpositionN = "zipperposition" | |
| 117 | val remote_prefix = "remote_" | |
| 118 | ||
| 119 | ||
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 120 | val agsyhol_core_rule = "__agsyhol_core" (* arbitrary *) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 121 | val satallax_core_rule = "__satallax_core" (* arbitrary *) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 122 | val spass_input_rule = "Inp" | 
| 55192 
b75b52c7cf94
unskolemize SPASS formula to ensure that the variables are in the right order for 'metis's skolemizer
 blanchet parents: 
54836diff
changeset | 123 | val spass_pre_skolemize_rule = "__Sko0" (* arbitrary *) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 124 | val spass_skolemize_rule = "__Sko" (* arbitrary *) | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 125 | val z3_tptp_core_rule = "__z3_tptp_core" (* arbitrary *) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 126 | |
| 42965 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 127 | exception UNRECOGNIZED_ATP_PROOF of unit | 
| 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 128 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 129 | datatype atp_failure = | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 130 | Unprovable | | 
| 43050 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 blanchet parents: 
43029diff
changeset | 131 | GaveUp | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 132 | ProofMissing | | 
| 42882 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 blanchet parents: 
42876diff
changeset | 133 | ProofIncomplete | | 
| 44915 
635ae0a73688
simplified unsound proof detection by removing impossible case
 blanchet parents: 
44784diff
changeset | 134 | UnsoundProof of bool * string list | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 135 | CantConnect | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 136 | TimedOut | | 
| 42953 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 blanchet parents: 
42943diff
changeset | 137 | Inappropriate | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 138 | OutOfResources | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 139 | NoPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 140 | NoLibwwwPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 141 | MalformedInput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 142 | MalformedOutput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 143 | Interrupted | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 144 | Crashed | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 145 | InternalError | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 146 | UnknownError of string | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 147 | |
| 41259 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 blanchet parents: 
41222diff
changeset | 148 | fun short_output verbose output = | 
| 42060 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 149 | if verbose then | 
| 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 150 | if output = "" then "No details available" else elide_string 1000 output | 
| 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 151 | else | 
| 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 152 | "" | 
| 41259 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 blanchet parents: 
41222diff
changeset | 153 | |
| 41744 | 154 | val missing_message_tail = | 
| 155 | " appears to be missing. You will need to install it if you want to invoke \ | |
| 156 | \remote provers." | |
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 157 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 158 | fun from_lemmas [] = "" | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 159 | | from_lemmas ss = " from " ^ space_implode " " (Try.serial_commas "and" (map quote ss)) | 
| 42876 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 blanchet parents: 
42848diff
changeset | 160 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 161 | fun string_of_atp_failure Unprovable = "The generated problem is unprovable." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 162 | | string_of_atp_failure GaveUp = "The prover gave up." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 163 | | string_of_atp_failure ProofMissing = | 
| 41744 | 164 | "The prover claims the conjecture is a theorem but did not provide a proof." | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 165 | | string_of_atp_failure ProofIncomplete = | 
| 42882 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 blanchet parents: 
42876diff
changeset | 166 | "The prover claims the conjecture is a theorem but provided an incomplete \ | 
| 46427 | 167 | \(or unparsable) proof." | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 168 | | string_of_atp_failure (UnsoundProof (false, ss)) = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 169 | "The prover derived \"False\"" ^ from_lemmas ss ^ | 
| 53224 | 170 | ". Specify a sound type encoding or omit the \"type_enc\" option." | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 171 | | string_of_atp_failure (UnsoundProof (true, ss)) = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 172 | "The prover derived \"False\"" ^ from_lemmas ss ^ | 
| 53224 | 173 | ". This could be due to inconsistent axioms (including \"sorry\"s) or to \ | 
| 174 | \a bug in Sledgehammer. If the problem persists, please contact the \ | |
| 175 | \Isabelle developers." | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 176 | | string_of_atp_failure CantConnect = "Cannot connect to remote server." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 177 | | string_of_atp_failure TimedOut = "Timed out." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 178 | | string_of_atp_failure Inappropriate = | 
| 47506 | 179 | "The generated problem lies outside the prover's scope." | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 180 | | string_of_atp_failure OutOfResources = "The prover ran out of resources." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 181 | | string_of_atp_failure NoPerl = "Perl" ^ missing_message_tail | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 182 | | string_of_atp_failure NoLibwwwPerl = | 
| 41744 | 183 | "The Perl module \"libwww-perl\"" ^ missing_message_tail | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 184 | | string_of_atp_failure MalformedInput = | 
| 41744 | 185 | "The generated problem is malformed. Please report this to the Isabelle \ | 
| 186 | \developers." | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 187 | | string_of_atp_failure MalformedOutput = "The prover output is malformed." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 188 | | string_of_atp_failure Interrupted = "The prover was interrupted." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 189 | | string_of_atp_failure Crashed = "The prover crashed." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 190 | | string_of_atp_failure InternalError = "An internal prover error occurred." | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 191 | | string_of_atp_failure (UnknownError s) = | 
| 41744 | 192 | "A prover error occurred" ^ | 
| 51998 
f732a674db1b
renamed Sledgehammer functions with 'for' in their names to 'of'
 blanchet parents: 
51881diff
changeset | 193 | (if s = "" then ". (Pass the \"verbose\" option for details.)" | 
| 
f732a674db1b
renamed Sledgehammer functions with 'for' in their names to 'of'
 blanchet parents: 
51881diff
changeset | 194 | else ":\n" ^ s) | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 195 | |
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 196 | fun extract_delimited (begin_delim, end_delim) output = | 
| 56397 | 197 | (case first_field begin_delim output of | 
| 198 | SOME (_, tail) => | |
| 199 | (case first_field "\n" tail of | |
| 200 | SOME (_, tail') => | |
| 201 | if end_delim = "" then | |
| 202 | tail' | |
| 203 | else | |
| 204 | (case first_field end_delim tail' of | |
| 205 | SOME (body, _) => body | |
| 206 | | NONE => "") | |
| 207 | | NONE => "") | |
| 208 | | NONE => "") | |
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 209 | |
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 210 | val tstp_important_message_delims = | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 211 |   ("% SZS start RequiredInformation", "% SZS end RequiredInformation")
 | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 212 | |
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 213 | fun extract_important_message output = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 214 | (case extract_delimited tstp_important_message_delims output of | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 215 | "" => "" | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 216 | | s => s |> space_explode "\n" |> filter_out (curry (op =) "") | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 217 | |> map (perhaps (try (unprefix "%"))) | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 218 | |> map (perhaps (try (unprefix " "))) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 219 | |> space_implode "\n " |> quote) | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 220 | |
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 221 | (* Splits by the first possible of a list of delimiters. *) | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 222 | fun extract_tstplike_proof delims output = | 
| 56397 | 223 | (case pairself (find_first (fn s => String.isSubstring s output)) (ListPair.unzip delims) of | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 224 | (SOME begin_delim, SOME end_delim) => extract_delimited (begin_delim, end_delim) output | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 225 | | _ => "") | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 226 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 227 | fun extract_known_atp_failure known_failures output = | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 228 | known_failures | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 229 | |> find_first (fn (_, pattern) => String.isSubstring pattern output) | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 230 | |> Option.map fst | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 231 | |
| 57017 | 232 | fun extract_tstplike_proof_and_outcome verbose proof_delims known_failures output = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 233 | (case (extract_tstplike_proof proof_delims output, | 
| 56397 | 234 | extract_known_atp_failure known_failures output) of | 
| 48700 | 235 |     (_, SOME ProofIncomplete) => ("", NONE)
 | 
| 43246 | 236 |   | ("", SOME ProofMissing) => ("", NONE)
 | 
| 237 |   | ("", NONE) => ("", SOME (UnknownError (short_output verbose output)))
 | |
| 48716 
1d2a12bb0640
stop distinguishing between complete and incomplete slices, since this is very fragile and has hardly any useful semantics to users
 blanchet parents: 
48700diff
changeset | 238 |   | res as ("", _) => res
 | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 239 | | (tstplike_proof, _) => (tstplike_proof, NONE)) | 
| 39452 | 240 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 241 | type atp_step_name = string * string list | 
| 39452 | 242 | |
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 243 | fun is_same_atp_step (s1, _) (s2, _) = s1 = s2 | 
| 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 244 | |
| 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 245 | val vampire_fact_prefix = "f" | 
| 39452 | 246 | |
| 52755 
4183c3219745
simplified Vampire hack -- no need to run it for other ATPs
 blanchet parents: 
52077diff
changeset | 247 | fun vampire_step_name_ord p = | 
| 39455 | 248 | let val q = pairself fst p in | 
| 52755 
4183c3219745
simplified Vampire hack -- no need to run it for other ATPs
 blanchet parents: 
52077diff
changeset | 249 | (* The "unprefix" part is to cope with Vampire's output. *) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 250 | (case pairself (Int.fromString o perhaps (try (unprefix vampire_fact_prefix))) q of | 
| 52755 
4183c3219745
simplified Vampire hack -- no need to run it for other ATPs
 blanchet parents: 
52077diff
changeset | 251 | (SOME i, SOME j) => int_ord (i, j) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 252 | | _ => raise Fail "not Vampire") | 
| 39452 | 253 | end | 
| 254 | ||
| 54811 | 255 | type ('a, 'b) atp_step = atp_step_name * atp_formula_role * 'a * 'b * atp_step_name list
 | 
| 39452 | 256 | |
| 54811 | 257 | type 'a atp_proof = (('a, 'a, ('a, 'a atp_type) atp_term, 'a) atp_formula, string) atp_step list
 | 
| 39452 | 258 | |
| 259 | (**** PARSING OF TSTP FORMAT ****) | |
| 260 | ||
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 261 | (* Strings enclosed in single quotes (e.g., file names), identifiers possibly starting | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 262 | with "$" and possibly with "!" in them (for "z3_tptp"). *) | 
| 39452 | 263 | val scan_general_id = | 
| 47917 
b287682bf917
improve parsing of Waldmeister dependencies (and kill obsolete hack)
 blanchet parents: 
47787diff
changeset | 264 | $$ "'" |-- Scan.repeat (~$$ "'") --| $$ "'" >> implode | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 265 | || (Scan.repeat ($$ "$") -- Scan.many1 Symbol.is_letdig >> (op ^ o pairself implode)) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 266 | -- Scan.optional (Scan.repeat ($$ "!") -- Scan.many1 Symbol.is_letdig >> (op ^ o pairself implode)) "" | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 267 | >> op ^ | 
| 39452 | 268 | |
| 45235 
7187bce94e88
more robust parsing of TSTP sources -- Vampire has nonstandard "introduced()" tags and Waldmeister(OnTPTP) has weird "theory(...)" dependencies
 blanchet parents: 
45209diff
changeset | 269 | val skip_term = | 
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 270 | let | 
| 45235 
7187bce94e88
more robust parsing of TSTP sources -- Vampire has nonstandard "introduced()" tags and Waldmeister(OnTPTP) has weird "theory(...)" dependencies
 blanchet parents: 
45209diff
changeset | 271 | fun skip _ accum [] = (accum, []) | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 272 | | skip n accum (ss as s :: ss') = | 
| 54799 | 273 | if s = "," andalso n = 0 then | 
| 274 | (accum, ss) | |
| 56397 | 275 | else if member (op =) [")", "]"] s then | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 276 | if n = 0 then (accum, ss) else skip (n - 1) (s :: accum) ss' | 
| 56397 | 277 |         else if member (op =) ["(", "["] s then
 | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 278 | skip (n + 1) (s :: accum) ss' | 
| 54799 | 279 | else | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 280 | skip n (s :: accum) ss' | 
| 54799 | 281 | in | 
| 282 | skip 0 [] #>> (rev #> implode) | |
| 283 | end | |
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 284 | |
| 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 285 | datatype source = | 
| 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 286 | File_Source of string * string option | | 
| 45209 | 287 | Inference_Source of string * string list | 
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 288 | |
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 289 | val dummy_phi = AAtom (ATerm (("", []), []))
 | 
| 45235 
7187bce94e88
more robust parsing of TSTP sources -- Vampire has nonstandard "introduced()" tags and Waldmeister(OnTPTP) has weird "theory(...)" dependencies
 blanchet parents: 
45209diff
changeset | 290 | val dummy_inference = Inference_Source ("", [])
 | 
| 
7187bce94e88
more robust parsing of TSTP sources -- Vampire has nonstandard "introduced()" tags and Waldmeister(OnTPTP) has weird "theory(...)" dependencies
 blanchet parents: 
45209diff
changeset | 291 | |
| 54769 
3d6ac2f68bf3
correcly recognize E skolemization steps that are wrapped in a 'shift_quantors' inference
 blanchet parents: 
53587diff
changeset | 292 | (* "skip_term" is there to cope with Waldmeister nonsense such as "theory(equality)". *) | 
| 50011 | 293 | fun parse_dependency x = | 
| 294 | (parse_inference_source >> snd | |
| 295 | || scan_general_id --| skip_term >> single) x | |
| 296 | and parse_dependencies x = | |
| 56397 | 297 | (Scan.repeat (Scan.option ($$ ",") |-- parse_dependency) >> flat) x | 
| 50011 | 298 | and parse_file_source x = | 
| 299 |   (Scan.this_string "file" |-- $$ "(" |-- scan_general_id
 | |
| 57154 | 300 | -- Scan.option ($$ "," |-- scan_general_id | 
| 301 | --| Scan.option ($$"," |-- $$"[" -- Scan.option scan_general_id --| $$"]") --| $$ ")")) x | |
| 50011 | 302 | and parse_inference_source x = | 
| 303 |   (Scan.this_string "inference" |-- $$ "(" |-- scan_general_id
 | |
| 304 | --| skip_term --| $$ "," --| skip_term --| $$ "," --| $$ "[" | |
| 305 | -- parse_dependencies --| $$ "]" --| $$ ")") x | |
| 51031 
63d71b247323
more robustness in Isar proof reconstruction (cf. bug report by Ondrej)
 blanchet parents: 
50704diff
changeset | 306 | and skip_introduced x = | 
| 52993 
dd28fbc5cecb
more robust parsing of Vampire proofs with "introduced" names
 blanchet parents: 
52756diff
changeset | 307 |   (Scan.this_string "introduced" |-- $$ "(" |-- skip_term
 | 
| 
dd28fbc5cecb
more robust parsing of Vampire proofs with "introduced" names
 blanchet parents: 
52756diff
changeset | 308 | -- Scan.repeat ($$ "," |-- skip_term) --| $$ ")") x | 
| 50011 | 309 | and parse_source x = | 
| 310 | (parse_file_source >> File_Source | |
| 311 | || parse_inference_source >> Inference_Source | |
| 51031 
63d71b247323
more robustness in Isar proof reconstruction (cf. bug report by Ondrej)
 blanchet parents: 
50704diff
changeset | 312 | || skip_introduced >> K dummy_inference (* for Vampire *) | 
| 52756 
1ac8a0d0ddb1
parse nonnumeric identifiers in E proofs correctly
 blanchet parents: 
52755diff
changeset | 313 |    || scan_general_id >> (fn s => Inference_Source ("", [s])) (* for E *)
 | 
| 45235 
7187bce94e88
more robust parsing of TSTP sources -- Vampire has nonstandard "introduced()" tags and Waldmeister(OnTPTP) has weird "theory(...)" dependencies
 blanchet parents: 
45209diff
changeset | 314 | || skip_term >> K dummy_inference) x | 
| 39452 | 315 | |
| 54799 | 316 | fun list_app (f, args) = fold (fn arg => fn f => ATerm ((tptp_app, []), [f, arg])) args f | 
| 42966 
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
 blanchet parents: 
42965diff
changeset | 317 | |
| 54820 | 318 | fun parse_class x = scan_general_id x | 
| 319 | and parse_classes x = (parse_class ::: Scan.repeat ($$ "&" |-- parse_class)) x | |
| 54811 | 320 | |
| 321 | fun parse_type x = | |
| 54820 | 322 |   (scan_general_id -- Scan.optional ($$ "{" |-- parse_classes --| $$ "}") []
 | 
| 54811 | 323 |     -- Scan.optional ($$ "(" |-- parse_types --| $$ ")") []
 | 
| 324 | >> AType) x | |
| 325 | and parse_types x = (parse_type ::: Scan.repeat ($$ "," |-- parse_type)) x | |
| 326 | ||
| 45881 | 327 | (* We currently ignore TFF and THF types. *) | 
| 54811 | 328 | fun parse_type_signature x = Scan.repeat (($$ tptp_has_type || $$ tptp_fun_type) |-- parse_arg) x | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 329 | and parse_arg x = | 
| 54811 | 330 |   ($$ "(" |-- parse_term --| $$ ")" --| parse_type_signature
 | 
| 331 | || scan_general_id --| parse_type_signature | |
| 332 | -- Scan.optional ($$ "<" |-- parse_types --| $$ ">") [] | |
| 333 |        -- Scan.optional ($$ "(" |-- parse_terms --| $$ ")") []
 | |
| 334 | >> ATerm) x | |
| 56397 | 335 | and parse_term x = | 
| 336 | (parse_arg -- Scan.repeat ($$ tptp_app |-- parse_arg) | |
| 337 | --| Scan.option parse_type_signature >> list_app) x | |
| 54799 | 338 | and parse_terms x = (parse_term ::: Scan.repeat ($$ "," |-- parse_term)) x | 
| 39452 | 339 | |
| 39598 | 340 | fun parse_atom x = | 
| 54811 | 341 | (parse_term -- Scan.option (Scan.option ($$ tptp_not_infix) --| $$ tptp_equal -- parse_term) | 
| 39598 | 342 | >> (fn (u1, NONE) => AAtom u1 | 
| 45881 | 343 | | (u1, SOME (neg, u2)) => | 
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 344 |           AAtom (ATerm (("equal", []), [u1, u2])) |> is_some neg ? mk_anot)) x
 | 
| 39452 | 345 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 346 | (* TPTP formulas are fully parenthesized, so we don't need to worry about operator precedence. *) | 
| 42605 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 347 | fun parse_literal x = | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 348 | ((Scan.repeat ($$ tptp_not) >> length) | 
| 42605 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 349 |       -- ($$ "(" |-- parse_formula --| $$ ")"
 | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 350 | || parse_quantified_formula | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 351 | || parse_atom) | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 352 | >> (fn (n, phi) => phi |> n mod 2 = 1 ? mk_anot)) x | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 353 | and parse_formula x = | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 354 | (parse_literal | 
| 43163 | 355 | -- Scan.option ((Scan.this_string tptp_implies | 
| 356 | || Scan.this_string tptp_iff | |
| 357 | || Scan.this_string tptp_not_iff | |
| 358 | || Scan.this_string tptp_if | |
| 359 | || $$ tptp_or | |
| 360 | || $$ tptp_and) -- parse_formula) | |
| 39452 | 361 | >> (fn (phi1, NONE) => phi1 | 
| 43163 | 362 | | (phi1, SOME (c, phi2)) => | 
| 363 | if c = tptp_implies then mk_aconn AImplies phi1 phi2 | |
| 364 | else if c = tptp_iff then mk_aconn AIff phi1 phi2 | |
| 365 | else if c = tptp_not_iff then mk_anot (mk_aconn AIff phi1 phi2) | |
| 366 | else if c = tptp_if then mk_aconn AImplies phi2 phi1 | |
| 367 | else if c = tptp_or then mk_aconn AOr phi1 phi2 | |
| 368 | else if c = tptp_and then mk_aconn AAnd phi1 phi2 | |
| 369 |           else raise Fail ("impossible connective " ^ quote c))) x
 | |
| 42605 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 370 | and parse_quantified_formula x = | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 371 | (($$ tptp_forall >> K AForall || $$ tptp_exists >> K AExists) | 
| 42605 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 372 | --| $$ "[" -- parse_terms --| $$ "]" --| $$ ":" -- parse_literal | 
| 54799 | 373 | >> (fn ((q, ts), phi) => AQuant (q, map (fn ATerm ((s, []), _) => (s, NONE)) ts, phi))) x | 
| 39452 | 374 | |
| 375 | val parse_tstp_extra_arguments = | |
| 56397 | 376 | Scan.optional ($$ "," |-- parse_source --| Scan.option ($$ "," |-- skip_term)) dummy_inference | 
| 39452 | 377 | |
| 47927 
c35238d19bb9
repair the Waldmeister endgame only for Waldmeister proofs
 blanchet parents: 
47926diff
changeset | 378 | val waldmeister_conjecture_name = "conjecture_1" | 
| 42943 | 379 | |
| 42536 | 380 | val tofof_fact_prefix = "fof_" | 
| 41203 
1393514094d7
fixed more issues with the Vampire output parser, and added support for Vampire's TSTP output (--proof tptp)
 blanchet parents: 
41201diff
changeset | 381 | |
| 42943 | 382 | fun is_same_term subst tm1 tm2 = | 
| 383 | let | |
| 384 | fun do_term_pair _ NONE = NONE | |
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 385 | | do_term_pair (ATerm ((s1, _), tm1), ATerm ((s2, _), tm2)) (SOME subst) = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 386 | (case pairself is_tptp_variable (s1, s2) of | 
| 42943 | 387 | (true, true) => | 
| 388 | (case AList.lookup (op =) subst s1 of | |
| 389 | SOME s2' => if s2' = s2 then SOME subst else NONE | |
| 390 | | NONE => | |
| 391 | if null (AList.find (op =) subst s2) then SOME ((s1, s2) :: subst) | |
| 392 | else NONE) | |
| 393 | | (false, false) => | |
| 394 | if s1 = s2 andalso length tm1 = length tm2 then | |
| 395 | SOME subst |> fold do_term_pair (tm1 ~~ tm2) | |
| 396 | else | |
| 397 | NONE | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 398 | | _ => NONE) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 399 | in | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 400 | SOME subst |> do_term_pair (tm1, tm2) |> is_some | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 401 | end | 
| 42943 | 402 | |
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 403 | fun is_same_formula comm subst (AQuant (q1, xs1, phi1)) (AQuant (q2, xs2, phi2)) = | 
| 42943 | 404 | q1 = q2 andalso length xs1 = length xs2 andalso | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 405 | is_same_formula comm ((map fst xs1 ~~ map fst xs2) @ subst) phi1 phi2 | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 406 | | is_same_formula comm subst (AConn (c1, phis1)) (AConn (c2, phis2)) = | 
| 42943 | 407 | c1 = c2 andalso length phis1 = length phis2 andalso | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 408 | forall (uncurry (is_same_formula comm subst)) (phis1 ~~ phis2) | 
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 409 | | is_same_formula comm subst | 
| 54799 | 410 |         (AAtom (tm1 as ATerm (("equal", tys), [tm11, tm12]))) (AAtom tm2) =
 | 
| 47926 | 411 | is_same_term subst tm1 tm2 orelse | 
| 54799 | 412 |     (comm andalso is_same_term subst (ATerm (("equal", tys), [tm12, tm11])) tm2)
 | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 413 | | is_same_formula _ subst (AAtom tm1) (AAtom tm2) = is_same_term subst tm1 tm2 | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 414 | | is_same_formula _ _ _ _ = false | 
| 42943 | 415 | |
| 50521 
bec828f3364e
generate comments with original names for debugging
 blanchet parents: 
50236diff
changeset | 416 | fun matching_formula_line_identifier phi (Formula ((ident, _), _, phi', _, _)) = | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 417 | if is_same_formula true [] phi phi' then SOME (ident, phi') else NONE | 
| 42943 | 418 | | matching_formula_line_identifier _ _ = NONE | 
| 419 | ||
| 54799 | 420 | fun find_formula_in_problem phi = | 
| 421 | maps snd | |
| 422 | #> map_filter (matching_formula_line_identifier phi) | |
| 423 | #> try (single o hd) | |
| 424 | #> the_default [] | |
| 42943 | 425 | |
| 54799 | 426 | fun commute_eq (AAtom (ATerm ((s, tys), tms))) = AAtom (ATerm ((s, tys), rev tms)) | 
| 47946 
33afcfad3f8d
add an experimental "aggressive" mode to Sledgehammer, to experiment with more complete translations of higher-order features without breaking "metis"
 blanchet parents: 
47927diff
changeset | 427 | | commute_eq _ = raise Fail "expected equation" | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 428 | |
| 50012 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 429 | fun role_of_tptp_string "axiom" = Axiom | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 430 | | role_of_tptp_string "definition" = Definition | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 431 | | role_of_tptp_string "lemma" = Lemma | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 432 | | role_of_tptp_string "hypothesis" = Hypothesis | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 433 | | role_of_tptp_string "conjecture" = Conjecture | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 434 | | role_of_tptp_string "negated_conjecture" = Negated_Conjecture | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 435 | | role_of_tptp_string "plain" = Plain | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 436 | | role_of_tptp_string _ = Unknown | 
| 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 437 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 438 | (* Syntax: (cnf|fof|tff|thf)\(<num>, <formula_role>, <formula> <extra_arguments>\). | 
| 39452 | 439 | The <num> could be an identifier, but we assume integers. *) | 
| 42943 | 440 | fun parse_tstp_line problem = | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 441 | ((Scan.this_string tptp_cnf || Scan.this_string tptp_fof | 
| 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 442 |     || Scan.this_string tptp_tff || Scan.this_string tptp_thf) -- $$ "(")
 | 
| 50236 | 443 | |-- scan_general_id --| $$ "," -- Symbol.scan_ascii_id --| $$ "," | 
| 45235 
7187bce94e88
more robust parsing of TSTP sources -- Vampire has nonstandard "introduced()" tags and Waldmeister(OnTPTP) has weird "theory(...)" dependencies
 blanchet parents: 
45209diff
changeset | 444 | -- (parse_formula || skip_term >> K dummy_phi) -- parse_tstp_extra_arguments | 
| 
7187bce94e88
more robust parsing of TSTP sources -- Vampire has nonstandard "introduced()" tags and Waldmeister(OnTPTP) has weird "theory(...)" dependencies
 blanchet parents: 
45209diff
changeset | 445 | --| $$ ")" --| $$ "." | 
| 42943 | 446 | >> (fn (((num, role), phi), deps) => | 
| 447 | let | |
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 448 | val ((name, phi), rule, deps) = | 
| 42943 | 449 | (* Waldmeister isn't exactly helping. *) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 450 | (case deps of | 
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 451 | File_Source (_, SOME s) => | 
| 47927 
c35238d19bb9
repair the Waldmeister endgame only for Waldmeister proofs
 blanchet parents: 
47926diff
changeset | 452 | (if s = waldmeister_conjecture_name then | 
| 54799 | 453 | (case find_formula_in_problem (mk_anot phi) problem of | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 454 | (* Waldmeister hack: Get the original orientation of the | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 455 | equation to avoid confusing Isar. *) | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 456 | [(s, phi')] => | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 457 | ((num, [s]), | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 458 | phi |> not (is_same_formula false [] (mk_anot phi) phi') ? commute_eq) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 459 | | _ => ((num, []), phi)) | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 460 | else | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 461 | ((num, [s |> perhaps (try (unprefix tofof_fact_prefix))]), | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 462 | phi), | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 463 | "", []) | 
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 464 | | File_Source _ => | 
| 54799 | 465 | (((num, map fst (find_formula_in_problem phi problem)), phi), "", []) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 466 | | Inference_Source (rule, deps) => (((num, []), phi), rule, deps)) | 
| 54799 | 467 | fun mk_step () = (name, role_of_tptp_string role, phi, rule, map (rpair []) deps) | 
| 42943 | 468 | in | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 469 | [(case role_of_tptp_string role of | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 470 | Definition => | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 471 | (case phi of | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 472 |                   AAtom (ATerm (("equal", _), _)) =>
 | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 473 | (* Vampire's equality proxy axiom *) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 474 | (name, Definition, phi, rule, map (rpair []) deps) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 475 | | _ => mk_step ()) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 476 | | _ => mk_step ())] | 
| 42943 | 477 | end) | 
| 39452 | 478 | |
| 479 | (**** PARSING OF SPASS OUTPUT ****) | |
| 480 | ||
| 481 | (* SPASS returns clause references of the form "x.y". We ignore "y", whose role | |
| 482 | is not clear anyway. *) | |
| 483 | val parse_dot_name = scan_general_id --| $$ "." --| scan_general_id | |
| 484 | ||
| 485 | val parse_spass_annotations = | |
| 54811 | 486 | Scan.optional ($$ ":" |-- Scan.repeat (parse_dot_name --| Scan.option ($$ ","))) [] | 
| 39452 | 487 | |
| 488 | (* It is not clear why some literals are followed by sequences of stars and/or | |
| 489 | pluses. We ignore them. *) | |
| 39602 | 490 | fun parse_decorated_atom x = | 
| 491 | (parse_atom --| Scan.repeat ($$ "*" || $$ "+" || $$ " ")) x | |
| 39452 | 492 | |
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 493 | fun mk_horn ([], []) = AAtom (ATerm (("c_False", []), []))
 | 
| 42943 | 494 | | mk_horn ([], pos_lits) = foldr1 (uncurry (mk_aconn AOr)) pos_lits | 
| 495 | | mk_horn (neg_lits, []) = mk_anot (foldr1 (uncurry (mk_aconn AAnd)) neg_lits) | |
| 39452 | 496 | | mk_horn (neg_lits, pos_lits) = | 
| 42943 | 497 | mk_aconn AImplies (foldr1 (uncurry (mk_aconn AAnd)) neg_lits) | 
| 498 | (foldr1 (uncurry (mk_aconn AOr)) pos_lits) | |
| 39452 | 499 | |
| 39645 | 500 | fun parse_horn_clause x = | 
| 501 | (Scan.repeat parse_decorated_atom --| $$ "|" --| $$ "|" | |
| 502 | -- Scan.repeat parse_decorated_atom --| $$ "-" --| $$ ">" | |
| 503 | -- Scan.repeat parse_decorated_atom | |
| 504 | >> (mk_horn o apfst (op @))) x | |
| 39452 | 505 | |
| 46390 | 506 | val parse_spass_debug = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 507 |   Scan.option ($$ "(" |-- Scan.repeat (scan_general_id --| Scan.option ($$ ",")) --| $$ ")")
 | 
| 46390 | 508 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 509 | (* Syntax: <num>[0:<inference><annotations>] <atoms> || <atoms> -> <atoms> . | 
| 46427 | 510 | derived from formulae <ident>* *) | 
| 48005 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
47972diff
changeset | 511 | fun parse_spass_line x = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 512 | (parse_spass_debug |-- scan_general_id --| $$ "[" --| Scan.many1 Symbol.is_digit --| $$ ":" | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 513 | -- Symbol.scan_ascii_id -- parse_spass_annotations --| $$ "]" -- parse_horn_clause --| $$ "." | 
| 48005 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
47972diff
changeset | 514 | -- Scan.option (Scan.this_string "derived from formulae " | 
| 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
47972diff
changeset | 515 | |-- Scan.repeat (scan_general_id --| Scan.option ($$ " "))) | 
| 
eeede26f2721
killed SPASS 3.5/3.7 FLOTTER hack -- requires users to upgrade to SPASS 3.8
 blanchet parents: 
47972diff
changeset | 516 | >> (fn ((((num, rule), deps), u), names) => | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 517 | [((num, these names), Unknown, u, rule, map (rpair []) deps)])) x | 
| 45162 | 518 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 519 | fun parse_spass_pirate_dependency x = (Scan.option ($$ "-") |-- scan_general_id) x | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 520 | fun parse_spass_pirate_dependencies x = | 
| 54811 | 521 | Scan.repeat (parse_spass_pirate_dependency --| Scan.option ($$ "," || $$ " ")) x | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 522 | fun parse_spass_pirate_file_source x = | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 523 |   ((Scan.this_string "Input" || Scan.this_string "Conj") |-- $$ "(" |-- scan_general_id
 | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 524 | --| $$ ")") x | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 525 | fun parse_spass_pirate_inference_source x = | 
| 54836 | 526 |   (scan_general_id -- ($$ "(" |-- parse_spass_pirate_dependencies --| $$ ")")) x
 | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 527 | fun parse_spass_pirate_source x = | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 528 |   (parse_spass_pirate_file_source >> (fn s => File_Source ("", SOME s))
 | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 529 | || parse_spass_pirate_inference_source >> Inference_Source) x | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 530 | |
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 531 | (* Syntax: <num> <stuff> || <atoms> -> <atoms> . origin\(<origin>\) *) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 532 | fun parse_spass_pirate_line x = | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 533 | (scan_general_id --| Scan.repeat (~$$ "|") -- parse_horn_clause --| $$ "." | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 534 |      --| Scan.this_string "origin" --| $$ "(" -- parse_spass_pirate_source --| $$ ")"
 | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 535 | >> (fn ((((num, u), source))) => | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 536 | let | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 537 | val (names, rule, deps) = | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 538 | (case source of | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 539 | File_Source (_, SOME s) => ([s], spass_input_rule, []) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 540 | | Inference_Source (rule, deps) => ([], rule, deps)) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 541 | in | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 542 | [((num, names), Unknown, u, rule, map (rpair []) deps)] | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 543 | end)) x | 
| 48539 | 544 | |
| 52077 | 545 | fun core_inference inf fact = ((fact, [fact]), Unknown, dummy_phi, inf, []) | 
| 546 | ||
| 45162 | 547 | (* Syntax: <name> *) | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 548 | fun parse_satallax_core_line x = | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 549 | (scan_general_id --| Scan.option ($$ " ") >> (single o core_inference satallax_core_rule)) x | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 550 | |
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 551 | (* Syntax: SZS core <name> ... <name> *) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 552 | fun parse_z3_tptp_core_line x = | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 553 | (Scan.this_string "SZS core" |-- Scan.repeat ($$ " " |-- scan_general_id) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 554 | >> map (core_inference z3_tptp_core_rule)) x | 
| 43481 | 555 | |
| 57154 | 556 | fun parse_line name problem = | 
| 557 | if name = z3_tptpN then parse_z3_tptp_core_line | |
| 558 | else if name = spass_pirateN then parse_spass_pirate_line | |
| 559 | else if name = spassN then parse_spass_line | |
| 560 | else if name = satallaxN then parse_satallax_core_line | |
| 561 | else parse_tstp_line problem | |
| 562 | ||
| 563 | fun parse_proof name problem = | |
| 50590 | 564 | strip_spaces_except_between_idents | 
| 565 | #> raw_explode | |
| 566 | #> Scan.error (!! (fn _ => raise UNRECOGNIZED_ATP_PROOF ()) | |
| 57154 | 567 | (Scan.finite Symbol.stopper (Scan.repeat1 (parse_line name problem) >> flat))) | 
| 50590 | 568 | #> fst | 
| 43481 | 569 | |
| 52077 | 570 | fun core_of_agsyhol_proof s = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 571 | (case split_lines s of | 
| 52077 | 572 | "The transformed problem consists of the following conjectures:" :: conj :: | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 573 | _ :: proof_term :: _ => SOME (unprefix " " conj :: find_enclosed "<<" ">>" proof_term) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 574 | | _ => NONE) | 
| 52077 | 575 | |
| 57154 | 576 | fun atp_proof_of_tstplike_proof prover _ "" = [] | 
| 577 | | atp_proof_of_tstplike_proof prover problem tstp = | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 578 | (case core_of_agsyhol_proof tstp of | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 579 | SOME facts => facts |> map (core_inference agsyhol_core_rule) | 
| 52077 | 580 | | NONE => | 
| 54811 | 581 | tstp ^ "$" (* the $ sign acts as a sentinel (FIXME: needed?) *) | 
| 57154 | 582 | |> parse_proof prover problem | 
| 583 | |> prover = vampireN ? perhaps (try (sort (vampire_step_name_ord o pairself #1))) | |
| 584 | |> prover = zipperpositionN ? rev) | |
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 585 | |
| 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 586 | fun clean_up_dependencies _ [] = [] | 
| 51201 | 587 | | clean_up_dependencies seen ((name, role, u, rule, deps) :: steps) = | 
| 54811 | 588 | (name, role, u, rule, map_filter (fn dep => find_first (is_same_atp_step dep) seen) deps) :: | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 589 | clean_up_dependencies (name :: seen) steps | 
| 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 590 | |
| 42975 | 591 | fun clean_up_atp_proof_dependencies proof = clean_up_dependencies [] proof | 
| 39452 | 592 | |
| 50704 | 593 | fun map_term_names_in_atp_proof f = | 
| 594 | let | |
| 54820 | 595 | fun map_type (AType ((s, clss), tys)) = AType ((f s, map f clss), map map_type tys) | 
| 54811 | 596 | | map_type (AFun (ty, ty')) = AFun (map_type ty, map_type ty') | 
| 597 | | map_type (APi (ss, ty)) = APi (map f ss, map_type ty) | |
| 598 | ||
| 599 | fun map_term (ATerm ((s, tys), ts)) = ATerm ((f s, map map_type tys), map map_term ts) | |
| 600 | | map_term (AAbs (((s, ty), tm), args)) = | |
| 601 | AAbs (((f s, map_type ty), map_term tm), map map_term args) | |
| 602 | ||
| 56397 | 603 | fun map_formula (AQuant (q, xs, phi)) = AQuant (q, map (apfst f) xs, map_formula phi) | 
| 54811 | 604 | | map_formula (AConn (c, phis)) = AConn (c, map map_formula phis) | 
| 605 | | map_formula (AAtom t) = AAtom (map_term t) | |
| 606 | ||
| 56397 | 607 | fun map_step (name, role, phi, rule, deps) = (name, role, map_formula phi, rule, deps) | 
| 54811 | 608 | in | 
| 609 | map map_step | |
| 610 | end | |
| 39454 | 611 | |
| 612 | fun nasty_name pool s = s |> Symtab.lookup pool |> the_default s | |
| 50704 | 613 | |
| 39454 | 614 | fun nasty_atp_proof pool = | 
| 50704 | 615 | not (Symtab.is_empty pool) ? map_term_names_in_atp_proof (nasty_name pool) | 
| 39454 | 616 | |
| 39452 | 617 | end; |