| author | huffman | 
| Mon, 15 Aug 2011 18:35:36 -0700 | |
| changeset 44219 | f738e3200e24 | 
| parent 43823 | 9361c7c930d0 | 
| child 44417 | c76c04d876ef | 
| 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: 
42848 
diff
changeset
 | 
6  | 
Abstract representation of ATP proofs and TSTP/SPASS syntax.  | 
| 39452 | 7  | 
*)  | 
8  | 
||
9  | 
signature ATP_PROOF =  | 
|
10  | 
sig  | 
|
| 43678 | 11  | 
  type ('a, 'b) ho_term = ('a, 'b) ATP_Problem.ho_term
 | 
| 
42531
 
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
 
blanchet 
parents: 
42526 
diff
changeset
 | 
12  | 
  type ('a, 'b, 'c) formula = ('a, 'b, 'c) ATP_Problem.formula
 | 
| 42943 | 13  | 
type 'a problem = 'a ATP_Problem.problem  | 
| 39452 | 14  | 
|
| 
42965
 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 
blanchet 
parents: 
42962 
diff
changeset
 | 
15  | 
exception UNRECOGNIZED_ATP_PROOF of unit  | 
| 
 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 
blanchet 
parents: 
42962 
diff
changeset
 | 
16  | 
|
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
17  | 
datatype failure =  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
18  | 
Unprovable |  | 
| 
43050
 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 
blanchet 
parents: 
43029 
diff
changeset
 | 
19  | 
GaveUp |  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
20  | 
ProofMissing |  | 
| 
42882
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
21  | 
ProofIncomplete |  | 
| 43823 | 22  | 
UnsoundProof of bool option * string list | (* FIXME: doesn't belong here *)  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
23  | 
CantConnect |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
24  | 
TimedOut |  | 
| 
42953
 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 
blanchet 
parents: 
42943 
diff
changeset
 | 
25  | 
Inappropriate |  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
26  | 
OutOfResources |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
27  | 
SpassTooOld |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
28  | 
VampireTooOld |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
29  | 
NoPerl |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
30  | 
NoLibwwwPerl |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
31  | 
MalformedInput |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
32  | 
MalformedOutput |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
33  | 
Interrupted |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
34  | 
Crashed |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
35  | 
InternalError |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
36  | 
UnknownError of string  | 
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
37  | 
|
| 43481 | 38  | 
type step_name = string * string list option  | 
| 39452 | 39  | 
|
| 
39453
 
1740a2d6bef9
use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
 
blanchet 
parents: 
39452 
diff
changeset
 | 
40  | 
datatype 'a step =  | 
| 
 
1740a2d6bef9
use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
 
blanchet 
parents: 
39452 
diff
changeset
 | 
41  | 
Definition of step_name * 'a * 'a |  | 
| 
 
1740a2d6bef9
use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
 
blanchet 
parents: 
39452 
diff
changeset
 | 
42  | 
Inference of step_name * 'a * step_name list  | 
| 39452 | 43  | 
|
| 43678 | 44  | 
  type 'a proof = ('a, 'a, ('a, 'a) ho_term) formula step list
 | 
| 39452 | 45  | 
|
| 
41259
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
46  | 
val short_output : bool -> string -> string  | 
| 41744 | 47  | 
val string_for_failure : failure -> string  | 
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
48  | 
val extract_important_message : string -> string  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
49  | 
val extract_known_failure :  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
50  | 
(failure * string) list -> string -> failure option  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
51  | 
val extract_tstplike_proof_and_outcome :  | 
| 
43473
 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 
blanchet 
parents: 
43465 
diff
changeset
 | 
52  | 
bool -> bool -> (string * string) list -> (failure * string) list -> string  | 
| 
 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 
blanchet 
parents: 
43465 
diff
changeset
 | 
53  | 
-> string * failure option  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
54  | 
val is_same_atp_step : step_name -> step_name -> bool  | 
| 42961 | 55  | 
val scan_general_id : string list -> string * string list  | 
56  | 
val parse_formula :  | 
|
| 43678 | 57  | 
string list -> (string, 'a, (string, 'a) ho_term) formula * string list  | 
| 43481 | 58  | 
val atp_proof_from_tstplike_proof :  | 
59  | 
string problem -> string -> string -> string proof  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
60  | 
val clean_up_atp_proof_dependencies : string proof -> string proof  | 
| 39454 | 61  | 
val map_term_names_in_atp_proof :  | 
62  | 
(string -> string) -> string proof -> string proof  | 
|
63  | 
val nasty_atp_proof : string Symtab.table -> string proof -> string proof  | 
|
| 39452 | 64  | 
end;  | 
65  | 
||
66  | 
structure ATP_Proof : ATP_PROOF =  | 
|
67  | 
struct  | 
|
68  | 
||
| 
43085
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43050 
diff
changeset
 | 
69  | 
open ATP_Util  | 
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
70  | 
open ATP_Problem  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
71  | 
|
| 
42965
 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 
blanchet 
parents: 
42962 
diff
changeset
 | 
72  | 
exception UNRECOGNIZED_ATP_PROOF of unit  | 
| 
 
1403595ec38c
slightly gracefuller handling of LEO-II and Satallax output
 
blanchet 
parents: 
42962 
diff
changeset
 | 
73  | 
|
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
74  | 
datatype failure =  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
75  | 
Unprovable |  | 
| 
43050
 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 
blanchet 
parents: 
43029 
diff
changeset
 | 
76  | 
GaveUp |  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
77  | 
ProofMissing |  | 
| 
42882
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
78  | 
ProofIncomplete |  | 
| 43823 | 79  | 
UnsoundProof of bool option * string list |  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
80  | 
CantConnect |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
81  | 
TimedOut |  | 
| 
42953
 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 
blanchet 
parents: 
42943 
diff
changeset
 | 
82  | 
Inappropriate |  | 
| 
42587
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
83  | 
OutOfResources |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
84  | 
SpassTooOld |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
85  | 
VampireTooOld |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
86  | 
NoPerl |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
87  | 
NoLibwwwPerl |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
88  | 
MalformedInput |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
89  | 
MalformedOutput |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
90  | 
Interrupted |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
91  | 
Crashed |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
92  | 
InternalError |  | 
| 
 
4fbb1de05169
fixed SPASS fact offset calculation and report unexpected unsound proofs with so-called sound encodings
 
blanchet 
parents: 
42550 
diff
changeset
 | 
93  | 
UnknownError of string  | 
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
94  | 
|
| 39452 | 95  | 
fun is_ident_char c = Char.isAlphaNum c orelse c = #"_"  | 
| 42961 | 96  | 
val strip_spaces_except_between_ident_chars = strip_spaces true is_ident_char  | 
| 39452 | 97  | 
|
| 
41259
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
98  | 
fun elide_string threshold s =  | 
| 
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
99  | 
if size s > threshold then  | 
| 
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
100  | 
String.extract (s, 0, SOME (threshold div 2 - 5)) ^ " ...... " ^  | 
| 
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
101  | 
String.extract (s, size s - (threshold + 1) div 2 + 6, NONE)  | 
| 
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
102  | 
else  | 
| 
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
103  | 
s  | 
| 
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
104  | 
fun short_output verbose output =  | 
| 
42060
 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 
blanchet 
parents: 
41944 
diff
changeset
 | 
105  | 
if verbose then  | 
| 
 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 
blanchet 
parents: 
41944 
diff
changeset
 | 
106  | 
if output = "" then "No details available" else elide_string 1000 output  | 
| 
 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 
blanchet 
parents: 
41944 
diff
changeset
 | 
107  | 
else  | 
| 
 
889d767ce5f4
make Minimizer honor "verbose" and "debug" options better
 
blanchet 
parents: 
41944 
diff
changeset
 | 
108  | 
""  | 
| 
41259
 
13972ced98d9
more precise error messages in "verbose" (or "debug") mode, following this morning's permission debacle
 
blanchet 
parents: 
41222 
diff
changeset
 | 
109  | 
|
| 41744 | 110  | 
val missing_message_tail =  | 
111  | 
" appears to be missing. You will need to install it if you want to invoke \  | 
|
112  | 
\remote provers."  | 
|
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
113  | 
|
| 
42876
 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 
blanchet 
parents: 
42848 
diff
changeset
 | 
114  | 
fun involving [] = ""  | 
| 
43005
 
c96f06bffd90
merge timeout messages from several ATPs into one message to avoid clutter
 
blanchet 
parents: 
42998 
diff
changeset
 | 
115  | 
| involving ss =  | 
| 
43029
 
3e060b1c844b
use helpers and tweak Quickcheck's priority to it comes second (to give Solve Direct slightly more time before another prover runs)
 
blanchet 
parents: 
43005 
diff
changeset
 | 
116  | 
"involving " ^ space_implode " " (Try.serial_commas "and" (map quote ss)) ^  | 
| 
 
3e060b1c844b
use helpers and tweak Quickcheck's priority to it comes second (to give Solve Direct slightly more time before another prover runs)
 
blanchet 
parents: 
43005 
diff
changeset
 | 
117  | 
" "  | 
| 
42876
 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 
blanchet 
parents: 
42848 
diff
changeset
 | 
118  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
119  | 
fun string_for_failure Unprovable = "The problem is unprovable."  | 
| 
43050
 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 
blanchet 
parents: 
43029 
diff
changeset
 | 
120  | 
| string_for_failure GaveUp = "The prover gave up."  | 
| 41744 | 121  | 
| string_for_failure ProofMissing =  | 
122  | 
"The prover claims the conjecture is a theorem but did not provide a proof."  | 
|
| 
42882
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
123  | 
| string_for_failure ProofIncomplete =  | 
| 
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
124  | 
"The prover claims the conjecture is a theorem but provided an incomplete \  | 
| 
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
125  | 
\proof."  | 
| 43823 | 126  | 
| string_for_failure (UnsoundProof (NONE, ss)) =  | 
127  | 
"The prover found a type-unsound proof " ^ involving ss ^  | 
|
128  | 
"(or, less likely, your axioms are inconsistent). Specify a sound type \  | 
|
129  | 
\encoding or omit the \"type_enc\" option."  | 
|
130  | 
| string_for_failure (UnsoundProof (SOME false, ss)) =  | 
|
| 
42876
 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 
blanchet 
parents: 
42848 
diff
changeset
 | 
131  | 
"The prover found a type-unsound proof " ^ involving ss ^  | 
| 
 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 
blanchet 
parents: 
42848 
diff
changeset
 | 
132  | 
"(or, less likely, your axioms are inconsistent). Try passing the \  | 
| 43823 | 133  | 
\\"sound\" option to Sledgehammer to avoid such spurious proofs."  | 
134  | 
| string_for_failure (UnsoundProof (SOME true, ss)) =  | 
|
| 
42876
 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 
blanchet 
parents: 
42848 
diff
changeset
 | 
135  | 
"The prover found a type-unsound proof " ^ involving ss ^  | 
| 
 
e336ef6313aa
more informative message when Sledgehammer finds an unsound proof
 
blanchet 
parents: 
42848 
diff
changeset
 | 
136  | 
"even though a supposedly type-sound encoding was used (or, less likely, \  | 
| 43465 | 137  | 
\your axioms are inconsistent). Please report this to the Isabelle \  | 
138  | 
\developers."  | 
|
| 41744 | 139  | 
| string_for_failure CantConnect = "Cannot connect to remote server."  | 
140  | 
| string_for_failure TimedOut = "Timed out."  | 
|
| 
42953
 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 
blanchet 
parents: 
42943 
diff
changeset
 | 
141  | 
| string_for_failure Inappropriate =  | 
| 
 
26111aafab12
detect inappropriate problems and crashes better in Waldmeister
 
blanchet 
parents: 
42943 
diff
changeset
 | 
142  | 
"The problem lies outside the prover's scope."  | 
| 41744 | 143  | 
| string_for_failure OutOfResources = "The prover ran out of resources."  | 
144  | 
| string_for_failure SpassTooOld =  | 
|
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
145  | 
"Isabelle requires a more recent version of SPASS with support for the \  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
146  | 
\TPTP syntax. To install it, download and extract the package \  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
147  | 
\\"http://isabelle.in.tum.de/dist/contrib/spass-3.7.tar.gz\" and add the \  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
148  | 
\\"spass-3.7\" directory's absolute path to " ^  | 
| 43602 | 149  | 
Path.print (Path.expand (Path.explode "$ISABELLE_HOME_USER/etc/components")) ^  | 
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
150  | 
" on a line of its own."  | 
| 41744 | 151  | 
| string_for_failure VampireTooOld =  | 
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
152  | 
"Isabelle requires a more recent version of Vampire. To install it, follow \  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
153  | 
\the instructions from the Sledgehammer manual (\"isabelle doc\  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
154  | 
\ sledgehammer\")."  | 
| 41744 | 155  | 
| string_for_failure NoPerl = "Perl" ^ missing_message_tail  | 
156  | 
| string_for_failure NoLibwwwPerl =  | 
|
157  | 
"The Perl module \"libwww-perl\"" ^ missing_message_tail  | 
|
158  | 
| string_for_failure MalformedInput =  | 
|
159  | 
"The generated problem is malformed. Please report this to the Isabelle \  | 
|
160  | 
\developers."  | 
|
161  | 
| string_for_failure MalformedOutput = "The prover output is malformed."  | 
|
| 
43085
 
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
 
blanchet 
parents: 
43050 
diff
changeset
 | 
162  | 
| string_for_failure Interrupted = "The prover was interrupted."  | 
| 41744 | 163  | 
| string_for_failure Crashed = "The prover crashed."  | 
164  | 
| string_for_failure InternalError = "An internal prover error occurred."  | 
|
165  | 
| string_for_failure (UnknownError string) =  | 
|
166  | 
"A prover error occurred" ^  | 
|
| 
41334
 
3cb52cbf0eed
enable E weight generation with unofficial latest version of E (tentatively called E 1.2B) -- backed by Judgment Day
 
blanchet 
parents: 
41265 
diff
changeset
 | 
167  | 
(if string = "" then ". (Pass the \"verbose\" option for details.)"  | 
| 
 
3cb52cbf0eed
enable E weight generation with unofficial latest version of E (tentatively called E 1.2B) -- backed by Judgment Day
 
blanchet 
parents: 
41265 
diff
changeset
 | 
168  | 
else ":\n" ^ string)  | 
| 
39491
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
169  | 
|
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
170  | 
fun extract_delimited (begin_delim, end_delim) output =  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
171  | 
output |> first_field begin_delim |> the |> snd  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
172  | 
|> first_field end_delim |> the |> fst  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
173  | 
|> first_field "\n" |> the |> snd  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
174  | 
handle Option.Option => ""  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
175  | 
|
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
176  | 
val tstp_important_message_delims =  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
177  | 
  ("% SZS start RequiredInformation", "% SZS end RequiredInformation")
 | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
178  | 
|
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
179  | 
fun extract_important_message output =  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
180  | 
case extract_delimited tstp_important_message_delims output of  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
181  | 
"" => ""  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
182  | 
| s => s |> space_explode "\n" |> filter_out (curry (op =) "")  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
183  | 
|> map (perhaps (try (unprefix "%")))  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
184  | 
|> map (perhaps (try (unprefix " ")))  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
185  | 
|> space_implode "\n " |> quote  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
186  | 
|
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
187  | 
(* 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: 
39457 
diff
changeset
 | 
188  | 
fun extract_tstplike_proof delims output =  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
189  | 
case pairself (find_first (fn s => String.isSubstring s output))  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
190  | 
(ListPair.unzip delims) of  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
191  | 
(SOME begin_delim, SOME end_delim) =>  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
192  | 
extract_delimited (begin_delim, end_delim) output  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
193  | 
| _ => ""  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
194  | 
|
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
195  | 
fun extract_known_failure known_failures output =  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
196  | 
known_failures  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
197  | 
|> find_first (fn (_, pattern) => String.isSubstring pattern output)  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
198  | 
|> Option.map fst  | 
| 
 
2416666e6f94
refactoring: move ATP proof and error extraction code to "ATP_Proof" module
 
blanchet 
parents: 
39457 
diff
changeset
 | 
199  | 
|
| 
43473
 
fb2713b803e6
deal with ATP time slices in a more flexible/robust fashion
 
blanchet 
parents: 
43465 
diff
changeset
 | 
200  | 
fun extract_tstplike_proof_and_outcome verbose complete proof_delims  | 
| 42848 | 201  | 
known_failures output =  | 
| 
42882
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
202  | 
case (extract_tstplike_proof proof_delims output,  | 
| 
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
203  | 
extract_known_failure known_failures output) of  | 
| 
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
204  | 
    (_, SOME ProofIncomplete) => ("", SOME ProofIncomplete)
 | 
| 43246 | 205  | 
  | ("", SOME ProofMissing) => ("", NONE)
 | 
| 
42882
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
206  | 
  | ("", SOME failure) =>
 | 
| 
43050
 
59284a13abc4
support "metis" and "metisFT" as provers in the architecture, so they can be used for minimizing
 
blanchet 
parents: 
43029 
diff
changeset
 | 
207  | 
    ("", SOME (if failure = GaveUp andalso complete then Unprovable
 | 
| 
42882
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
208  | 
else failure))  | 
| 43246 | 209  | 
  | ("", NONE) => ("", SOME (UnknownError (short_output verbose output)))
 | 
| 
42882
 
391e41ac038b
make sure the Vampire incomplete proof detection code kicks in
 
blanchet 
parents: 
42876 
diff
changeset
 | 
210  | 
| (tstplike_proof, _) => (tstplike_proof, NONE)  | 
| 39452 | 211  | 
|
| 43481 | 212  | 
type step_name = string * string list option  | 
| 39452 | 213  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
214  | 
fun is_same_atp_step (s1, _) (s2, _) = s1 = s2  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
215  | 
|
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
216  | 
val vampire_fact_prefix = "f"  | 
| 39452 | 217  | 
|
218  | 
fun step_name_ord p =  | 
|
| 39455 | 219  | 
let val q = pairself fst p in  | 
| 39452 | 220  | 
(* The "unprefix" part is to cope with remote Vampire's output. The proper  | 
221  | 
solution would be to perform a topological sort, e.g. using the nice  | 
|
222  | 
"Graph" functor. *)  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
223  | 
case pairself (Int.fromString  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
224  | 
o perhaps (try (unprefix vampire_fact_prefix))) q of  | 
| 39452 | 225  | 
(NONE, NONE) => string_ord q  | 
226  | 
| (NONE, SOME _) => LESS  | 
|
227  | 
| (SOME _, NONE) => GREATER  | 
|
228  | 
| (SOME i, SOME j) => int_ord (i, j)  | 
|
229  | 
end  | 
|
230  | 
||
| 
39453
 
1740a2d6bef9
use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
 
blanchet 
parents: 
39452 
diff
changeset
 | 
231  | 
datatype 'a step =  | 
| 
 
1740a2d6bef9
use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
 
blanchet 
parents: 
39452 
diff
changeset
 | 
232  | 
Definition of step_name * 'a * 'a |  | 
| 
 
1740a2d6bef9
use the same TSTP/Vampire/SPASS parser for one-liners as for Isar proofs
 
blanchet 
parents: 
39452 
diff
changeset
 | 
233  | 
Inference of step_name * 'a * step_name list  | 
| 39452 | 234  | 
|
| 43678 | 235  | 
type 'a proof = ('a, 'a, ('a, 'a) ho_term) formula step list
 | 
| 39452 | 236  | 
|
237  | 
fun step_name (Definition (name, _, _)) = name  | 
|
238  | 
| step_name (Inference (name, _, _)) = name  | 
|
239  | 
||
240  | 
(**** PARSING OF TSTP FORMAT ****)  | 
|
241  | 
||
| 
42973
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
242  | 
(* FIXME: temporary hack *)  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
243  | 
fun repair_waldmeister_step_name s =  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
244  | 
case space_explode "." s of  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
245  | 
[a, b, c, d] =>  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
246  | 
(case a of "0" => "X" | "1" => "Y" | _ => "Z" ^ a) ^  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
247  | 
(if size b = 1 then "0" else "") ^ b ^ c ^ d  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
248  | 
| _ => s  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
249  | 
|
| 42536 | 250  | 
(* Strings enclosed in single quotes (e.g., file names) *)  | 
| 39452 | 251  | 
val scan_general_id =  | 
| 
42973
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
252  | 
$$ "'" |-- Scan.repeat (~$$ "'") --| $$ "'"  | 
| 
 
6b39a2098ffd
hack to obtain potable step names from Waldmeister
 
blanchet 
parents: 
42968 
diff
changeset
 | 
253  | 
>> implode >> repair_waldmeister_step_name  | 
| 39452 | 254  | 
|| Scan.repeat ($$ "$") -- Scan.many1 Symbol.is_letdig  | 
255  | 
>> (fn (ss1, ss2) => implode ss1 ^ implode ss2)  | 
|
256  | 
||
257  | 
(* Generalized first-order terms, which include file names, numbers, etc. *)  | 
|
| 
42594
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
258  | 
fun parse_annotation x =  | 
| 
42610
 
def5846169ce
make sure that "file" annotations are read correctly in SInE-E and E proofs
 
blanchet 
parents: 
42605 
diff
changeset
 | 
259  | 
((scan_general_id ::: Scan.repeat ($$ " " |-- scan_general_id))  | 
| 
 
def5846169ce
make sure that "file" annotations are read correctly in SInE-E and E proofs
 
blanchet 
parents: 
42605 
diff
changeset
 | 
260  | 
-- Scan.optional parse_annotation [] >> op @  | 
| 
42594
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
261  | 
   || $$ "(" |-- parse_annotations --| $$ ")"
 | 
| 
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
262  | 
|| $$ "[" |-- parse_annotations --| $$ "]") x  | 
| 
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
263  | 
and parse_annotations x =  | 
| 
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
264  | 
(Scan.optional (parse_annotation  | 
| 
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
265  | 
::: Scan.repeat ($$ "," |-- parse_annotation)) []  | 
| 39452 | 266  | 
>> flat) x  | 
267  | 
||
| 
42966
 
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
 
blanchet 
parents: 
42965 
diff
changeset
 | 
268  | 
fun list_app (f, args) =  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
269  | 
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: 
42965 
diff
changeset
 | 
270  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
271  | 
(* We ignore TFF and THF types for now. *)  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
272  | 
fun parse_type_stuff x =  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
273  | 
Scan.repeat (($$ tptp_has_type || $$ tptp_fun_type) |-- parse_arg) x  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
274  | 
and parse_arg x =  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
275  | 
  ($$ "(" |-- parse_term --| $$ ")" --| parse_type_stuff
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
276  | 
|| scan_general_id --| parse_type_stuff  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
277  | 
        -- Scan.optional ($$ "(" |-- parse_terms --| $$ ")") []
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
278  | 
>> ATerm) x  | 
| 
42966
 
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
 
blanchet 
parents: 
42965 
diff
changeset
 | 
279  | 
and parse_app x =  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
280  | 
(parse_arg -- Scan.repeat ($$ tptp_app |-- parse_arg) >> list_app) x  | 
| 
42966
 
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
 
blanchet 
parents: 
42965 
diff
changeset
 | 
281  | 
and parse_term x =  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
282  | 
(parse_app -- Scan.option (Scan.option ($$ tptp_not_infix) --| $$ tptp_equal  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
283  | 
-- parse_app)  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
284  | 
>> (fn (u1, NONE) => u1  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
285  | 
        | (u1, SOME (NONE, u2)) => ATerm ("equal", [u1, u2])
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
286  | 
| (u1, SOME (SOME _, u2)) =>  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
287  | 
          ATerm (tptp_not, [ATerm ("equal", [u1, u2])]))) x
 | 
| 
42966
 
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
 
blanchet 
parents: 
42965 
diff
changeset
 | 
288  | 
and parse_terms x =  | 
| 
 
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
 
blanchet 
parents: 
42965 
diff
changeset
 | 
289  | 
(parse_term ::: Scan.repeat ($$ "," |-- parse_term)) x  | 
| 39452 | 290  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
291  | 
(* TODO: Avoid duplication with "parse_term" above. *)  | 
| 39598 | 292  | 
fun parse_atom x =  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
293  | 
(parse_term -- Scan.option (Scan.option ($$ tptp_not_infix) --| $$ tptp_equal  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
294  | 
-- parse_term)  | 
| 39598 | 295  | 
>> (fn (u1, NONE) => AAtom u1  | 
| 42943 | 296  | 
        | (u1, SOME (NONE, u2)) => AAtom (ATerm ("equal", [u1, u2]))
 | 
| 39598 | 297  | 
| (u1, SOME (SOME _, u2)) =>  | 
| 42943 | 298  | 
          mk_anot (AAtom (ATerm ("equal", [u1, u2]))))) x
 | 
| 39452 | 299  | 
|
| 43678 | 300  | 
fun ho_term_head (ATerm (s, _)) = s  | 
| 39452 | 301  | 
|
302  | 
(* TPTP formulas are fully parenthesized, so we don't need to worry about  | 
|
303  | 
operator precedence. *)  | 
|
| 
42605
 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 
blanchet 
parents: 
42603 
diff
changeset
 | 
304  | 
fun parse_literal x =  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
305  | 
((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: 
42603 
diff
changeset
 | 
306  | 
      -- ($$ "(" |-- parse_formula --| $$ ")"
 | 
| 
 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 
blanchet 
parents: 
42603 
diff
changeset
 | 
307  | 
|| parse_quantified_formula  | 
| 
 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 
blanchet 
parents: 
42603 
diff
changeset
 | 
308  | 
|| parse_atom)  | 
| 
 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 
blanchet 
parents: 
42603 
diff
changeset
 | 
309  | 
>> (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: 
42603 
diff
changeset
 | 
310  | 
and parse_formula x =  | 
| 
 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 
blanchet 
parents: 
42603 
diff
changeset
 | 
311  | 
(parse_literal  | 
| 43163 | 312  | 
-- Scan.option ((Scan.this_string tptp_implies  | 
313  | 
|| Scan.this_string tptp_iff  | 
|
314  | 
|| Scan.this_string tptp_not_iff  | 
|
315  | 
|| Scan.this_string tptp_if  | 
|
316  | 
|| $$ tptp_or  | 
|
317  | 
|| $$ tptp_and) -- parse_formula)  | 
|
| 39452 | 318  | 
>> (fn (phi1, NONE) => phi1  | 
| 43163 | 319  | 
| (phi1, SOME (c, phi2)) =>  | 
320  | 
if c = tptp_implies then mk_aconn AImplies phi1 phi2  | 
|
321  | 
else if c = tptp_iff then mk_aconn AIff phi1 phi2  | 
|
322  | 
else if c = tptp_not_iff then mk_anot (mk_aconn AIff phi1 phi2)  | 
|
323  | 
else if c = tptp_if then mk_aconn AImplies phi2 phi1  | 
|
324  | 
else if c = tptp_or then mk_aconn AOr phi1 phi2  | 
|
325  | 
else if c = tptp_and then mk_aconn AAnd phi1 phi2  | 
|
326  | 
          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: 
42603 
diff
changeset
 | 
327  | 
and parse_quantified_formula x =  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
328  | 
(($$ 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: 
42603 
diff
changeset
 | 
329  | 
--| $$ "[" -- parse_terms --| $$ "]" --| $$ ":" -- parse_literal  | 
| 
 
8734eb0033b3
Vampire sometimes generates formulas with ~ (not) followed by a quantified subformula, without parentheses -- parse these correctly
 
blanchet 
parents: 
42603 
diff
changeset
 | 
330  | 
>> (fn ((q, ts), phi) =>  | 
| 
42966
 
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
 
blanchet 
parents: 
42965 
diff
changeset
 | 
331  | 
(* We ignore TFF and THF types for now. *)  | 
| 43678 | 332  | 
AQuant (q, map (rpair NONE o ho_term_head) ts, phi))) x  | 
| 39452 | 333  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
334  | 
fun skip_formula ss =  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
335  | 
let  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
336  | 
fun skip _ [] = []  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
337  | 
| skip 0 (ss as "," :: _) = ss  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
338  | 
| skip 0 (ss as ")" :: _) = ss  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
339  | 
| skip 0 (ss as "]" :: _) = ss  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
340  | 
      | skip n ("(" :: ss) = skip (n + 1) ss
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
341  | 
      | skip n ("[" :: ss) = skip (n + 1) ss
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
342  | 
      | skip n ("]" :: ss) = skip (n - 1) ss
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
343  | 
      | skip n (")" :: ss) = skip (n - 1) ss
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
344  | 
| skip n (_ :: ss) = skip n ss  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
345  | 
  in (AAtom (ATerm ("", [])), skip 0 ss) end
 | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
346  | 
|
| 39452 | 347  | 
val parse_tstp_extra_arguments =  | 
| 
42594
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
348  | 
Scan.optional ($$ "," |-- parse_annotation  | 
| 
 
62398fdbb528
fixed parsing of multiple negations (e.g. ~~~p) found in Vampire proofs
 
blanchet 
parents: 
42587 
diff
changeset
 | 
349  | 
--| Scan.option ($$ "," |-- parse_annotations)) []  | 
| 39452 | 350  | 
|
| 
41203
 
1393514094d7
fixed more issues with the Vampire output parser, and added support for Vampire's TSTP output (--proof tptp)
 
blanchet 
parents: 
41201 
diff
changeset
 | 
351  | 
val vampire_unknown_fact = "unknown"  | 
| 42943 | 352  | 
val waldmeister_conjecture = "conjecture_1"  | 
353  | 
||
| 42536 | 354  | 
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: 
41201 
diff
changeset
 | 
355  | 
|
| 42943 | 356  | 
fun is_same_term subst tm1 tm2 =  | 
357  | 
let  | 
|
358  | 
fun do_term_pair _ NONE = NONE  | 
|
359  | 
| do_term_pair (ATerm (s1, tm1), ATerm (s2, tm2)) (SOME subst) =  | 
|
| 
42998
 
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
 
blanchet 
parents: 
42975 
diff
changeset
 | 
360  | 
case pairself is_tptp_variable (s1, s2) of  | 
| 42943 | 361  | 
(true, true) =>  | 
362  | 
(case AList.lookup (op =) subst s1 of  | 
|
363  | 
SOME s2' => if s2' = s2 then SOME subst else NONE  | 
|
364  | 
| NONE =>  | 
|
365  | 
if null (AList.find (op =) subst s2) then SOME ((s1, s2) :: subst)  | 
|
366  | 
else NONE)  | 
|
367  | 
| (false, false) =>  | 
|
368  | 
if s1 = s2 andalso length tm1 = length tm2 then  | 
|
369  | 
SOME subst |> fold do_term_pair (tm1 ~~ tm2)  | 
|
370  | 
else  | 
|
371  | 
NONE  | 
|
372  | 
| _ => NONE  | 
|
373  | 
in SOME subst |> do_term_pair (tm1, tm2) |> is_some end  | 
|
374  | 
||
375  | 
fun is_same_formula subst (AQuant (q1, xs1, phi1)) (AQuant (q2, xs2, phi2)) =  | 
|
376  | 
q1 = q2 andalso length xs1 = length xs2 andalso  | 
|
377  | 
is_same_formula ((map fst xs1 ~~ map fst xs2) @ subst) phi1 phi2  | 
|
378  | 
| is_same_formula subst (AConn (c1, phis1)) (AConn (c2, phis2)) =  | 
|
379  | 
c1 = c2 andalso length phis1 = length phis2 andalso  | 
|
380  | 
forall (uncurry (is_same_formula subst)) (phis1 ~~ phis2)  | 
|
381  | 
  | is_same_formula subst (AAtom (ATerm ("equal", [tm11, tm12]))) (AAtom tm2) =
 | 
|
382  | 
    is_same_term subst (ATerm ("equal", [tm11, tm12])) tm2 orelse
 | 
|
383  | 
    is_same_term subst (ATerm ("equal", [tm12, tm11])) tm2
 | 
|
384  | 
| is_same_formula subst (AAtom tm1) (AAtom tm2) = is_same_term subst tm1 tm2  | 
|
385  | 
| is_same_formula _ _ _ = false  | 
|
386  | 
||
387  | 
fun matching_formula_line_identifier phi (Formula (ident, _, phi', _, _)) =  | 
|
388  | 
if is_same_formula [] phi phi' then SOME ident else NONE  | 
|
389  | 
| matching_formula_line_identifier _ _ = NONE  | 
|
390  | 
||
391  | 
fun find_formula_in_problem problem phi =  | 
|
392  | 
problem |> maps snd |> map_filter (matching_formula_line_identifier phi)  | 
|
| 43481 | 393  | 
|> try (single o hd)  | 
| 42943 | 394  | 
|
| 
42962
 
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
 
blanchet 
parents: 
42961 
diff
changeset
 | 
395  | 
(* Syntax: (cnf|fof|tff|thf)\(<num>, <formula_role>,  | 
| 
 
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
 
blanchet 
parents: 
42961 
diff
changeset
 | 
396  | 
<formula> <extra_arguments>\).  | 
| 39452 | 397  | 
The <num> could be an identifier, but we assume integers. *)  | 
| 42943 | 398  | 
fun parse_tstp_line problem =  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
399  | 
((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: 
42966 
diff
changeset
 | 
400  | 
    || Scan.this_string tptp_tff || Scan.this_string tptp_thf) -- $$ "(")
 | 
| 42943 | 401  | 
|-- scan_general_id --| $$ "," -- Symbol.scan_id --| $$ ","  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
402  | 
-- (parse_formula || skip_formula) -- parse_tstp_extra_arguments --| $$ ")"  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
403  | 
--| $$ "."  | 
| 42943 | 404  | 
>> (fn (((num, role), phi), deps) =>  | 
405  | 
let  | 
|
406  | 
val (name, deps) =  | 
|
407  | 
(* Waldmeister isn't exactly helping. *)  | 
|
408  | 
case deps of  | 
|
409  | 
["file", _, s] =>  | 
|
410  | 
((num,  | 
|
411  | 
if s = vampire_unknown_fact then  | 
|
412  | 
NONE  | 
|
413  | 
else if s = waldmeister_conjecture then  | 
|
414  | 
find_formula_in_problem problem (mk_anot phi)  | 
|
415  | 
else  | 
|
| 43481 | 416  | 
SOME [s |> perhaps (try (unprefix tofof_fact_prefix))]),  | 
| 42943 | 417  | 
[])  | 
418  | 
| ["file", _] => ((num, find_formula_in_problem problem phi), [])  | 
|
419  | 
| _ => ((num, NONE), deps)  | 
|
420  | 
in  | 
|
421  | 
case role of  | 
|
422  | 
"definition" =>  | 
|
423  | 
(case phi of  | 
|
424  | 
AConn (AIff, [phi1 as AAtom _, phi2]) =>  | 
|
425  | 
Definition (name, phi1, phi2)  | 
|
426  | 
               | AAtom (ATerm ("equal", _)) =>
 | 
|
427  | 
(* Vampire's equality proxy axiom *)  | 
|
428  | 
Inference (name, phi, map (rpair NONE) deps)  | 
|
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
429  | 
| _ => raise UNRECOGNIZED_ATP_PROOF ())  | 
| 42943 | 430  | 
| _ => Inference (name, phi, map (rpair NONE) deps)  | 
431  | 
end)  | 
|
| 39452 | 432  | 
|
433  | 
(**** PARSING OF SPASS OUTPUT ****)  | 
|
434  | 
||
435  | 
(* SPASS returns clause references of the form "x.y". We ignore "y", whose role  | 
|
436  | 
is not clear anyway. *)  | 
|
437  | 
val parse_dot_name = scan_general_id --| $$ "." --| scan_general_id  | 
|
438  | 
||
439  | 
val parse_spass_annotations =  | 
|
440  | 
Scan.optional ($$ ":" |-- Scan.repeat (parse_dot_name  | 
|
441  | 
--| Scan.option ($$ ","))) []  | 
|
442  | 
||
443  | 
(* It is not clear why some literals are followed by sequences of stars and/or  | 
|
444  | 
pluses. We ignore them. *)  | 
|
| 39602 | 445  | 
fun parse_decorated_atom x =  | 
446  | 
(parse_atom --| Scan.repeat ($$ "*" || $$ "+" || $$ " ")) x  | 
|
| 39452 | 447  | 
|
448  | 
fun mk_horn ([], []) = AAtom (ATerm ("c_False", []))
 | 
|
| 42943 | 449  | 
| mk_horn ([], pos_lits) = foldr1 (uncurry (mk_aconn AOr)) pos_lits  | 
450  | 
| mk_horn (neg_lits, []) = mk_anot (foldr1 (uncurry (mk_aconn AAnd)) neg_lits)  | 
|
| 39452 | 451  | 
| mk_horn (neg_lits, pos_lits) =  | 
| 42943 | 452  | 
mk_aconn AImplies (foldr1 (uncurry (mk_aconn AAnd)) neg_lits)  | 
453  | 
(foldr1 (uncurry (mk_aconn AOr)) pos_lits)  | 
|
| 39452 | 454  | 
|
| 39645 | 455  | 
fun parse_horn_clause x =  | 
456  | 
(Scan.repeat parse_decorated_atom --| $$ "|" --| $$ "|"  | 
|
457  | 
-- Scan.repeat parse_decorated_atom --| $$ "-" --| $$ ">"  | 
|
458  | 
-- Scan.repeat parse_decorated_atom  | 
|
459  | 
>> (mk_horn o apfst (op @))) x  | 
|
| 39452 | 460  | 
|
| 43481 | 461  | 
fun resolve_spass_num spass_names num =  | 
462  | 
case Int.fromString num of  | 
|
463  | 
SOME j => if j > 0 andalso j <= Vector.length spass_names then  | 
|
464  | 
SOME (Vector.sub (spass_names, j - 1))  | 
|
465  | 
else  | 
|
466  | 
NONE  | 
|
467  | 
| NONE => NONE  | 
|
468  | 
||
| 39452 | 469  | 
(* Syntax: <num>[0:<inference><annotations>]  | 
470  | 
<atoms> || <atoms> -> <atoms>. *)  | 
|
| 43481 | 471  | 
fun parse_spass_line spass_names x =  | 
| 39645 | 472  | 
(scan_general_id --| $$ "[" --| $$ "0" --| $$ ":" --| Symbol.scan_id  | 
473  | 
-- parse_spass_annotations --| $$ "]" -- parse_horn_clause --| $$ "."  | 
|
474  | 
>> (fn ((num, deps), u) =>  | 
|
| 43481 | 475  | 
Inference ((num, resolve_spass_num spass_names num), u,  | 
476  | 
map (swap o `(resolve_spass_num spass_names)) deps))) x  | 
|
477  | 
||
478  | 
fun parse_line problem spass_names =  | 
|
479  | 
parse_tstp_line problem || parse_spass_line spass_names  | 
|
480  | 
fun parse_proof problem spass_names tstp =  | 
|
481  | 
tstp |> strip_spaces_except_between_ident_chars  | 
|
482  | 
|> raw_explode  | 
|
483  | 
|> Scan.finite Symbol.stopper  | 
|
484  | 
(Scan.error (!! (fn _ => raise UNRECOGNIZED_ATP_PROOF ())  | 
|
485  | 
(Scan.repeat1 (parse_line problem spass_names))))  | 
|
486  | 
|> fst  | 
|
487  | 
||
488  | 
(** SPASS's FLOTTER hack **)  | 
|
489  | 
||
490  | 
(* This is a hack required for keeping track of facts after they have been  | 
|
491  | 
clausified by SPASS's FLOTTER preprocessor. The "ATP/scripts/spass" script is  | 
|
492  | 
also part of this hack. *)  | 
|
493  | 
||
494  | 
val set_ClauseFormulaRelationN = "set_ClauseFormulaRelation"  | 
|
495  | 
||
496  | 
fun extract_clause_sequence output =  | 
|
497  | 
let  | 
|
498  | 
val tokens_of = String.tokens (not o Char.isAlphaNum)  | 
|
499  | 
    fun extract_num ("clause" :: (ss as _ :: _)) = Int.fromString (List.last ss)
 | 
|
500  | 
| extract_num _ = NONE  | 
|
501  | 
in output |> split_lines |> map_filter (extract_num o tokens_of) end  | 
|
| 39452 | 502  | 
|
| 43481 | 503  | 
fun is_head_digit s = Char.isDigit (String.sub (s, 0))  | 
504  | 
val scan_integer = Scan.many1 is_head_digit >> (the o Int.fromString o implode)  | 
|
505  | 
||
506  | 
val parse_clause_formula_pair =  | 
|
507  | 
  $$ "(" |-- scan_integer --| $$ ","
 | 
|
508  | 
-- (Symbol.scan_id ::: Scan.repeat ($$ "," |-- Symbol.scan_id)) --| $$ ")"  | 
|
509  | 
--| Scan.option ($$ ",")  | 
|
510  | 
val parse_clause_formula_relation =  | 
|
511  | 
  Scan.this_string set_ClauseFormulaRelationN |-- $$ "("
 | 
|
512  | 
|-- Scan.repeat parse_clause_formula_pair  | 
|
513  | 
val extract_clause_formula_relation =  | 
|
514  | 
Substring.full #> Substring.position set_ClauseFormulaRelationN  | 
|
515  | 
#> snd #> Substring.position "." #> fst #> Substring.string  | 
|
516  | 
#> raw_explode #> filter_out Symbol.is_blank #> parse_clause_formula_relation  | 
|
517  | 
#> fst  | 
|
| 39452 | 518  | 
|
| 43481 | 519  | 
fun extract_spass_name_vector output =  | 
520  | 
(if String.isSubstring set_ClauseFormulaRelationN output then  | 
|
521  | 
let  | 
|
522  | 
val num_seq = extract_clause_sequence output  | 
|
523  | 
val name_map = extract_clause_formula_relation output  | 
|
524  | 
val name_seq = num_seq |> map (these o AList.lookup (op =) name_map)  | 
|
525  | 
in name_seq end  | 
|
526  | 
else  | 
|
527  | 
[])  | 
|
528  | 
|> Vector.fromList  | 
|
529  | 
||
530  | 
fun atp_proof_from_tstplike_proof _ _ "" = []  | 
|
531  | 
| atp_proof_from_tstplike_proof problem output tstp =  | 
|
532  | 
tstp ^ "$" (* the $ sign acts as a sentinel (FIXME: needed?) *)  | 
|
533  | 
|> parse_proof problem (extract_spass_name_vector output)  | 
|
| 
42449
 
494e4ac5b0f8
detect some unsound proofs before showing them to the user
 
blanchet 
parents: 
42060 
diff
changeset
 | 
534  | 
|> sort (step_name_ord o pairself step_name)  | 
| 
42968
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
535  | 
|
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
536  | 
fun clean_up_dependencies _ [] = []  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
537  | 
| clean_up_dependencies seen ((step as Definition (name, _, _)) :: steps) =  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
538  | 
step :: clean_up_dependencies (name :: seen) steps  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
539  | 
| clean_up_dependencies seen (Inference (name, u, deps) :: steps) =  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
540  | 
Inference (name, u,  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
541  | 
map_filter (fn dep => find_first (is_same_atp_step dep) seen)  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
542  | 
deps) ::  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
543  | 
clean_up_dependencies (name :: seen) steps  | 
| 
 
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
 
blanchet 
parents: 
42966 
diff
changeset
 | 
544  | 
|
| 42975 | 545  | 
fun clean_up_atp_proof_dependencies proof = clean_up_dependencies [] proof  | 
| 39452 | 546  | 
|
| 39454 | 547  | 
fun map_term_names_in_term f (ATerm (s, ts)) =  | 
548  | 
ATerm (f s, map (map_term_names_in_term f) ts)  | 
|
549  | 
fun map_term_names_in_formula f (AQuant (q, xs, phi)) =  | 
|
550  | 
AQuant (q, xs, map_term_names_in_formula f phi)  | 
|
551  | 
| map_term_names_in_formula f (AConn (c, phis)) =  | 
|
552  | 
AConn (c, map (map_term_names_in_formula f) phis)  | 
|
553  | 
| map_term_names_in_formula f (AAtom t) = AAtom (map_term_names_in_term f t)  | 
|
554  | 
fun map_term_names_in_step f (Definition (name, phi1, phi2)) =  | 
|
555  | 
Definition (name, map_term_names_in_formula f phi1,  | 
|
556  | 
map_term_names_in_formula f phi2)  | 
|
557  | 
| map_term_names_in_step f (Inference (name, phi, deps)) =  | 
|
558  | 
Inference (name, map_term_names_in_formula f phi, deps)  | 
|
559  | 
fun map_term_names_in_atp_proof f = map (map_term_names_in_step f)  | 
|
560  | 
||
561  | 
fun nasty_name pool s = s |> Symtab.lookup pool |> the_default s  | 
|
562  | 
fun nasty_atp_proof pool =  | 
|
563  | 
if Symtab.is_empty pool then I  | 
|
564  | 
else map_term_names_in_atp_proof (nasty_name pool)  | 
|
565  | 
||
| 39452 | 566  | 
end;  |