author | blanchet |
Thu, 26 Jan 2012 20:49:54 +0100 | |
changeset 46339 | 6268c5b3efdc |
parent 46338 | b02ff6b17599 |
child 46378 | 7769bf5c2a17 |
permissions | -rw-r--r-- |
38047 | 1 |
(* Title: HOL/Tools/ATP/atp_problem.ML |
38027 | 2 |
Author: Jia Meng, Cambridge University Computer Laboratory and NICTA |
37509
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
3 |
Author: Jasmin Blanchette, TU Muenchen |
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
4 |
|
39452 | 5 |
Abstract representation of ATP problems and TPTP syntax. |
37509
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
6 |
*) |
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
7 |
|
38019
e207a64e1e0b
complete renaming of "Sledgehammer_TPTP_Format" to "ATP_Problem"
blanchet
parents:
38018
diff
changeset
|
8 |
signature ATP_PROBLEM = |
37509
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
9 |
sig |
43676
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
10 |
datatype ('a, 'b) ho_term = |
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
11 |
ATerm of 'a * ('a, 'b) ho_term list | |
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
12 |
AAbs of ('a * 'b) * ('a, 'b) ho_term |
37992 | 13 |
datatype quantifier = AForall | AExists |
43163 | 14 |
datatype connective = ANot | AAnd | AOr | AImplies | AIff |
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
15 |
datatype ('a, 'b, 'c) formula = |
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
16 |
AQuant of quantifier * ('a * 'b option) list * ('a, 'b, 'c) formula | |
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
17 |
AConn of connective * ('a, 'b, 'c) formula list | |
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
18 |
AAtom of 'c |
37994
b04307085a09
make TPTP generator accept full first-order formulas
blanchet
parents:
37993
diff
changeset
|
19 |
|
44593
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
20 |
datatype 'a ho_type = |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
21 |
AType of 'a * 'a ho_type list | |
44594
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
22 |
AFun of 'a ho_type * 'a ho_type | |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
23 |
ATyAbs of 'a list * 'a ho_type |
42963 | 24 |
|
44754 | 25 |
datatype tptp_polymorphism = TPTP_Monomorphic | TPTP_Polymorphic |
26 |
datatype tptp_explicitness = TPTP_Implicit | TPTP_Explicit |
|
44589
0a1dfc6365e9
first step towards polymorphic TFF + changed defaults for Vampire
blanchet
parents:
44501
diff
changeset
|
27 |
datatype thf_flavor = THF_Without_Choice | THF_With_Choice |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
28 |
datatype dfg_flavor = DFG_Unsorted | DFG_Sorted |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
29 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
30 |
datatype atp_format = |
44235
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
31 |
CNF | |
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
32 |
CNF_UEQ | |
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
33 |
FOF | |
44754 | 34 |
TFF of tptp_polymorphism * tptp_explicitness | |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
35 |
THF of tptp_polymorphism * tptp_explicitness * thf_flavor | |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
36 |
DFG of dfg_flavor |
44235
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
37 |
|
42525
7a506b0b644f
distinguish FOF and TFF (typed first-order) in ATP abstract syntax tree
blanchet
parents:
42449
diff
changeset
|
38 |
datatype formula_kind = Axiom | Definition | Lemma | Hypothesis | Conjecture |
42527
6a9458524f01
reintroduced constructor for formulas, and automatically detect which logic to use (TFF or FOF) to avoid clutter
blanchet
parents:
42526
diff
changeset
|
39 |
datatype 'a problem_line = |
42963 | 40 |
Decl of string * 'a * 'a ho_type | |
44402 | 41 |
Formula of string * formula_kind |
42 |
* ('a, 'a ho_type, ('a, 'a ho_type) ho_term) formula |
|
43 |
* (string, string ho_type) ho_term option |
|
44 |
* (string, string ho_type) ho_term option |
|
38017
3ad3e3ca2451
move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents:
38014
diff
changeset
|
45 |
type 'a problem = (string * 'a problem_line list) list |
37992 | 46 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
47 |
val isabelle_info_prefix : string |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
48 |
val isabelle_info : atp_format -> string -> (string, 'a) ho_term option |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
49 |
val introN : string |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
50 |
val elimN : string |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
51 |
val simpN : string |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
52 |
val tptp_cnf : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
53 |
val tptp_fof : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
54 |
val tptp_tff : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
55 |
val tptp_thf : string |
42967 | 56 |
val tptp_has_type : string |
42962
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
57 |
val tptp_type_of_types : string |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
58 |
val tptp_bool_type : string |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
59 |
val tptp_individual_type : string |
42963 | 60 |
val tptp_fun_type : string |
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
61 |
val tptp_product_type : string |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
62 |
val tptp_forall : string |
43678 | 63 |
val tptp_ho_forall : string |
44650 | 64 |
val tptp_pi_binder : string |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
65 |
val tptp_exists : string |
43678 | 66 |
val tptp_ho_exists : string |
44495 | 67 |
val tptp_choice : string |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
68 |
val tptp_not : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
69 |
val tptp_and : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
70 |
val tptp_or : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
71 |
val tptp_implies : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
72 |
val tptp_if : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
73 |
val tptp_iff : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
74 |
val tptp_not_iff : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
75 |
val tptp_app : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
76 |
val tptp_not_infix : string |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
77 |
val tptp_equal : string |
43000
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
78 |
val tptp_old_equal : string |
42966
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
blanchet
parents:
42963
diff
changeset
|
79 |
val tptp_false : string |
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
blanchet
parents:
42963
diff
changeset
|
80 |
val tptp_true : string |
43000
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
81 |
val tptp_empty_list : string |
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
82 |
val is_tptp_equal : string -> bool |
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
83 |
val is_built_in_tptp_symbol : string -> bool |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
84 |
val is_tptp_variable : string -> bool |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
85 |
val is_tptp_user_symbol : string -> bool |
44595
444d111bde7d
generate properly typed TFF1 (PFF) problems in the presence of type class predicates
blanchet
parents:
44594
diff
changeset
|
86 |
val atype_of_types : (string * string) ho_type |
444d111bde7d
generate properly typed TFF1 (PFF) problems in the presence of type class predicates
blanchet
parents:
44594
diff
changeset
|
87 |
val bool_atype : (string * string) ho_type |
444d111bde7d
generate properly typed TFF1 (PFF) problems in the presence of type class predicates
blanchet
parents:
44594
diff
changeset
|
88 |
val individual_atype : (string * string) ho_type |
42942 | 89 |
val mk_anot : ('a, 'b, 'c) formula -> ('a, 'b, 'c) formula |
90 |
val mk_aconn : |
|
91 |
connective -> ('a, 'b, 'c) formula -> ('a, 'b, 'c) formula |
|
92 |
-> ('a, 'b, 'c) formula |
|
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
93 |
val aconn_fold : |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
94 |
bool option -> (bool option -> 'a -> 'b -> 'b) -> connective * 'a list |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
95 |
-> 'b -> 'b |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
96 |
val aconn_map : |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
97 |
bool option -> (bool option -> 'a -> ('b, 'c, 'd) formula) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
98 |
-> connective * 'a list -> ('b, 'c, 'd) formula |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
99 |
val formula_fold : |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
100 |
bool option -> (bool option -> 'c -> 'd -> 'd) -> ('a, 'b, 'c) formula |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
101 |
-> 'd -> 'd |
42944
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
102 |
val formula_map : ('c -> 'd) -> ('a, 'b, 'c) formula -> ('a, 'b, 'd) formula |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
103 |
val is_format_higher_order : atp_format -> bool |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
104 |
val is_format_typed : atp_format -> bool |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
105 |
val lines_for_atp_problem : atp_format -> string problem -> string list |
43092
93ec303e1917
more work on new metis that exploits the powerful new type encodings
blanchet
parents:
43085
diff
changeset
|
106 |
val ensure_cnf_problem : |
93ec303e1917
more work on new metis that exploits the powerful new type encodings
blanchet
parents:
43085
diff
changeset
|
107 |
(string * string) problem -> (string * string) problem |
42939 | 108 |
val filter_cnf_ueq_problem : |
109 |
(string * string) problem -> (string * string) problem |
|
45828
3b8606fba2dd
correctly declare implicit TFF1 types that appear first as type arguments with "$tType" and not "$i
blanchet
parents:
45304
diff
changeset
|
110 |
val declared_syms_in_problem : (string * ''a) problem -> (string * ''a) list |
39452 | 111 |
val nice_atp_problem : |
45939
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
112 |
bool -> atp_format -> ('a * (string * string) problem_line list) list |
38017
3ad3e3ca2451
move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents:
38014
diff
changeset
|
113 |
-> ('a * string problem_line list) list |
3ad3e3ca2451
move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents:
38014
diff
changeset
|
114 |
* (string Symtab.table * string Symtab.table) option |
37509
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
115 |
end; |
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
116 |
|
38019
e207a64e1e0b
complete renaming of "Sledgehammer_TPTP_Format" to "ATP_Problem"
blanchet
parents:
38018
diff
changeset
|
117 |
structure ATP_Problem : ATP_PROBLEM = |
37509
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
118 |
struct |
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
119 |
|
43085
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
blanchet
parents:
43000
diff
changeset
|
120 |
open ATP_Util |
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
blanchet
parents:
43000
diff
changeset
|
121 |
|
0a2f5b86bdd7
first step in sharing more code between ATP and Metis translation
blanchet
parents:
43000
diff
changeset
|
122 |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
123 |
(** ATP problem **) |
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
124 |
|
43676
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
125 |
datatype ('a, 'b) ho_term = |
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
126 |
ATerm of 'a * ('a, 'b) ho_term list | |
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
127 |
AAbs of ('a * 'b) * ('a, 'b) ho_term |
37961
6a48c85a211a
first step in using "fof" rather than "cnf" in TPTP problems
blanchet
parents:
37931
diff
changeset
|
128 |
datatype quantifier = AForall | AExists |
43163 | 129 |
datatype connective = ANot | AAnd | AOr | AImplies | AIff |
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
130 |
datatype ('a, 'b, 'c) formula = |
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
131 |
AQuant of quantifier * ('a * 'b option) list * ('a, 'b, 'c) formula | |
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
132 |
AConn of connective * ('a, 'b, 'c) formula list | |
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42530
diff
changeset
|
133 |
AAtom of 'c |
37961
6a48c85a211a
first step in using "fof" rather than "cnf" in TPTP problems
blanchet
parents:
37931
diff
changeset
|
134 |
|
44593
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
135 |
datatype 'a ho_type = |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
136 |
AType of 'a * 'a ho_type list | |
44594
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
137 |
AFun of 'a ho_type * 'a ho_type | |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
138 |
ATyAbs of 'a list * 'a ho_type |
42963 | 139 |
|
44754 | 140 |
datatype tptp_polymorphism = TPTP_Monomorphic | TPTP_Polymorphic |
141 |
datatype tptp_explicitness = TPTP_Implicit | TPTP_Explicit |
|
44589
0a1dfc6365e9
first step towards polymorphic TFF + changed defaults for Vampire
blanchet
parents:
44501
diff
changeset
|
142 |
datatype thf_flavor = THF_Without_Choice | THF_With_Choice |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
143 |
datatype dfg_flavor = DFG_Unsorted | DFG_Sorted |
44499 | 144 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
145 |
datatype atp_format = |
44235
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
146 |
CNF | |
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
147 |
CNF_UEQ | |
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
148 |
FOF | |
44754 | 149 |
TFF of tptp_polymorphism * tptp_explicitness | |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
150 |
THF of tptp_polymorphism * tptp_explicitness * thf_flavor | |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
151 |
DFG of dfg_flavor |
44235
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
152 |
|
42525
7a506b0b644f
distinguish FOF and TFF (typed first-order) in ATP abstract syntax tree
blanchet
parents:
42449
diff
changeset
|
153 |
datatype formula_kind = Axiom | Definition | Lemma | Hypothesis | Conjecture |
42527
6a9458524f01
reintroduced constructor for formulas, and automatically detect which logic to use (TFF or FOF) to avoid clutter
blanchet
parents:
42526
diff
changeset
|
154 |
datatype 'a problem_line = |
42963 | 155 |
Decl of string * 'a * 'a ho_type | |
43676
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
156 |
Formula of string * formula_kind * ('a, 'a ho_type, ('a, 'a ho_type) ho_term) formula |
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
157 |
* (string, string ho_type) ho_term option * (string, string ho_type) ho_term option |
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
158 |
type 'a problem = (string * 'a problem_line list) list |
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
159 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
160 |
val isabelle_info_prefix = "isabelle_" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
161 |
|
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
162 |
(* Currently, only newer versions of SPASS, with sorted DFG format support, can |
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
163 |
process Isabelle metainformation. *) |
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
164 |
fun isabelle_info (DFG DFG_Sorted) s = |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
165 |
SOME (ATerm ("[]", [ATerm (isabelle_info_prefix ^ s, [])])) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
166 |
| isabelle_info _ _ = NONE |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
167 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
168 |
val introN = "intro" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
169 |
val elimN = "elim" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
170 |
val simpN = "simp" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
171 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
172 |
fun is_isabelle_info suffix (SOME (ATerm ("[]", [ATerm (s, [])]))) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
173 |
s = isabelle_info_prefix ^ suffix |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
174 |
| is_isabelle_info _ _ = false |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
175 |
|
42722 | 176 |
(* official TPTP syntax *) |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
177 |
val tptp_cnf = "cnf" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
178 |
val tptp_fof = "fof" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
179 |
val tptp_tff = "tff" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
180 |
val tptp_thf = "thf" |
42967 | 181 |
val tptp_has_type = ":" |
42962
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
182 |
val tptp_type_of_types = "$tType" |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
183 |
val tptp_bool_type = "$o" |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
184 |
val tptp_individual_type = "$i" |
42963 | 185 |
val tptp_fun_type = ">" |
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
186 |
val tptp_product_type = "*" |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
187 |
val tptp_forall = "!" |
43678 | 188 |
val tptp_ho_forall = "!!" |
44650 | 189 |
val tptp_pi_binder = "!>" |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
190 |
val tptp_exists = "?" |
43678 | 191 |
val tptp_ho_exists = "??" |
44495 | 192 |
val tptp_choice = "@+" |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
193 |
val tptp_not = "~" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
194 |
val tptp_and = "&" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
195 |
val tptp_or = "|" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
196 |
val tptp_implies = "=>" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
197 |
val tptp_if = "<=" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
198 |
val tptp_iff = "<=>" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
199 |
val tptp_not_iff = "<~>" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
200 |
val tptp_app = "@" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
201 |
val tptp_not_infix = "!" |
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
202 |
val tptp_equal = "=" |
43000
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
203 |
val tptp_old_equal = "equal" |
42966
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
blanchet
parents:
42963
diff
changeset
|
204 |
val tptp_false = "$false" |
4e2d6c1e5392
more work on parsing LEO-II proofs without lambdas
blanchet
parents:
42963
diff
changeset
|
205 |
val tptp_true = "$true" |
43000
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
206 |
val tptp_empty_list = "[]" |
42722 | 207 |
|
43000
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
208 |
fun is_tptp_equal s = (s = tptp_equal orelse s = tptp_old_equal) |
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
209 |
fun is_built_in_tptp_symbol s = |
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
210 |
s = tptp_old_equal orelse not (Char.isAlpha (String.sub (s, 0))) |
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
211 |
fun is_tptp_variable s = Char.isUpper (String.sub (s, 0)) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
212 |
val is_tptp_user_symbol = not o (is_tptp_variable orf is_built_in_tptp_symbol) |
42939 | 213 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
214 |
val atype_of_types = AType (`I tptp_type_of_types, []) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
215 |
val bool_atype = AType (`I tptp_bool_type, []) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
216 |
val individual_atype = AType (`I tptp_individual_type, []) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
217 |
|
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
218 |
fun raw_polarities_of_conn ANot = (SOME false, NONE) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
219 |
| raw_polarities_of_conn AAnd = (SOME true, SOME true) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
220 |
| raw_polarities_of_conn AOr = (SOME true, SOME true) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
221 |
| raw_polarities_of_conn AImplies = (SOME false, SOME true) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
222 |
| raw_polarities_of_conn AIff = (NONE, NONE) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
223 |
fun polarities_of_conn NONE = K (NONE, NONE) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
224 |
| polarities_of_conn (SOME pos) = |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
225 |
raw_polarities_of_conn #> not pos ? pairself (Option.map not) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
226 |
|
42942 | 227 |
fun mk_anot (AConn (ANot, [phi])) = phi |
228 |
| mk_anot phi = AConn (ANot, [phi]) |
|
229 |
fun mk_aconn c phi1 phi2 = AConn (c, [phi1, phi2]) |
|
230 |
||
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
231 |
fun aconn_fold pos f (ANot, [phi]) = f (Option.map not pos) phi |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
232 |
| aconn_fold pos f (AImplies, [phi1, phi2]) = |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
233 |
f (Option.map not pos) phi1 #> f pos phi2 |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
234 |
| aconn_fold pos f (AAnd, phis) = fold (f pos) phis |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
235 |
| aconn_fold pos f (AOr, phis) = fold (f pos) phis |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
236 |
| aconn_fold _ f (_, phis) = fold (f NONE) phis |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
237 |
|
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
238 |
fun aconn_map pos f (ANot, [phi]) = AConn (ANot, [f (Option.map not pos) phi]) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
239 |
| aconn_map pos f (AImplies, [phi1, phi2]) = |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
240 |
AConn (AImplies, [f (Option.map not pos) phi1, f pos phi2]) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
241 |
| aconn_map pos f (AAnd, phis) = AConn (AAnd, map (f pos) phis) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
242 |
| aconn_map pos f (AOr, phis) = AConn (AOr, map (f pos) phis) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
243 |
| aconn_map _ f (c, phis) = AConn (c, map (f NONE) phis) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
244 |
|
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
245 |
fun formula_fold pos f = |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
246 |
let |
44501 | 247 |
fun fld pos (AQuant (_, _, phi)) = fld pos phi |
248 |
| fld pos (AConn conn) = aconn_fold pos fld conn |
|
249 |
| fld pos (AAtom tm) = f pos tm |
|
250 |
in fld pos end |
|
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
251 |
|
42944
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
252 |
fun formula_map f (AQuant (q, xs, phi)) = AQuant (q, xs, formula_map f phi) |
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
253 |
| formula_map f (AConn (c, phis)) = AConn (c, map (formula_map f) phis) |
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
254 |
| formula_map f (AAtom tm) = AAtom (f tm) |
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
255 |
|
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
256 |
fun is_format_higher_order (THF _) = true |
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
257 |
| is_format_higher_order _ = false |
44499 | 258 |
fun is_format_typed (TFF _) = true |
44754 | 259 |
| is_format_typed (THF _) = true |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
260 |
| is_format_typed (DFG DFG_Sorted) = true |
44235
85e9dad3c187
distinguish THF syntax with and without choice (Satallax vs. LEO-II)
blanchet
parents:
43987
diff
changeset
|
261 |
| is_format_typed _ = false |
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
262 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
263 |
fun tptp_string_for_kind Axiom = "axiom" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
264 |
| tptp_string_for_kind Definition = "definition" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
265 |
| tptp_string_for_kind Lemma = "lemma" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
266 |
| tptp_string_for_kind Hypothesis = "hypothesis" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
267 |
| tptp_string_for_kind Conjecture = "conjecture" |
38631
979a0b37f981
prefer TPTP "conjecture" tag to "hypothesis" on ATPs where this is possible;
blanchet
parents:
38613
diff
changeset
|
268 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
269 |
fun tptp_string_for_app format func args = |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
270 |
if is_format_higher_order format then |
44787 | 271 |
"(" ^ space_implode (" " ^ tptp_app ^ " ") (func :: args) ^ ")" |
272 |
else |
|
273 |
func ^ "(" ^ commas args ^ ")" |
|
274 |
||
44594
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
275 |
fun flatten_type (ATyAbs (tys, ty)) = ATyAbs (tys, flatten_type ty) |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
276 |
| flatten_type (ty as AFun (ty1 as AType _, ty2)) = |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
277 |
(case flatten_type ty2 of |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
278 |
AFun (ty' as AType (s, tys), ty) => |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
279 |
AFun (AType (tptp_product_type, |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
280 |
ty1 :: (if s = tptp_product_type then tys else [ty'])), ty) |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
281 |
| _ => ty) |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
282 |
| flatten_type (ty as AType _) = ty |
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
283 |
| flatten_type _ = |
42963 | 284 |
raise Fail "unexpected higher-order type in first-order format" |
285 |
||
46338
b02ff6b17599
better handling of individual type for DFG format (SPASS)
blanchet
parents:
46320
diff
changeset
|
286 |
val dfg_individual_type = "i" (* shouldn't clash *) |
b02ff6b17599
better handling of individual type for DFG format (SPASS)
blanchet
parents:
46320
diff
changeset
|
287 |
|
44787 | 288 |
fun str_for_type format ty = |
44593
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
289 |
let |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
290 |
val dfg = (format = DFG DFG_Sorted) |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
291 |
fun str _ (AType (s, [])) = |
46338
b02ff6b17599
better handling of individual type for DFG format (SPASS)
blanchet
parents:
46320
diff
changeset
|
292 |
if dfg andalso s = tptp_individual_type then dfg_individual_type else s |
44594
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
293 |
| str _ (AType (s, tys)) = |
44787 | 294 |
let val ss = tys |> map (str false) in |
295 |
if s = tptp_product_type then |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
296 |
ss |> space_implode |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
297 |
(if dfg then ", " else " " ^ tptp_product_type ^ " ") |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
298 |
|> (not dfg andalso length ss > 1) ? enclose "(" ")" |
44787 | 299 |
else |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
300 |
tptp_string_for_app format s ss |
44787 | 301 |
end |
44593
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
302 |
| str rhs (AFun (ty1, ty2)) = |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
303 |
(str false ty1 |> dfg ? enclose "(" ")") ^ " " ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
304 |
(if dfg then "" else tptp_fun_type ^ " ") ^ str true ty2 |
44593
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
305 |
|> not rhs ? enclose "(" ")" |
44594
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
306 |
| str _ (ATyAbs (ss, ty)) = |
44650 | 307 |
tptp_pi_binder ^ "[" ^ |
44594
ae82943481e9
added type abstractions (for declaring polymorphic constants) to TFF syntax
blanchet
parents:
44593
diff
changeset
|
308 |
commas (map (suffix (" " ^ tptp_has_type ^ " " ^ tptp_type_of_types)) |
44739 | 309 |
ss) ^ "]: " ^ str false ty |
44593
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
310 |
in str true ty end |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
311 |
|
44787 | 312 |
fun string_for_type (format as THF _) ty = str_for_type format ty |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
313 |
| string_for_type format ty = str_for_type format (flatten_type ty) |
42963 | 314 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
315 |
fun tptp_string_for_quantifier AForall = tptp_forall |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
316 |
| tptp_string_for_quantifier AExists = tptp_exists |
42963 | 317 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
318 |
fun tptp_string_for_connective ANot = tptp_not |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
319 |
| tptp_string_for_connective AAnd = tptp_and |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
320 |
| tptp_string_for_connective AOr = tptp_or |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
321 |
| tptp_string_for_connective AImplies = tptp_implies |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
322 |
| tptp_string_for_connective AIff = tptp_iff |
42963 | 323 |
|
42962
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
324 |
fun string_for_bound_var format (s, ty) = |
44593
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
325 |
s ^ |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
326 |
(if is_format_typed format then |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
327 |
" " ^ tptp_has_type ^ " " ^ |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
328 |
(ty |> the_default (AType (tptp_individual_type, [])) |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
329 |
|> string_for_type format) |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
330 |
else |
ccf40af26ae9
implement more of the polymorphic simply typed format TFF(1)
blanchet
parents:
44589
diff
changeset
|
331 |
"") |
42963 | 332 |
|
44754 | 333 |
fun is_format_with_choice (THF (_, _, THF_With_Choice)) = true |
334 |
| is_format_with_choice _ = false |
|
335 |
||
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
336 |
fun tptp_string_for_term _ (ATerm (s, [])) = s |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
337 |
| tptp_string_for_term format (ATerm (s, ts)) = |
44787 | 338 |
(if s = tptp_empty_list then |
339 |
(* used for lists in the optional "source" field of a derivation *) |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
340 |
"[" ^ commas (map (tptp_string_for_term format) ts) ^ "]" |
44787 | 341 |
else if is_tptp_equal s then |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
342 |
space_implode (" " ^ tptp_equal ^ " ") |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
343 |
(map (tptp_string_for_term format) ts) |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
344 |
|> is_format_higher_order format ? enclose "(" ")" |
44787 | 345 |
else case (s = tptp_ho_forall orelse s = tptp_ho_exists, |
346 |
s = tptp_choice andalso is_format_with_choice format, ts) of |
|
347 |
(true, _, [AAbs ((s', ty), tm)]) => |
|
348 |
(* Use syntactic sugar "!" and "?" instead of "!!" and "??" whenever |
|
349 |
possible, to work around LEO-II 1.2.8 parser limitation. *) |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
350 |
tptp_string_for_formula format |
44787 | 351 |
(AQuant (if s = tptp_ho_forall then AForall else AExists, |
352 |
[(s', SOME ty)], AAtom tm)) |
|
353 |
| (_, true, [AAbs ((s', ty), tm)]) => |
|
46320 | 354 |
(* There is code in "ATP_Problem_Generate" to ensure that "Eps" is always |
44787 | 355 |
applied to an abstraction. *) |
356 |
tptp_choice ^ "[" ^ s' ^ " : " ^ string_for_type format ty ^ "]: " ^ |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
357 |
tptp_string_for_term format tm ^ "" |
44787 | 358 |
|> enclose "(" ")" |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
359 |
| _ => tptp_string_for_app format s (map (tptp_string_for_term format) ts)) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
360 |
| tptp_string_for_term (format as THF _) (AAbs ((s, ty), tm)) = |
44739 | 361 |
"(^[" ^ s ^ " : " ^ string_for_type format ty ^ "]: " ^ |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
362 |
tptp_string_for_term format tm ^ ")" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
363 |
| tptp_string_for_term _ _ = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
364 |
raise Fail "unexpected term in first-order format" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
365 |
and tptp_string_for_formula format (AQuant (q, xs, phi)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
366 |
tptp_string_for_quantifier q ^ |
44739 | 367 |
"[" ^ commas (map (string_for_bound_var format) xs) ^ "]: " ^ |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
368 |
tptp_string_for_formula format phi |
42974
347d5197896e
ensure that the argument of logical negation is enclosed in parentheses in THF mode
blanchet
parents:
42968
diff
changeset
|
369 |
|> enclose "(" ")" |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
370 |
| tptp_string_for_formula format |
43000
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
371 |
(AConn (ANot, [AAtom (ATerm ("=" (* tptp_equal *), ts))])) = |
42968
74415622d293
more work on parsing LEO-II proofs and extracting uses of extensionality
blanchet
parents:
42967
diff
changeset
|
372 |
space_implode (" " ^ tptp_not_infix ^ tptp_equal ^ " ") |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
373 |
(map (tptp_string_for_term format) ts) |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
374 |
|> is_format_higher_order format ? enclose "(" ")" |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
375 |
| tptp_string_for_formula format (AConn (c, [phi])) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
376 |
tptp_string_for_connective c ^ " " ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
377 |
(tptp_string_for_formula format phi |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
378 |
|> is_format_higher_order format ? enclose "(" ")") |
42974
347d5197896e
ensure that the argument of logical negation is enclosed in parentheses in THF mode
blanchet
parents:
42968
diff
changeset
|
379 |
|> enclose "(" ")" |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
380 |
| tptp_string_for_formula format (AConn (c, phis)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
381 |
space_implode (" " ^ tptp_string_for_connective c ^ " ") |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
382 |
(map (tptp_string_for_formula format) phis) |
42974
347d5197896e
ensure that the argument of logical negation is enclosed in parentheses in THF mode
blanchet
parents:
42968
diff
changeset
|
383 |
|> enclose "(" ")" |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
384 |
| tptp_string_for_formula format (AAtom tm) = tptp_string_for_term format tm |
37961
6a48c85a211a
first step in using "fof" rather than "cnf" in TPTP problems
blanchet
parents:
37931
diff
changeset
|
385 |
|
43692 | 386 |
fun the_source (SOME source) = source |
387 |
| the_source NONE = |
|
388 |
ATerm ("inference", |
|
389 |
ATerm ("isabelle", []) :: replicate 2 (ATerm ("[]", []))) |
|
42639 | 390 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
391 |
fun tptp_string_for_format CNF = tptp_cnf |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
392 |
| tptp_string_for_format CNF_UEQ = tptp_cnf |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
393 |
| tptp_string_for_format FOF = tptp_fof |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
394 |
| tptp_string_for_format (TFF _) = tptp_tff |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
395 |
| tptp_string_for_format (THF _) = tptp_thf |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
396 |
| tptp_string_for_format (DFG _) = raise Fail "non-TPTP format" |
42962
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
397 |
|
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
398 |
fun tptp_string_for_problem_line format (Decl (ident, sym, ty)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
399 |
tptp_string_for_format format ^ "(" ^ ident ^ ", type,\n " ^ sym ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
400 |
" : " ^ string_for_type format ty ^ ").\n" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
401 |
| tptp_string_for_problem_line format |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
402 |
(Formula (ident, kind, phi, source, info)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
403 |
tptp_string_for_format format ^ "(" ^ ident ^ ", " ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
404 |
tptp_string_for_kind kind ^ ",\n (" ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
405 |
tptp_string_for_formula format phi ^ ")" ^ |
42939 | 406 |
(case (source, info) of |
42709
e7af132d48fe
allow each prover to specify its own formula kind for symbols occurring in the conjecture
blanchet
parents:
42659
diff
changeset
|
407 |
(NONE, NONE) => "" |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
408 |
| (SOME tm, NONE) => ", " ^ tptp_string_for_term format tm |
42709
e7af132d48fe
allow each prover to specify its own formula kind for symbols occurring in the conjecture
blanchet
parents:
42659
diff
changeset
|
409 |
| (_, SOME tm) => |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
410 |
", " ^ tptp_string_for_term format (the_source source) ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
411 |
", " ^ tptp_string_for_term format tm) ^ ").\n" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
412 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
413 |
fun tptp_lines format = |
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
414 |
maps (fn (_, []) => [] |
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
415 |
| (heading, lines) => |
41491 | 416 |
"\n% " ^ heading ^ " (" ^ string_of_int (length lines) ^ ")\n" :: |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
417 |
map (tptp_string_for_problem_line format) lines) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
418 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
419 |
fun arity_of_type (AFun (_, ty)) = 1 + arity_of_type ty |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
420 |
| arity_of_type _ = 0 |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
421 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
422 |
fun binder_atypes (AFun (ty1, ty2)) = ty1 :: binder_atypes ty2 |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
423 |
| binder_atypes _ = [] |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
424 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
425 |
fun is_function_type (AFun (_, ty)) = is_function_type ty |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
426 |
| is_function_type (AType (s, _)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
427 |
s <> tptp_type_of_types andalso s <> tptp_bool_type |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
428 |
| is_function_type _ = false |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
429 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
430 |
fun is_predicate_type (AFun (_, ty)) = is_predicate_type ty |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
431 |
| is_predicate_type (AType (s, _)) = (s = tptp_bool_type) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
432 |
| is_predicate_type _ = false |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
433 |
|
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
434 |
fun dfg_string_for_formula flavor info = |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
435 |
let |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
436 |
fun str_for_term simp (ATerm (s, tms)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
437 |
(if is_tptp_equal s then "equal" |> simp ? suffix ":lr" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
438 |
else if s = tptp_true then "true" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
439 |
else if s = tptp_false then "false" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
440 |
else s) ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
441 |
(if null tms then "" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
442 |
else "(" ^ commas (map (str_for_term false) tms) ^ ")") |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
443 |
| str_for_term _ _ = raise Fail "unexpected term in first-order format" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
444 |
fun str_for_quant AForall = "forall" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
445 |
| str_for_quant AExists = "exists" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
446 |
fun str_for_conn _ ANot = "not" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
447 |
| str_for_conn _ AAnd = "and" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
448 |
| str_for_conn _ AOr = "or" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
449 |
| str_for_conn _ AImplies = "implies" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
450 |
| str_for_conn simp AIff = "equiv" |> simp ? suffix ":lr" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
451 |
fun str_for_formula simp (AQuant (q, xs, phi)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
452 |
str_for_quant q ^ "(" ^ "[" ^ |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
453 |
commas (map (string_for_bound_var (DFG flavor)) xs) ^ "], " ^ |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
454 |
str_for_formula simp phi ^ ")" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
455 |
| str_for_formula simp (AConn (c, phis)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
456 |
str_for_conn simp c ^ "(" ^ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
457 |
commas (map (str_for_formula false) phis) ^ ")" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
458 |
| str_for_formula simp (AAtom tm) = str_for_term simp tm |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
459 |
in str_for_formula (is_isabelle_info simpN info) end |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
460 |
|
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
461 |
fun dfg_lines flavor problem = |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
462 |
let |
45304
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
463 |
val sorted = (flavor = DFG_Sorted) |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
464 |
val format = DFG flavor |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
465 |
fun ary sym ty = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
466 |
"(" ^ sym ^ ", " ^ string_of_int (arity_of_type ty) ^ ")" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
467 |
fun fun_typ sym ty = |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
468 |
"function(" ^ sym ^ ", " ^ string_for_type format ty ^ ")." |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
469 |
fun pred_typ sym ty = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
470 |
"predicate(" ^ |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
471 |
commas (sym :: map (string_for_type format) (binder_atypes ty)) ^ ")." |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
472 |
fun formula pred (Formula (ident, kind, phi, _, info)) = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
473 |
if pred kind then |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
474 |
SOME ("formula(" ^ dfg_string_for_formula flavor info phi ^ ", " ^ |
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
475 |
ident ^ ").") |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
476 |
else |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
477 |
NONE |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
478 |
| formula _ _ = NONE |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
479 |
fun filt f = problem |> map (map_filter f o snd) |> flat |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
480 |
val func_aries = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
481 |
filt (fn Decl (_, sym, ty) => |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
482 |
if is_function_type ty then SOME (ary sym ty) else NONE |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
483 |
| _ => NONE) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
484 |
|> commas |> enclose "functions [" "]." |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
485 |
val pred_aries = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
486 |
filt (fn Decl (_, sym, ty) => |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
487 |
if is_predicate_type ty then SOME (ary sym ty) else NONE |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
488 |
| _ => NONE) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
489 |
|> commas |> enclose "predicates [" "]." |
45304
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
490 |
fun sorts () = |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
491 |
filt (fn Decl (_, sym, AType (s, [])) => |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
492 |
if s = tptp_type_of_types then SOME sym else NONE |
46338
b02ff6b17599
better handling of individual type for DFG format (SPASS)
blanchet
parents:
46320
diff
changeset
|
493 |
| _ => NONE) @ [dfg_individual_type] |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
494 |
|> commas |> enclose "sorts [" "]." |
45304
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
495 |
val syms = [func_aries, pred_aries] @ (if sorted then [sorts ()] else []) |
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
496 |
fun func_sigs () = |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
497 |
filt (fn Decl (_, sym, ty) => |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
498 |
if is_function_type ty then SOME (fun_typ sym ty) else NONE |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
499 |
| _ => NONE) |
45304
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
500 |
fun pred_sigs () = |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
501 |
filt (fn Decl (_, sym, ty) => |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
502 |
if is_predicate_type ty then SOME (pred_typ sym ty) else NONE |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
503 |
| _ => NONE) |
45304
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
504 |
val decls = if sorted then func_sigs () @ pred_sigs () else [] |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
505 |
val axioms = filt (formula (curry (op <>) Conjecture)) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
506 |
val conjs = filt (formula (curry (op =) Conjecture)) |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
507 |
fun list_of _ [] = [] |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
508 |
| list_of heading ss = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
509 |
"list_of_" ^ heading ^ ".\n" :: map (suffix "\n") ss @ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
510 |
["end_of_list.\n\n"] |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
511 |
in |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
512 |
"\nbegin_problem(isabelle).\n\n" :: |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
513 |
list_of "descriptions" |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
514 |
["name({**}).", "author({**}).", "status(unknown).", |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
515 |
"description({**})."] @ |
45304
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
516 |
list_of "symbols" syms @ |
e6901aa86a9e
always use DFG format to talk to SPASS -- since that's what we'll need to use anyway to benefit from sorts and other extensions
blanchet
parents:
45303
diff
changeset
|
517 |
list_of "declarations" decls @ |
45301
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
518 |
list_of "formulae(axioms)" axioms @ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
519 |
list_of "formulae(conjectures)" conjs @ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
520 |
["end_problem.\n"] |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
521 |
end |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
522 |
|
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
523 |
fun lines_for_atp_problem format problem = |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
524 |
"% This file was generated by Isabelle (most likely Sledgehammer)\n\ |
866b075aa99b
added sorted DFG output for coming version of SPASS
blanchet
parents:
44787
diff
changeset
|
525 |
\% " ^ timestamp () ^ "\n" :: |
45303
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
526 |
(case format of |
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
527 |
DFG flavor => dfg_lines flavor |
bd03b08161ac
added DFG unsorted support (like in the old days)
blanchet
parents:
45301
diff
changeset
|
528 |
| _ => tptp_lines format) problem |
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
529 |
|
42939 | 530 |
|
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
531 |
(** CNF (Metis) and CNF UEQ (Waldmeister) **) |
42939 | 532 |
|
533 |
fun is_problem_line_negated (Formula (_, _, AConn (ANot, _), _, _)) = true |
|
534 |
| is_problem_line_negated _ = false |
|
535 |
||
43193
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
536 |
fun is_problem_line_cnf_ueq (Formula (_, _, AAtom (ATerm ((s, _), _)), _, _)) = |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
537 |
is_tptp_equal s |
42939 | 538 |
| is_problem_line_cnf_ueq _ = false |
539 |
||
42944
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
540 |
fun open_conjecture_term (ATerm ((s, s'), tms)) = |
43676
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
541 |
ATerm (if is_tptp_variable s then (s |> Name.desymbolize false, s') |
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
542 |
else (s, s'), tms |> map open_conjecture_term) |
3b0b448b4d69
add support for lambdas in TPTP THF generator + killed an unsound type encoding (because the monotonicity calculus assumes first-order)
nik
parents:
43422
diff
changeset
|
543 |
| open_conjecture_term _ = raise Fail "unexpected higher-order term" |
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
544 |
fun open_formula conj = |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
545 |
let |
43193
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
546 |
(* We are conveniently assuming that all bound variable names are |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
547 |
distinct, which should be the case for the formulas we generate. *) |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
548 |
fun opn (pos as SOME true) (AQuant (AForall, _, phi)) = opn pos phi |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
549 |
| opn (pos as SOME false) (AQuant (AExists, _, phi)) = opn pos phi |
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
550 |
| opn pos (AConn (ANot, [phi])) = mk_anot (opn (Option.map not pos) phi) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
551 |
| opn pos (AConn (c, [phi1, phi2])) = |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
552 |
let val (pos1, pos2) = polarities_of_conn pos c in |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
553 |
AConn (c, [opn pos1 phi1, opn pos2 phi2]) |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
554 |
end |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
555 |
| opn _ (AAtom t) = AAtom (t |> conj ? open_conjecture_term) |
43422
dcbedaf6f80c
added missing case in pattern matching -- solves Waldmeister "Match" exceptions that have been plaguing some users
blanchet
parents:
43295
diff
changeset
|
556 |
| opn _ phi = phi |
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
557 |
in opn (SOME (not conj)) end |
42944
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
558 |
fun open_formula_line (Formula (ident, kind, phi, source, info)) = |
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
559 |
Formula (ident, kind, open_formula (kind = Conjecture) phi, source, info) |
9e620869a576
improved Waldmeister support -- even run it by default on unit equational goals
blanchet
parents:
42942
diff
changeset
|
560 |
| open_formula_line line = line |
42939 | 561 |
|
562 |
fun negate_conjecture_line (Formula (ident, Conjecture, phi, source, info)) = |
|
42942 | 563 |
Formula (ident, Hypothesis, mk_anot phi, source, info) |
42939 | 564 |
| negate_conjecture_line line = line |
565 |
||
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
566 |
exception CLAUSIFY of unit |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
567 |
|
43126
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
568 |
(* This "clausification" only expands syntactic sugar, such as "phi => psi" to |
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
569 |
"~ phi | psi" and "phi <=> psi" to "~ phi | psi" and "~ psi | phi". We don't |
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
570 |
attempt to distribute conjunctions over disjunctions. *) |
43193
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
571 |
fun clausify_formula pos (phi as AAtom _) = [phi |> not pos ? mk_anot] |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
572 |
| clausify_formula pos (AConn (ANot, [phi])) = clausify_formula (not pos) phi |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
573 |
| clausify_formula true (AConn (AOr, [phi1, phi2])) = |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
574 |
(phi1, phi2) |> pairself (clausify_formula true) |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
575 |
|> uncurry (map_product (mk_aconn AOr)) |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
576 |
| clausify_formula false (AConn (AAnd, [phi1, phi2])) = |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
577 |
(phi1, phi2) |> pairself (clausify_formula false) |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
578 |
|> uncurry (map_product (mk_aconn AOr)) |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
579 |
| clausify_formula true (AConn (AImplies, [phi1, phi2])) = |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
580 |
clausify_formula true (AConn (AOr, [mk_anot phi1, phi2])) |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
581 |
| clausify_formula true (AConn (AIff, phis)) = |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
582 |
clausify_formula true (AConn (AImplies, phis)) @ |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
583 |
clausify_formula true (AConn (AImplies, rev phis)) |
e11bd628f1a5
improved ATP clausifier so it can deal with "x => (y <=> z)"
blanchet
parents:
43163
diff
changeset
|
584 |
| clausify_formula _ _ = raise CLAUSIFY () |
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
585 |
|
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
586 |
fun clausify_formula_line (Formula (ident, kind, phi, source, info)) = |
43126
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
587 |
let |
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
588 |
val (n, phis) = phi |> try (clausify_formula true) |> these |> `length |
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
589 |
in |
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
590 |
map2 (fn phi => fn j => |
43295
30aaab778416
pass Metis facts and negated conjecture as facts, with (almost) correctly set localities, so that the correct encoding is used for nonmonotonic occurrences of infinite types
blanchet
parents:
43224
diff
changeset
|
591 |
Formula (ident ^ replicate_string (j - 1) "x", kind, phi, source, |
30aaab778416
pass Metis facts and negated conjecture as facts, with (almost) correctly set localities, so that the correct encoding is used for nonmonotonic occurrences of infinite types
blanchet
parents:
43224
diff
changeset
|
592 |
info)) |
43126
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
593 |
phis (1 upto n) |
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
594 |
end |
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
595 |
| clausify_formula_line _ = [] |
43098
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
596 |
|
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
597 |
fun ensure_cnf_problem_line line = |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
598 |
line |> open_formula_line |> negate_conjecture_line |> clausify_formula_line |
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
599 |
|
e88e974c4846
proper handling of type variable classes in new Metis
blanchet
parents:
43092
diff
changeset
|
600 |
fun ensure_cnf_problem problem = |
43126
a7db0afd5200
clausify "<=>" (needed for some type information)
blanchet
parents:
43098
diff
changeset
|
601 |
problem |> map (apsnd (maps ensure_cnf_problem_line)) |
43092
93ec303e1917
more work on new metis that exploits the powerful new type encodings
blanchet
parents:
43085
diff
changeset
|
602 |
|
42962
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
603 |
fun filter_cnf_ueq_problem problem = |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
604 |
problem |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
605 |
|> map (apsnd (map open_formula_line |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
606 |
#> filter is_problem_line_cnf_ueq |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
607 |
#> map negate_conjecture_line)) |
3b50fdeb6cfc
started adding support for THF output (but no lambdas)
blanchet
parents:
42961
diff
changeset
|
608 |
|> (fn problem => |
42939 | 609 |
let |
43824
0234156d3fbe
don't generate Waldmeister problems with only a conjecture, since it makes it crash sometimes
blanchet
parents:
43692
diff
changeset
|
610 |
val lines = problem |> maps snd |
0234156d3fbe
don't generate Waldmeister problems with only a conjecture, since it makes it crash sometimes
blanchet
parents:
43692
diff
changeset
|
611 |
val conjs = lines |> filter is_problem_line_negated |
0234156d3fbe
don't generate Waldmeister problems with only a conjecture, since it makes it crash sometimes
blanchet
parents:
43692
diff
changeset
|
612 |
in if length conjs = 1 andalso conjs <> lines then problem else [] end) |
38017
3ad3e3ca2451
move Sledgehammer-specific code out of "Sledgehammer_TPTP_Format"
blanchet
parents:
38014
diff
changeset
|
613 |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
614 |
|
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
615 |
(** Symbol declarations **) |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
616 |
|
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
617 |
fun add_declared_syms_in_problem_line (Decl (_, sym, _)) = insert (op =) sym |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
618 |
| add_declared_syms_in_problem_line _ = I |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
619 |
fun declared_syms_in_problem problem = |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
620 |
fold (fold add_declared_syms_in_problem_line o snd) problem [] |
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
621 |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
622 |
(** Nice names **) |
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37642
diff
changeset
|
623 |
|
37624 | 624 |
fun pool_fold f xs z = pair z #> fold_rev (fn x => uncurry (f x)) xs |
625 |
fun pool_map f xs = |
|
626 |
pool_fold (fn x => fn ys => fn pool => f x pool |>> (fn y => y :: ys)) xs [] |
|
627 |
||
42227
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
628 |
val no_qualifiers = |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
629 |
let |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
630 |
fun skip [] = [] |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
631 |
| skip (#"." :: cs) = skip cs |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
632 |
| skip (c :: cs) = if Char.isAlphaNum c then skip cs else c :: keep cs |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
633 |
and keep [] = [] |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
634 |
| keep (#"." :: cs) = skip cs |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
635 |
| keep (c :: cs) = c :: keep cs |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
636 |
in String.explode #> rev #> keep #> rev #> String.implode end |
662b50b7126f
if "monomorphize" is enabled, mangle the type information in the names by default
blanchet
parents:
41769
diff
changeset
|
637 |
|
42761
8ea9c6fa8b53
fixed several bugs in Isar proof reconstruction, in particular w.r.t. mangled types and hAPP
blanchet
parents:
42752
diff
changeset
|
638 |
(* Long names can slow down the ATPs. *) |
42724
4d6bcf846759
added "max_mono_instances" option to Sledgehammer and renamed old "monomorphize_limit" option
blanchet
parents:
42722
diff
changeset
|
639 |
val max_readable_name_size = 20 |
42567
d012947edd36
shorten readable names -- they can get really long with monomorphization, which actually slows down the ATPs
blanchet
parents:
42543
diff
changeset
|
640 |
|
43000
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
641 |
(* "equal" is reserved by some ATPs. "op" is also reserved, to avoid the |
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
642 |
unreadable "op_1", "op_2", etc., in the problem files. "eq" is reserved to |
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
643 |
ensure that "HOL.eq" is correctly mapped to equality (not clear whether this |
bd424c3dde46
cleaner handling of equality and proxies (esp. for THF)
blanchet
parents:
42998
diff
changeset
|
644 |
is still necessary). *) |
45939
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
645 |
val reserved_nice_names = [tptp_old_equal, "op", "eq"] |
42939 | 646 |
|
45939
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
647 |
fun readable_name underscore full_name s = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
648 |
(if s = full_name then |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
649 |
s |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
650 |
else |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
651 |
s |> no_qualifiers |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
652 |
|> perhaps (try (unprefix "'")) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
653 |
|> Name.desymbolize (Char.isUpper (String.sub (full_name, 0))) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
654 |
|> (fn s => |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
655 |
if size s > max_readable_name_size then |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
656 |
String.substring (s, 0, max_readable_name_size div 2 - 4) ^ |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
657 |
string_of_int (hash_string full_name) ^ |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
658 |
String.extract (s, size s - max_readable_name_size div 2 + 4, |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
659 |
NONE) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
660 |
else |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
661 |
s) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
662 |
|> (fn s => |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
663 |
if member (op =) reserved_nice_names s then full_name else s)) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
664 |
|> underscore ? suffix "_" |
37624 | 665 |
|
45939
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
666 |
fun nice_name _ (full_name, _) NONE = (full_name, NONE) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
667 |
| nice_name underscore (full_name, desired_name) (SOME the_pool) = |
42998
1c80902d0456
fully support all type system encodings in typed formats (TFF, THF)
blanchet
parents:
42994
diff
changeset
|
668 |
if is_built_in_tptp_symbol full_name then |
39384 | 669 |
(full_name, SOME the_pool) |
670 |
else case Symtab.lookup (fst the_pool) full_name of |
|
37624 | 671 |
SOME nice_name => (nice_name, SOME the_pool) |
672 |
| NONE => |
|
673 |
let |
|
45939
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
674 |
val nice_prefix = readable_name underscore full_name desired_name |
37624 | 675 |
fun add j = |
676 |
let |
|
42644 | 677 |
val nice_name = |
44407 | 678 |
nice_prefix ^ (if j = 0 then "" else string_of_int j) |
37624 | 679 |
in |
680 |
case Symtab.lookup (snd the_pool) nice_name of |
|
681 |
SOME full_name' => |
|
682 |
if full_name = full_name' then (nice_name, the_pool) |
|
683 |
else add (j + 1) |
|
684 |
| NONE => |
|
685 |
(nice_name, |
|
686 |
(Symtab.update_new (full_name, nice_name) (fst the_pool), |
|
687 |
Symtab.update_new (nice_name, full_name) (snd the_pool))) |
|
688 |
end |
|
689 |
in add 0 |> apsnd SOME end |
|
690 |
||
45939
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
691 |
fun nice_atp_problem readable_names format problem = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
692 |
let |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
693 |
val empty_pool = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
694 |
if readable_names then SOME (Symtab.empty, Symtab.empty) else NONE |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
695 |
val underscore = case format of DFG _ => true | _ => false |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
696 |
val nice_name = nice_name underscore |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
697 |
fun nice_type (AType (name, tys)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
698 |
nice_name name ##>> pool_map nice_type tys #>> AType |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
699 |
| nice_type (AFun (ty1, ty2)) = nice_type ty1 ##>> nice_type ty2 #>> AFun |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
700 |
| nice_type (ATyAbs (names, ty)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
701 |
pool_map nice_name names ##>> nice_type ty #>> ATyAbs |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
702 |
fun nice_term (ATerm (name, ts)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
703 |
nice_name name ##>> pool_map nice_term ts #>> ATerm |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
704 |
| nice_term (AAbs ((name, ty), tm)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
705 |
nice_name name ##>> nice_type ty ##>> nice_term tm #>> AAbs |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
706 |
fun nice_formula (AQuant (q, xs, phi)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
707 |
pool_map nice_name (map fst xs) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
708 |
##>> pool_map (fn NONE => pair NONE |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
709 |
| SOME ty => nice_type ty #>> SOME) (map snd xs) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
710 |
##>> nice_formula phi |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
711 |
#>> (fn ((ss, ts), phi) => AQuant (q, ss ~~ ts, phi)) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
712 |
| nice_formula (AConn (c, phis)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
713 |
pool_map nice_formula phis #>> curry AConn c |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
714 |
| nice_formula (AAtom tm) = nice_term tm #>> AAtom |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
715 |
fun nice_problem_line (Decl (ident, sym, ty)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
716 |
nice_name sym ##>> nice_type ty #>> (fn (sym, ty) => Decl (ident, sym, ty)) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
717 |
| nice_problem_line (Formula (ident, kind, phi, source, info)) = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
718 |
nice_formula phi #>> (fn phi => Formula (ident, kind, phi, source, info)) |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
719 |
fun nice_problem problem = |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
720 |
pool_map (fn (heading, lines) => |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
721 |
pool_map nice_problem_line lines #>> pair heading) problem |
711fec5b4f61
don't try to avoid SPASS keywords; instead, just suffix an underscore to all generated identifiers
blanchet
parents:
45938
diff
changeset
|
722 |
in nice_problem problem empty_pool end |
37509
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
723 |
|
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
diff
changeset
|
724 |
end; |