| author | wenzelm | 
| Tue, 30 Jan 2018 20:20:46 +0100 | |
| changeset 67543 | e8b2d85e4a8b | 
| parent 67022 | 49309fe530fd | 
| child 68250 | c45067867860 | 
| 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 | |
| 57697 
44341963ade3
correctly translate THF functions from terms to types
 blanchet parents: 
57656diff
changeset | 5 | Author: Mathias Fleury, ENS Rennes | 
| 39452 | 6 | |
| 42876 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 blanchet parents: 
42848diff
changeset | 7 | Abstract representation of ATP proofs and TSTP/SPASS syntax. | 
| 39452 | 8 | *) | 
| 9 | ||
| 10 | signature ATP_PROOF = | |
| 11 | sig | |
| 54811 | 12 | type 'a atp_type = 'a ATP_Problem.atp_type | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 13 |   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 | 14 | type atp_formula_role = ATP_Problem.atp_formula_role | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 15 |   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 | 16 | type 'a atp_problem = 'a ATP_Problem.atp_problem | 
| 39452 | 17 | |
| 42965 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 18 | exception UNRECOGNIZED_ATP_PROOF of unit | 
| 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 19 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 20 | datatype atp_failure = | 
| 58654 
3e1cad27fc2f
special treatment of extensionality in minimizer
 blanchet parents: 
58600diff
changeset | 21 | MaybeUnprovable | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 22 | Unprovable | | 
| 43050 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 blanchet parents: 
43029diff
changeset | 23 | GaveUp | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 24 | ProofMissing | | 
| 42882 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 blanchet parents: 
42876diff
changeset | 25 | ProofIncomplete | | 
| 57266 
6a3b5085fb8f
fixed parsing of one-argument 'file()' in TSTP files
 blanchet parents: 
57261diff
changeset | 26 | ProofUnparsable | | 
| 44915 
635ae0a73688
simplified unsound proof detection by removing impossible case
 blanchet parents: 
44784diff
changeset | 27 | 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 | 28 | CantConnect | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 29 | TimedOut | | 
| 42953 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 blanchet parents: 
42943diff
changeset | 30 | Inappropriate | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 31 | OutOfResources | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 32 | NoPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 33 | NoLibwwwPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 34 | MalformedInput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 35 | MalformedOutput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 36 | Interrupted | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 37 | Crashed | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 38 | InternalError | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 39 | UnknownError of string | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 40 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 41 | type atp_step_name = string * string list | 
| 53587 
3fb81ab13ea3
generalized data structure, for extension with SMT solver proofs
 blanchet parents: 
53586diff
changeset | 42 |   type ('a, 'b) atp_step =
 | 
| 
3fb81ab13ea3
generalized data structure, for extension with SMT solver proofs
 blanchet parents: 
53586diff
changeset | 43 | atp_step_name * atp_formula_role * 'a * 'b * atp_step_name list | 
| 39452 | 44 | |
| 54811 | 45 |   type 'a atp_proof = (('a, 'a, ('a, 'a atp_type) atp_term, 'a) atp_formula, string) atp_step list
 | 
| 39452 | 46 | |
| 57154 | 47 | (* Named ATPs *) | 
| 48 | val agsyholN : string | |
| 49 | val alt_ergoN : string | |
| 50 | val dummy_thfN : string | |
| 57293 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57266diff
changeset | 51 | val dummy_thf_mlN : string | 
| 57154 | 52 | val eN : string | 
| 53 | val e_malesN : string | |
| 54 | val e_parN : string | |
| 55 | val e_sineN : string | |
| 56 | val e_tofofN : string | |
| 57 | val iproverN : string | |
| 58 | val iprover_eqN : string | |
| 59 | val leo2N : string | |
| 67021 
41f1f8c4259b
integrated Leo-III in Sledgehammer (thanks to Alexander Steen for the patch)
 blanchet parents: 
66545diff
changeset | 60 | val leo3N : string | 
| 59577 | 61 | val pirateN : string | 
| 57154 | 62 | val satallaxN : string | 
| 63 | val snarkN : string | |
| 64 | val spassN : string | |
| 65 | val vampireN : string | |
| 66 | val waldmeisterN : string | |
| 57215 
6fc0e3d4e1e5
moved new highly experimental Waldmeister-specific code (authored by Albert Steckermeier) into Isabelle
 blanchet parents: 
57202diff
changeset | 67 | val waldmeister_newN : string | 
| 57154 | 68 | val z3_tptpN : string | 
| 69 | val zipperpositionN : string | |
| 70 | val remote_prefix : string | |
| 71 | ||
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 72 | val agsyhol_core_rule : string | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 73 | 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 | 74 | val spass_pre_skolemize_rule : string | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 75 | val spass_skolemize_rule : string | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 76 | val z3_tptp_core_rule : string | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 77 | |
| 41259 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 blanchet parents: 
41222diff
changeset | 78 | val short_output : bool -> string -> string | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 79 | 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 | 80 | val extract_important_message : string -> string | 
| 54811 | 81 | 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 | 82 | val extract_tstplike_proof_and_outcome : | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 83 | bool -> (string * string) list -> (atp_failure * string) list -> string | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 84 | -> string * atp_failure option | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 85 | val is_same_atp_step : atp_step_name -> atp_step_name -> bool | 
| 42961 | 86 | val scan_general_id : string list -> string * string list | 
| 54811 | 87 | val parse_formula : string list -> | 
| 88 | (string, string atp_type, (string, string atp_type) atp_term, string) atp_formula * string list | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 89 | val clean_up_atp_proof_dependencies : string atp_proof -> string atp_proof | 
| 54811 | 90 | val map_term_names_in_atp_proof : (string -> string) -> string atp_proof -> string atp_proof | 
| 91 | val nasty_atp_proof : string Symtab.table -> string atp_proof -> string atp_proof | |
| 57707 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57697diff
changeset | 92 | |
| 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57697diff
changeset | 93 | val skip_term: string list -> string * string list | 
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 94 | val parse_thf_formula :string list -> | 
| 57714 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 95 |     ('a, 'b, (string, string ATP_Problem.atp_type) ATP_Problem.atp_term, 'c) ATP_Problem.atp_formula *
 | 
| 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 96 | string list | 
| 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 97 | val dummy_atype : string ATP_Problem.atp_type | 
| 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 98 | val role_of_tptp_string: string -> ATP_Problem.atp_formula_role | 
| 57707 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57697diff
changeset | 99 |   val parse_line: string -> ('a * string ATP_Problem.atp_problem_line list) list ->
 | 
| 57714 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 100 | string list -> ((string * string list) * ATP_Problem.atp_formula_role * | 
| 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 101 | (string, 'b, (string, string ATP_Problem.atp_type) ATP_Problem.atp_term, | 
| 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 102 | 'c) ATP_Problem.atp_formula | 
| 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 103 | * string * (string * 'd list) list) list * string list | 
| 57716 | 104 |   val core_inference : 'a -> 'b -> ('b * 'b list) * ATP_Problem.atp_formula_role *
 | 
| 105 |     ('c, 'd, (string, 'e) ATP_Problem.atp_term, 'f) ATP_Problem.atp_formula * 'a * 'g list
 | |
| 57707 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57697diff
changeset | 106 | val vampire_step_name_ord : (string * 'a) * (string * 'a) -> order | 
| 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57697diff
changeset | 107 | val core_of_agsyhol_proof : string -> string list option | 
| 39452 | 108 | end; | 
| 109 | ||
| 110 | structure ATP_Proof : ATP_PROOF = | |
| 111 | struct | |
| 112 | ||
| 43085 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 blanchet parents: 
43050diff
changeset | 113 | open ATP_Util | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 114 | open ATP_Problem | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 115 | |
| 57154 | 116 | (* Named ATPs *) | 
| 117 | ||
| 118 | val agsyholN = "agsyhol" | |
| 119 | val alt_ergoN = "alt_ergo" | |
| 120 | val dummy_thfN = "dummy_thf" (* for experiments *) | |
| 57293 
4e619ee65a61
added 'dummy_thf_ml' prover for experiments with HOLyHammer
 blanchet parents: 
57266diff
changeset | 121 | val dummy_thf_mlN = "dummy_thf_ml" (* for experiments *) | 
| 57154 | 122 | val eN = "e" | 
| 123 | val e_malesN = "e_males" | |
| 124 | val e_parN = "e_par" | |
| 125 | val e_sineN = "e_sine" | |
| 126 | val e_tofofN = "e_tofof" | |
| 127 | val iproverN = "iprover" | |
| 128 | val iprover_eqN = "iprover_eq" | |
| 129 | val leo2N = "leo2" | |
| 67021 
41f1f8c4259b
integrated Leo-III in Sledgehammer (thanks to Alexander Steen for the patch)
 blanchet parents: 
66545diff
changeset | 130 | val leo3N = "leo3" | 
| 59577 | 131 | val pirateN = "pirate" | 
| 57154 | 132 | val satallaxN = "satallax" | 
| 133 | val snarkN = "snark" | |
| 134 | val spassN = "spass" | |
| 135 | val vampireN = "vampire" | |
| 136 | val waldmeisterN = "waldmeister" | |
| 57215 
6fc0e3d4e1e5
moved new highly experimental Waldmeister-specific code (authored by Albert Steckermeier) into Isabelle
 blanchet parents: 
57202diff
changeset | 137 | val waldmeister_newN = "waldmeister_new" | 
| 57154 | 138 | val z3_tptpN = "z3_tptp" | 
| 139 | val zipperpositionN = "zipperposition" | |
| 140 | val remote_prefix = "remote_" | |
| 141 | ||
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 142 | val agsyhol_core_rule = "__agsyhol_core" (* arbitrary *) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 143 | 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 | 144 | val spass_pre_skolemize_rule = "__Sko0" (* arbitrary *) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 145 | 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 | 146 | 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 | 147 | |
| 42965 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 148 | exception UNRECOGNIZED_ATP_PROOF of unit | 
| 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 blanchet parents: 
42962diff
changeset | 149 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 150 | datatype atp_failure = | 
| 58654 
3e1cad27fc2f
special treatment of extensionality in minimizer
 blanchet parents: 
58600diff
changeset | 151 | MaybeUnprovable | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 152 | Unprovable | | 
| 43050 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 blanchet parents: 
43029diff
changeset | 153 | GaveUp | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 154 | ProofMissing | | 
| 42882 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 blanchet parents: 
42876diff
changeset | 155 | ProofIncomplete | | 
| 57266 
6a3b5085fb8f
fixed parsing of one-argument 'file()' in TSTP files
 blanchet parents: 
57261diff
changeset | 156 | ProofUnparsable | | 
| 44915 
635ae0a73688
simplified unsound proof detection by removing impossible case
 blanchet parents: 
44784diff
changeset | 157 | 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 | 158 | CantConnect | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 159 | TimedOut | | 
| 42953 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 blanchet parents: 
42943diff
changeset | 160 | Inappropriate | | 
| 42587 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 161 | OutOfResources | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 162 | NoPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 163 | NoLibwwwPerl | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 164 | MalformedInput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 165 | MalformedOutput | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 166 | Interrupted | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 167 | Crashed | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 168 | InternalError | | 
| 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 blanchet parents: 
42550diff
changeset | 169 | UnknownError of string | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 170 | |
| 41259 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 blanchet parents: 
41222diff
changeset | 171 | fun short_output verbose output = | 
| 42060 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 172 | if verbose then | 
| 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 173 | if output = "" then "No details available" else elide_string 1000 output | 
| 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 174 | else | 
| 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 blanchet parents: 
41944diff
changeset | 175 | "" | 
| 41259 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 blanchet parents: 
41222diff
changeset | 176 | |
| 41744 | 177 | val missing_message_tail = | 
| 66545 | 178 | " appears to be missing; you will need to install it if you want to invoke \ | 
| 179 | \remote provers" | |
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 180 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 181 | fun from_lemmas [] = "" | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 182 | | 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 | 183 | |
| 66545 | 184 | fun string_of_atp_failure MaybeUnprovable = "The generated problem is maybe unprovable" | 
| 185 | | string_of_atp_failure Unprovable = "The generated problem is unprovable" | |
| 186 | | string_of_atp_failure GaveUp = "The prover gave up" | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 187 | | string_of_atp_failure ProofMissing = | 
| 66545 | 188 | "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 | 189 | | string_of_atp_failure ProofIncomplete = | 
| 66545 | 190 | "The prover claims the conjecture is a theorem but provided an incomplete proof" | 
| 57266 
6a3b5085fb8f
fixed parsing of one-argument 'file()' in TSTP files
 blanchet parents: 
57261diff
changeset | 191 | | string_of_atp_failure ProofUnparsable = | 
| 66545 | 192 | "The prover claims the conjecture is a theorem but provided an unparsable proof" | 
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 193 | | string_of_atp_failure (UnsoundProof (false, ss)) = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 194 | "The prover derived \"False\"" ^ from_lemmas ss ^ | 
| 66545 | 195 | "; 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 | 196 | | string_of_atp_failure (UnsoundProof (true, ss)) = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 197 | "The prover derived \"False\"" ^ from_lemmas ss ^ | 
| 66545 | 198 | ", which could be due to a bug in Sledgehammer or to inconsistent axioms (including \"sorry\"s)" | 
| 199 | | string_of_atp_failure CantConnect = "Cannot connect to server" | |
| 200 | | string_of_atp_failure TimedOut = "Timed out" | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 201 | | string_of_atp_failure Inappropriate = | 
| 66545 | 202 | "The generated problem lies outside the prover's scope" | 
| 203 | | string_of_atp_failure OutOfResources = "The prover ran out of resources" | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 204 | | string_of_atp_failure NoPerl = "Perl" ^ missing_message_tail | 
| 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 205 | | string_of_atp_failure NoLibwwwPerl = | 
| 41744 | 206 | "The Perl module \"libwww-perl\"" ^ missing_message_tail | 
| 66545 | 207 | | string_of_atp_failure MalformedInput = "The generated problem is malformed" | 
| 208 | | string_of_atp_failure MalformedOutput = "The prover output is malformed" | |
| 209 | | string_of_atp_failure Interrupted = "The prover was interrupted" | |
| 210 | | string_of_atp_failure Crashed = "The prover crashed" | |
| 211 | | string_of_atp_failure InternalError = "An internal prover error occurred" | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 212 | | string_of_atp_failure (UnknownError s) = | 
| 41744 | 213 | "A prover error occurred" ^ | 
| 66545 | 214 | (if s = "" then " (pass the \"verbose\" option for details)" else ":\n" ^ s) | 
| 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 | fun extract_delimited (begin_delim, end_delim) output = | 
| 56397 | 217 | (case first_field begin_delim output of | 
| 218 | SOME (_, tail) => | |
| 219 | (case first_field "\n" tail of | |
| 220 | SOME (_, tail') => | |
| 221 | if end_delim = "" then | |
| 222 | tail' | |
| 223 | else | |
| 224 | (case first_field end_delim tail' of | |
| 225 | SOME (body, _) => body | |
| 226 | | NONE => "") | |
| 227 | | NONE => "") | |
| 228 | | NONE => "") | |
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 229 | |
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 230 | val tstp_important_message_delims = | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 231 |   ("% SZS start RequiredInformation", "% SZS end RequiredInformation")
 | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 232 | |
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 233 | fun extract_important_message output = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 234 | (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 | 235 | "" => "" | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 236 | | 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 | 237 | |> map (perhaps (try (unprefix "%"))) | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 238 | |> map (perhaps (try (unprefix " "))) | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 239 | |> space_implode "\n " |> quote) | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 240 | |
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 241 | (* 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 | 242 | fun extract_tstplike_proof delims output = | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58654diff
changeset | 243 | (case apply2 (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 | 244 | (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 | 245 | | _ => "") | 
| 39491 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 246 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 247 | 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 | 248 | known_failures | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 249 | |> 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 | 250 | |> Option.map fst | 
| 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 blanchet parents: 
39457diff
changeset | 251 | |
| 57017 | 252 | 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 | 253 | (case (extract_tstplike_proof proof_delims output, | 
| 56397 | 254 | extract_known_atp_failure known_failures output) of | 
| 48700 | 255 |     (_, SOME ProofIncomplete) => ("", NONE)
 | 
| 57266 
6a3b5085fb8f
fixed parsing of one-argument 'file()' in TSTP files
 blanchet parents: 
57261diff
changeset | 256 |   | (_, SOME ProofUnparsable) => ("", NONE)
 | 
| 43246 | 257 |   | ("", SOME ProofMissing) => ("", NONE)
 | 
| 258 |   | ("", 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 | 259 |   | res as ("", _) => res
 | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 260 | | (tstplike_proof, _) => (tstplike_proof, NONE)) | 
| 39452 | 261 | |
| 53586 
bd5fa6425993
prefixed types and some functions with "atp_" for disambiguation
 blanchet parents: 
53225diff
changeset | 262 | type atp_step_name = string * string list | 
| 39452 | 263 | |
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 264 | 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 | 265 | |
| 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 266 | val vampire_fact_prefix = "f" | 
| 39452 | 267 | |
| 52755 
4183c3219745
simplified Vampire hack -- no need to run it for other ATPs
 blanchet parents: 
52077diff
changeset | 268 | fun vampire_step_name_ord p = | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58654diff
changeset | 269 | let val q = apply2 fst p in | 
| 52755 
4183c3219745
simplified Vampire hack -- no need to run it for other ATPs
 blanchet parents: 
52077diff
changeset | 270 | (* The "unprefix" part is to cope with Vampire's output. *) | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58654diff
changeset | 271 | (case apply2 (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 | 272 | (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 | 273 | | _ => raise Fail "not Vampire") | 
| 39452 | 274 | end | 
| 275 | ||
| 54811 | 276 | type ('a, 'b) atp_step = atp_step_name * atp_formula_role * 'a * 'b * atp_step_name list
 | 
| 39452 | 277 | |
| 54811 | 278 | type 'a atp_proof = (('a, 'a, ('a, 'a atp_type) atp_term, 'a) atp_formula, string) atp_step list
 | 
| 39452 | 279 | |
| 280 | (**** PARSING OF TSTP FORMAT ****) | |
| 281 | ||
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 282 | (* 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 | 283 | with "$" and possibly with "!" in them (for "z3_tptp"). *) | 
| 39452 | 284 | val scan_general_id = | 
| 47917 
b287682bf917
improve parsing of Waldmeister dependencies (and kill obsolete hack)
 blanchet parents: 
47787diff
changeset | 285 | $$ "'" |-- Scan.repeat (~$$ "'") --| $$ "'" >> implode | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58654diff
changeset | 286 | || (Scan.repeat ($$ "$") -- Scan.many1 Symbol.is_letdig >> (op ^ o apply2 implode)) | 
| 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58654diff
changeset | 287 | -- Scan.optional (Scan.repeat ($$ "!") -- Scan.many1 Symbol.is_letdig >> (op ^ o apply2 implode)) "" | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 288 | >> op ^ | 
| 39452 | 289 | |
| 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 skip_term = | 
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 291 | 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 | 292 | fun skip _ accum [] = (accum, []) | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 293 | | skip n accum (ss as s :: ss') = | 
| 57707 
0242e9578828
imported patch satallax_proof_support_Sledgehammer
 fleury parents: 
57697diff
changeset | 294 | if (s = "," orelse s = ".") andalso n = 0 then | 
| 54799 | 295 | (accum, ss) | 
| 56397 | 296 | else if member (op =) [")", "]"] s then | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 297 | if n = 0 then (accum, ss) else skip (n - 1) (s :: accum) ss' | 
| 56397 | 298 |         else if member (op =) ["(", "["] s then
 | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 299 | skip (n + 1) (s :: accum) ss' | 
| 54799 | 300 | else | 
| 54803 
41a109a00c53
fixed variable confusion introduced by 'tuning' change 565f9af86d67
 blanchet parents: 
54799diff
changeset | 301 | skip n (s :: accum) ss' | 
| 54799 | 302 | in | 
| 303 | skip 0 [] #>> (rev #> implode) | |
| 304 | end | |
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 305 | |
| 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 306 | datatype source = | 
| 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 307 | File_Source of string * string option | | 
| 57785 | 308 | Inference_Source of string * string list | | 
| 309 | Introduced_Source of string | |
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 310 | |
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 311 | 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 | 312 | val dummy_inference = Inference_Source ("", [])
 | 
| 57697 
44341963ade3
correctly translate THF functions from terms to types
 blanchet parents: 
57656diff
changeset | 313 | val dummy_atype = AType (("", []), [])
 | 
| 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 | |
| 54769 
3d6ac2f68bf3
correcly recognize E skolemization steps that are wrapped in a 'shift_quantors' inference
 blanchet parents: 
53587diff
changeset | 315 | (* "skip_term" is there to cope with Waldmeister nonsense such as "theory(equality)". *) | 
| 50011 | 316 | fun parse_dependency x = | 
| 317 | (parse_inference_source >> snd | |
| 318 | || scan_general_id --| skip_term >> single) x | |
| 319 | and parse_dependencies x = | |
| 61476 | 320 | (Scan.repeats (Scan.option ($$ ",") |-- parse_dependency) | 
| 321 | >> (filter_out (curry (op =) "theory"))) x | |
| 50011 | 322 | and parse_file_source x = | 
| 323 |   (Scan.this_string "file" |-- $$ "(" |-- scan_general_id
 | |
| 57154 | 324 | -- Scan.option ($$ "," |-- scan_general_id | 
| 57266 
6a3b5085fb8f
fixed parsing of one-argument 'file()' in TSTP files
 blanchet parents: 
57261diff
changeset | 325 | --| Scan.option ($$ "," |-- $$ "[" -- Scan.option scan_general_id --| $$ "]")) --| $$ ")") x | 
| 50011 | 326 | and parse_inference_source x = | 
| 327 |   (Scan.this_string "inference" |-- $$ "(" |-- scan_general_id
 | |
| 328 | --| skip_term --| $$ "," --| skip_term --| $$ "," --| $$ "[" | |
| 329 | -- parse_dependencies --| $$ "]" --| $$ ")") x | |
| 57785 | 330 | and parse_introduced_source x = | 
| 331 |   (Scan.this_string "introduced" |-- $$ "(" |-- scan_general_id
 | |
| 332 | --| Scan.option ($$ "," |-- skip_term) --| $$ ")") x | |
| 50011 | 333 | and parse_source x = | 
| 334 | (parse_file_source >> File_Source | |
| 335 | || parse_inference_source >> Inference_Source | |
| 57785 | 336 | || parse_introduced_source >> Introduced_Source | 
| 52756 
1ac8a0d0ddb1
parse nonnumeric identifiers in E proofs correctly
 blanchet parents: 
52755diff
changeset | 337 |    || 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 | 338 | || skip_term >> K dummy_inference) x | 
| 39452 | 339 | |
| 54799 | 340 | 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 | 341 | |
| 54820 | 342 | fun parse_class x = scan_general_id x | 
| 343 | and parse_classes x = (parse_class ::: Scan.repeat ($$ "&" |-- parse_class)) x | |
| 54811 | 344 | |
| 345 | fun parse_type x = | |
| 66428 | 346 |   (($$ "(" |-- parse_type --| $$ ")"
 | 
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 347 | || Scan.this_string tptp_pi_binder |-- $$ "[" |-- skip_term --| $$ "]" --| $$ ":" -- parse_type | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 348 | >> (fn (_, ty) => ty (* currently ignoring type constructor declarations anyway *)) | 
| 66428 | 349 |     || (scan_general_id -- Scan.optional ($$ "{" |-- parse_classes --| $$ "}") [])
 | 
| 350 |         -- Scan.optional ($$ "(" |-- parse_types --| $$ ")") []
 | |
| 351 | >> AType) | |
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 352 | -- Scan.option (($$ tptp_app || $$ tptp_fun_type || $$ tptp_product_type) -- parse_type) | 
| 66428 | 353 | >> (fn (a, NONE) => a | 
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 354 | | (a, SOME (bin_op, b)) => | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 355 | if bin_op = tptp_app then | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 356 | (case a of | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 357 | AType (s_clss, tys) => AType (s_clss, tys @ [b]) | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 358 | | _ => raise UNRECOGNIZED_ATP_PROOF ()) | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 359 | else if bin_op = tptp_fun_type then | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 360 | AFun (a, b) | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 361 | else if bin_op = tptp_product_type then | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 362 | AType ((tptp_product_type, []), [a, b]) | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 363 | else | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 364 | raise Fail "impossible case")) x | 
| 66544 | 365 | and parse_types x = | 
| 366 | (parse_type ::: Scan.repeat ($$ "," |-- parse_type)) x | |
| 54811 | 367 | |
| 58477 | 368 | (* We currently half ignore types. *) | 
| 369 | fun parse_optional_type_signature x = | |
| 58600 | 370 | (Scan.option ($$ tptp_has_type |-- parse_type) | 
| 371 | >> (fn some as SOME (AType ((s, []), [])) => if s = dfg_individual_type then NONE else some | |
| 372 | | res => res)) x | |
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 373 | and parse_arg x = | 
| 58477 | 374 |   ($$ "(" |-- parse_term --| $$ ")" --| parse_optional_type_signature
 | 
| 375 | || scan_general_id -- parse_optional_type_signature | |
| 54811 | 376 | -- Scan.optional ($$ "<" |-- parse_types --| $$ ">") [] | 
| 377 |        -- Scan.optional ($$ "(" |-- parse_terms --| $$ ")") []
 | |
| 58477 | 378 | >> (fn (((s, ty_opt), tyargs), args) => | 
| 379 | if is_tptp_variable s andalso null tyargs andalso null args andalso is_some ty_opt then | |
| 380 | ATerm ((s, the_list ty_opt), []) | |
| 381 | else | |
| 382 | ATerm ((s, tyargs), args))) x | |
| 56397 | 383 | and parse_term x = | 
| 384 | (parse_arg -- Scan.repeat ($$ tptp_app |-- parse_arg) | |
| 58477 | 385 | --| parse_optional_type_signature >> list_app) x | 
| 54799 | 386 | and parse_terms x = (parse_term ::: Scan.repeat ($$ "," |-- parse_term)) x | 
| 39452 | 387 | |
| 39598 | 388 | fun parse_atom x = | 
| 54811 | 389 | (parse_term -- Scan.option (Scan.option ($$ tptp_not_infix) --| $$ tptp_equal -- parse_term) | 
| 39598 | 390 | >> (fn (u1, NONE) => AAtom u1 | 
| 45881 | 391 | | (u1, SOME (neg, u2)) => | 
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 392 |           AAtom (ATerm (("equal", []), [u1, u2])) |> is_some neg ? mk_anot)) x
 | 
| 39452 | 393 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 394 | (* 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 | 395 | fun parse_literal x = | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 396 | ((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 | 397 |       -- ($$ "(" |-- parse_formula --| $$ ")"
 | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 398 | || parse_quantified_formula | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 399 | || parse_atom) | 
| 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 blanchet parents: 
42603diff
changeset | 400 | >> (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 | 401 | 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 | 402 | (parse_literal | 
| 43163 | 403 | -- Scan.option ((Scan.this_string tptp_implies | 
| 404 | || Scan.this_string tptp_iff | |
| 405 | || Scan.this_string tptp_not_iff | |
| 406 | || Scan.this_string tptp_if | |
| 407 | || $$ tptp_or | |
| 408 | || $$ tptp_and) -- parse_formula) | |
| 39452 | 409 | >> (fn (phi1, NONE) => phi1 | 
| 43163 | 410 | | (phi1, SOME (c, phi2)) => | 
| 411 | if c = tptp_implies then mk_aconn AImplies phi1 phi2 | |
| 412 | else if c = tptp_iff then mk_aconn AIff phi1 phi2 | |
| 413 | else if c = tptp_not_iff then mk_anot (mk_aconn AIff phi1 phi2) | |
| 414 | else if c = tptp_if then mk_aconn AImplies phi2 phi1 | |
| 415 | else if c = tptp_or then mk_aconn AOr phi1 phi2 | |
| 416 | else if c = tptp_and then mk_aconn AAnd phi1 phi2 | |
| 417 |           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 | 418 | and parse_quantified_formula x = | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 419 | (($$ 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 | 420 | --| $$ "[" -- parse_terms --| $$ "]" --| $$ ":" -- parse_literal | 
| 61030 | 421 | >> (fn ((q, ts), phi) => AQuant (q, map (fn ATerm ((s, _), _) => (s, NONE)) ts, phi))) x | 
| 39452 | 422 | |
| 423 | val parse_tstp_extra_arguments = | |
| 56397 | 424 | Scan.optional ($$ "," |-- parse_source --| Scan.option ($$ "," |-- skip_term)) dummy_inference | 
| 39452 | 425 | |
| 47927 
c35238d19bb9
repair the Waldmeister endgame only for Waldmeister proofs
 blanchet parents: 
47926diff
changeset | 426 | val waldmeister_conjecture_name = "conjecture_1" | 
| 42943 | 427 | |
| 42536 | 428 | 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 | 429 | |
| 42943 | 430 | fun is_same_term subst tm1 tm2 = | 
| 431 | let | |
| 57257 | 432 | fun do_term_pair (AAbs (((var1, typ1), body1), args1)) (AAbs (((var2, typ2), body2), args2)) | 
| 433 | (SOME subst) = | |
| 434 | if typ1 <> typ2 andalso length args1 = length args2 then NONE | |
| 435 | else | |
| 436 | let val ls = length subst in | |
| 437 | SOME ((var1, var2) :: subst) | |
| 438 | |> do_term_pair body1 body2 | |
| 439 | |> (fn SOME subst => SOME (nth_drop (length subst - ls - 1) subst) | |
| 440 | | NONE => NONE) | |
| 441 | |> (if length args1 = length args2 | |
| 442 | then fold2 do_term_pair args1 args2 | |
| 57258 
67d85a8aa6cc
Moving the remote prefix deleting on Sledgehammer's side
 fleury parents: 
57257diff
changeset | 443 | else K NONE) | 
| 57257 | 444 | end | 
| 445 | | do_term_pair (ATerm ((s1, _), args1)) (ATerm ((s2, _), args2)) (SOME subst) = | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
58654diff
changeset | 446 | (case apply2 is_tptp_variable (s1, s2) of | 
| 42943 | 447 | (true, true) => | 
| 448 | (case AList.lookup (op =) subst s1 of | |
| 57257 | 449 | SOME s2' => if s2' = s2 then SOME subst else NONE | 
| 450 | | NONE => | |
| 451 | if null (AList.find (op =) subst s2) then SOME ((s1, s2) :: subst) | |
| 452 | else NONE) | |
| 42943 | 453 | | (false, false) => | 
| 57257 | 454 | if s1 = s2 then | 
| 455 | SOME subst | |
| 42943 | 456 | else | 
| 457 | NONE | |
| 57257 | 458 | | _ => NONE) |> (if length args1 = length args2 | 
| 459 | then fold2 do_term_pair args1 args2 | |
| 57258 
67d85a8aa6cc
Moving the remote prefix deleting on Sledgehammer's side
 fleury parents: 
57257diff
changeset | 460 | else K NONE) | 
| 57257 | 461 | | do_term_pair _ _ _ = NONE | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 462 | in | 
| 57257 | 463 | SOME subst |> do_term_pair tm1 tm2 |> is_some | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 464 | end | 
| 42943 | 465 | |
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 466 | fun is_same_formula comm subst (AQuant (q1, xs1, phi1)) (AQuant (q2, xs2, phi2)) = | 
| 42943 | 467 | q1 = q2 andalso length xs1 = length xs2 andalso | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 468 | 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 | 469 | | is_same_formula comm subst (AConn (c1, phis1)) (AConn (c2, phis2)) = | 
| 42943 | 470 | c1 = c2 andalso length phis1 = length phis2 andalso | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 471 | forall (uncurry (is_same_formula comm subst)) (phis1 ~~ phis2) | 
| 57202 | 472 |   | is_same_formula comm subst (AAtom (tm1 as ATerm (("equal", tys), [tm11, tm12]))) (AAtom tm2) =
 | 
| 47926 | 473 | is_same_term subst tm1 tm2 orelse | 
| 54799 | 474 |     (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 | 475 | | 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 | 476 | | is_same_formula _ _ _ _ = false | 
| 42943 | 477 | |
| 50521 
bec828f3364e
generate comments with original names for debugging
 blanchet parents: 
50236diff
changeset | 478 | fun matching_formula_line_identifier phi (Formula ((ident, _), _, phi', _, _)) = | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 479 | if is_same_formula true [] phi phi' then SOME (ident, phi') else NONE | 
| 42943 | 480 | | matching_formula_line_identifier _ _ = NONE | 
| 481 | ||
| 54799 | 482 | fun find_formula_in_problem phi = | 
| 483 | maps snd | |
| 484 | #> map_filter (matching_formula_line_identifier phi) | |
| 485 | #> try (single o hd) | |
| 486 | #> the_default [] | |
| 42943 | 487 | |
| 54799 | 488 | 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 | 489 | | commute_eq _ = raise Fail "expected equation" | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 490 | |
| 50012 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 491 | 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 | 492 | | 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 | 493 | | 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 | 494 | | 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 | 495 | | 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 | 496 | | 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 | 497 | | role_of_tptp_string "plain" = Plain | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 498 | | role_of_tptp_string "type" = Type_Role | 
| 50012 
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
 blanchet parents: 
50011diff
changeset | 499 | | 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 | 500 | |
| 57697 
44341963ade3
correctly translate THF functions from terms to types
 blanchet parents: 
57656diff
changeset | 501 | val tptp_binary_ops = | 
| 
44341963ade3
correctly translate THF functions from terms to types
 blanchet parents: 
57656diff
changeset | 502 | [tptp_and, tptp_not_and, tptp_or, tptp_not_or, tptp_implies, tptp_if, tptp_iff, tptp_not_iff, | 
| 61329 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 503 | tptp_equal, tptp_not_equal, tptp_app] | 
| 57256 | 504 | |
| 57714 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 505 | fun parse_one_in_list xs = | 
| 
4856a7b8b9c3
Changing the role of rule "tmp_ite_elim" of the SMT solver veriT to Lemma.
 fleury parents: 
57709diff
changeset | 506 | foldl1 (op ||) (map Scan.this_string xs) | 
| 57709 | 507 | |
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 508 | fun parse_binary_op x = | 
| 57709 | 509 | (parse_one_in_list tptp_binary_ops | 
| 57697 
44341963ade3
correctly translate THF functions from terms to types
 blanchet parents: 
57656diff
changeset | 510 | >> (fn c => if c = tptp_equal then "equal" else c)) x | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 511 | |
| 57709 | 512 | val parse_fo_quantifier = | 
| 513 | parse_one_in_list [tptp_forall, tptp_exists, tptp_lambda, tptp_hilbert_choice, tptp_hilbert_the] | |
| 514 | ||
| 515 | val parse_ho_quantifier = | |
| 516 | parse_one_in_list [tptp_ho_forall, tptp_ho_exists, tptp_hilbert_choice, tptp_hilbert_the] | |
| 517 | ||
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 518 | fun mk_ho_of_fo_quant q = | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 519 | if q = tptp_forall then tptp_ho_forall | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 520 | else if q = tptp_exists then tptp_ho_exists | 
| 57709 | 521 | else if q = tptp_hilbert_choice then tptp_hilbert_choice | 
| 522 | else if q = tptp_hilbert_the then tptp_hilbert_the | |
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 523 |   else raise Fail ("unrecognized quantification: " ^ q)
 | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 524 | |
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 525 | fun remove_thf_app (ATerm ((x, ty), arg)) = | 
| 61329 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 526 | if x = tptp_app then | 
| 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 527 | (case arg of | 
| 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 528 | ATerm ((x, ty), arg) :: t => remove_thf_app (ATerm ((x, ty), map remove_thf_app arg @ t)) | 
| 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 529 | | [AAbs ((var, tvar), phi), t] => | 
| 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 530 | remove_thf_app (AAbs ((var, tvar), map remove_thf_app phi @ [t]))) | 
| 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 531 | else | 
| 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 532 | ATerm ((x, ty), map remove_thf_app arg) | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 533 | | remove_thf_app (AAbs (((x, ty), arg), t)) = AAbs (((x, ty), remove_thf_app arg), t) | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 534 | |
| 66428 | 535 | fun parse_typed_var x = | 
| 536 | (Scan.repeat (scan_general_id -- Scan.option ($$ tptp_has_type |-- parse_type) | |
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 537 | --| Scan.option (Scan.this_string ",")) | 
| 66428 | 538 |    || $$ "(" |-- parse_typed_var --| $$ ")") x
 | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 539 | |
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 540 | fun parse_simple_thf_term x = | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 541 | (parse_fo_quantifier -- ($$ "[" |-- parse_typed_var --| $$ "]" --| $$ ":") -- parse_thf_term | 
| 57257 | 542 | >> (fn ((q, ys), t) => | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 543 | fold_rev | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 544 | (fn (var, ty) => fn r => | 
| 57257 | 545 | AAbs (((var, the_default dummy_atype ty), r), []) | 
| 546 | |> (if tptp_lambda <> q then | |
| 547 | mk_app (q |> mk_ho_of_fo_quant | |
| 548 | |> mk_simple_aterm) | |
| 549 | else I)) | |
| 550 | ys t) | |
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 551 | || Scan.this_string tptp_not |-- parse_thf_term >> mk_app (mk_simple_aterm tptp_not) | 
| 66428 | 552 | || scan_general_id -- Scan.option ($$ tptp_has_type |-- parse_type) | 
| 61329 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 553 | >> (fn (var, typ_opt) => ATerm ((var, the_list typ_opt), [])) | 
| 57709 | 554 | || parse_ho_quantifier >> mk_simple_aterm | 
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 555 |   || $$ "(" |-- parse_thf_term --| $$ ")"
 | 
| 58324 
65651cb9d191
correction in the thf0 parser ("(=)" found in a Satallax proof).
 fleury parents: 
58091diff
changeset | 556 | || parse_binary_op >> mk_simple_aterm) x | 
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 557 | and parse_thf_term x = | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 558 | (parse_simple_thf_term -- Scan.option (parse_binary_op -- parse_thf_term) | 
| 57257 | 559 | >> (fn (t1, SOME (c, t2)) => | 
| 560 | if c = tptp_app then mk_app t1 t2 else mk_apps (mk_simple_aterm c) [t1, t2] | |
| 561 | | (t, NONE) => t)) x | |
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 562 | |
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 563 | fun parse_thf_formula x = (parse_thf_term #>> remove_thf_app #>> AAtom) x | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 564 | |
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 565 | fun parse_tstp_thf_line problem = | 
| 61329 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 566 |   (Scan.this_string tptp_thf -- $$ "(") |-- scan_general_id --| $$ ","
 | 
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 567 | -- Symbol.scan_ascii_id --| $$ "," -- (parse_thf_formula || skip_term >> K dummy_phi) | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 568 | -- parse_tstp_extra_arguments --| $$ ")" | 
| 61329 
426c9c858099
added "!=" (disequality) as a TPTP binary operator, since it pops up in LEO-II proofs
 blanchet parents: 
61030diff
changeset | 569 | --| $$ "." | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 570 | >> (fn (((num, role), phi), deps) => | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 571 | let | 
| 57257 | 572 | val role' = role_of_tptp_string role | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 573 | val ((name, phi), rule, deps) = | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 574 | (case deps of | 
| 57257 | 575 | File_Source (_, SOME s) => | 
| 576 | if role' = Definition then | |
| 577 | (((num, map fst (find_formula_in_problem phi problem)), phi), "", []) | |
| 578 | else | |
| 579 | (((num, [s |> perhaps (try (unprefix tofof_fact_prefix))]), phi), "", []) | |
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 580 | | Inference_Source (rule, deps) => (((num, []), phi), rule, deps)) | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 581 | in | 
| 57257 | 582 | [(name, role', phi, rule, map (rpair []) deps)] | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 583 | end) | 
| 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 584 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 585 | (* Syntax: (cnf|fof|tff|thf)\(<num>, <formula_role>, <formula> <extra_arguments>\). | 
| 39452 | 586 | The <num> could be an identifier, but we assume integers. *) | 
| 42943 | 587 | fun parse_tstp_line problem = | 
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 588 | ((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 | 589 |     || Scan.this_string tptp_tff || Scan.this_string tptp_thf) -- $$ "(")
 | 
| 50236 | 590 | |-- 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 | 591 | -- (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 | 592 | --| $$ ")" --| $$ "." | 
| 57785 | 593 | >> (fn (((num, role0), phi), src) => | 
| 42943 | 594 | let | 
| 57785 | 595 | val role = role_of_tptp_string role0 | 
| 596 | val ((name, phi), role', rule, deps) = | |
| 42943 | 597 | (* Waldmeister isn't exactly helping. *) | 
| 57785 | 598 | (case src of | 
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 599 | File_Source (_, SOME s) => | 
| 47927 
c35238d19bb9
repair the Waldmeister endgame only for Waldmeister proofs
 blanchet parents: 
47926diff
changeset | 600 | (if s = waldmeister_conjecture_name then | 
| 54799 | 601 | (case find_formula_in_problem (mk_anot phi) problem of | 
| 57202 | 602 | (* Waldmeister hack: Get the original orientation of the equation to avoid | 
| 603 | confusing Isar. *) | |
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 604 | [(s, phi')] => | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 605 | ((num, [s]), | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 606 | 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 | 607 | | _ => ((num, []), phi)) | 
| 47921 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 608 | else | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 609 | ((num, [s |> perhaps (try (unprefix tofof_fact_prefix))]), | 
| 
fc26d5538868
ensure the "show" equation is not reoriented by Waldmeister
 blanchet parents: 
47917diff
changeset | 610 | phi), | 
| 57785 | 611 | role, "", []) | 
| 45208 
9a00f9cc8707
marginally cleaner proof parsing, that doesn't stumble upon LEO-II's E-step proofs
 blanchet parents: 
45203diff
changeset | 612 | | File_Source _ => | 
| 57785 | 613 | (((num, map fst (find_formula_in_problem phi problem)), phi), role, "", []) | 
| 614 | | Inference_Source (rule, deps) => (((num, []), phi), role, rule, deps) | |
| 615 | | Introduced_Source rule => (((num, []), phi), Lemma, rule, [])) | |
| 616 | ||
| 617 | fun mk_step () = (name, role', phi, rule, map (rpair []) deps) | |
| 42943 | 618 | in | 
| 57785 | 619 | [(case role' of | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 620 | Definition => | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 621 | (case phi of | 
| 57255 
488046fdda59
add support for Isar reconstruction for thf1 ATP provers like Leo-II.
 fleury parents: 
57215diff
changeset | 622 |                  AAtom (ATerm (("equal", _), _)) =>
 | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 623 | (* Vampire's equality proxy axiom *) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 624 | (name, Definition, phi, rule, map (rpair []) deps) | 
| 57257 | 625 | | _ => mk_step ()) | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 626 | | _ => mk_step ())] | 
| 42943 | 627 | end) | 
| 39452 | 628 | |
| 629 | (**** PARSING OF SPASS OUTPUT ****) | |
| 630 | ||
| 57786 | 631 | (* SPASS returns clause references of the form "x.y". We ignore "y". *) | 
| 39452 | 632 | val parse_dot_name = scan_general_id --| $$ "." --| scan_general_id | 
| 633 | ||
| 634 | val parse_spass_annotations = | |
| 54811 | 635 | Scan.optional ($$ ":" |-- Scan.repeat (parse_dot_name --| Scan.option ($$ ","))) [] | 
| 39452 | 636 | |
| 57786 | 637 | (* We ignore the stars and the pluses that follow literals. *) | 
| 39602 | 638 | fun parse_decorated_atom x = | 
| 639 | (parse_atom --| Scan.repeat ($$ "*" || $$ "+" || $$ " ")) x | |
| 39452 | 640 | |
| 48132 
9aa0fad4e864
added type arguments to "ATerm" constructor -- but don't use them yet
 blanchet parents: 
48130diff
changeset | 641 | fun mk_horn ([], []) = AAtom (ATerm (("c_False", []), []))
 | 
| 58091 | 642 | | mk_horn (neg_lits, pos_lits) = foldr1 (uncurry (mk_aconn AOr)) (map mk_anot neg_lits @ pos_lits) | 
| 39452 | 643 | |
| 39645 | 644 | fun parse_horn_clause x = | 
| 645 | (Scan.repeat parse_decorated_atom --| $$ "|" --| $$ "|" | |
| 646 | -- Scan.repeat parse_decorated_atom --| $$ "-" --| $$ ">" | |
| 647 | -- Scan.repeat parse_decorated_atom | |
| 648 | >> (mk_horn o apfst (op @))) x | |
| 39452 | 649 | |
| 46390 | 650 | val parse_spass_debug = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 651 |   Scan.option ($$ "(" |-- Scan.repeat (scan_general_id --| Scan.option ($$ ",")) --| $$ ")")
 | 
| 46390 | 652 | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 653 | (* Syntax: <num>[0:<inference><annotations>] <atoms> || <atoms> -> <atoms> . | 
| 46427 | 654 | 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 | 655 | fun parse_spass_line x = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 656 | (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 | 657 | -- 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 | 658 | -- 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 | 659 | |-- 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 | 660 | >> (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 | 661 | [((num, these names), Unknown, u, rule, map (rpair []) deps)])) x | 
| 45162 | 662 | |
| 59577 | 663 | fun parse_pirate_dependency x = (Scan.option ($$ "-") |-- scan_general_id) x | 
| 664 | fun parse_pirate_dependencies x = | |
| 665 | Scan.repeat (parse_pirate_dependency --| Scan.option ($$ "," || $$ " ")) x | |
| 666 | fun parse_pirate_file_source x = | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 667 |   ((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 | 668 | --| $$ ")") x | 
| 59577 | 669 | fun parse_pirate_inference_source x = | 
| 670 |   (scan_general_id -- ($$ "(" |-- parse_pirate_dependencies --| $$ ")")) x
 | |
| 671 | fun parse_pirate_source x = | |
| 672 |   (parse_pirate_file_source >> (fn s => File_Source ("", SOME s))
 | |
| 673 | || parse_pirate_inference_source >> Inference_Source) x | |
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 674 | |
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 675 | (* Syntax: <num> <stuff> || <atoms> -> <atoms> . origin\(<origin>\) *) | 
| 59577 | 676 | fun parse_pirate_line x = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 677 | (scan_general_id --| Scan.repeat (~$$ "|") -- parse_horn_clause --| $$ "." | 
| 59577 | 678 |      --| Scan.this_string "origin" --| $$ "(" -- parse_pirate_source --| $$ ")"
 | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 679 | >> (fn ((((num, u), source))) => | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 680 | let | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 681 | val (names, rule, deps) = | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 682 | (case source of | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 683 | File_Source (_, SOME s) => ([s], spass_input_rule, []) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 684 | | Inference_Source (rule, deps) => ([], rule, deps)) | 
| 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 685 | in | 
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 686 | [((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 | 687 | end)) x | 
| 48539 | 688 | |
| 52077 | 689 | fun core_inference inf fact = ((fact, [fact]), Unknown, dummy_phi, inf, []) | 
| 690 | ||
| 56404 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 691 | (* Syntax: SZS core <name> ... <name> *) | 
| 
9cb137ec6ec8
use Z3 TPTP cores rather than proofs since the latter are somewhat broken
 blanchet parents: 
56397diff
changeset | 692 | 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 | 693 | (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 | 694 | >> map (core_inference z3_tptp_core_rule)) x | 
| 43481 | 695 | |
| 57258 
67d85a8aa6cc
Moving the remote prefix deleting on Sledgehammer's side
 fleury parents: 
57257diff
changeset | 696 | fun parse_line local_name problem = | 
| 67022 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 697 | (* Satallax is handled separately, in "atp_satallax.ML". *) | 
| 
49309fe530fd
more robust parsing for THF proofs (esp. polymorphic Leo-III proofs)
 blanchet parents: 
67021diff
changeset | 698 | if local_name = leo2N orelse local_name = leo3N then parse_tstp_thf_line problem | 
| 57258 
67d85a8aa6cc
Moving the remote prefix deleting on Sledgehammer's side
 fleury parents: 
57257diff
changeset | 699 | else if local_name = spassN then parse_spass_line | 
| 59577 | 700 | else if local_name = pirateN then parse_pirate_line | 
| 57258 
67d85a8aa6cc
Moving the remote prefix deleting on Sledgehammer's side
 fleury parents: 
57257diff
changeset | 701 | else if local_name = z3_tptpN then parse_z3_tptp_core_line | 
| 57154 | 702 | else parse_tstp_line problem | 
| 703 | ||
| 52077 | 704 | fun core_of_agsyhol_proof s = | 
| 54788 
a898e15b522a
primitive support for SPASS-Pirate (Daniel Wand's polymorphic SPASS prototype)
 blanchet parents: 
54772diff
changeset | 705 | (case split_lines s of | 
| 52077 | 706 | "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 | 707 | _ :: 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 | 708 | | _ => NONE) | 
| 52077 | 709 | |
| 42968 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 710 | fun clean_up_dependencies _ [] = [] | 
| 51201 | 711 | | clean_up_dependencies seen ((name, role, u, rule, deps) :: steps) = | 
| 54811 | 712 | (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 | 713 | clean_up_dependencies (name :: seen) steps | 
| 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 blanchet parents: 
42966diff
changeset | 714 | |
| 42975 | 715 | fun clean_up_atp_proof_dependencies proof = clean_up_dependencies [] proof | 
| 39452 | 716 | |
| 50704 | 717 | fun map_term_names_in_atp_proof f = | 
| 718 | let | |
| 54820 | 719 | fun map_type (AType ((s, clss), tys)) = AType ((f s, map f clss), map map_type tys) | 
| 54811 | 720 | | map_type (AFun (ty, ty')) = AFun (map_type ty, map_type ty') | 
| 721 | | map_type (APi (ss, ty)) = APi (map f ss, map_type ty) | |
| 722 | ||
| 723 | fun map_term (ATerm ((s, tys), ts)) = ATerm ((f s, map map_type tys), map map_term ts) | |
| 724 | | map_term (AAbs (((s, ty), tm), args)) = | |
| 725 | AAbs (((f s, map_type ty), map_term tm), map map_term args) | |
| 726 | ||
| 56397 | 727 | fun map_formula (AQuant (q, xs, phi)) = AQuant (q, map (apfst f) xs, map_formula phi) | 
| 54811 | 728 | | map_formula (AConn (c, phis)) = AConn (c, map map_formula phis) | 
| 729 | | map_formula (AAtom t) = AAtom (map_term t) | |
| 730 | ||
| 56397 | 731 | fun map_step (name, role, phi, rule, deps) = (name, role, map_formula phi, rule, deps) | 
| 54811 | 732 | in | 
| 733 | map map_step | |
| 734 | end | |
| 39454 | 735 | |
| 57261 | 736 | fun nasty_name pool s = Symtab.lookup pool s |> the_default s | 
| 50704 | 737 | |
| 39454 | 738 | fun nasty_atp_proof pool = | 
| 50704 | 739 | not (Symtab.is_empty pool) ? map_term_names_in_atp_proof (nasty_name pool) | 
| 39454 | 740 | |
| 39452 | 741 | end; |