| author | blanchet |
| Sun, 01 May 2011 18:37:24 +0200 | |
| changeset 42557 | ae0deb39a254 |
| parent 42544 | 75cb06eee990 |
| child 42561 | 23ddc4e3d19c |
| permissions | -rw-r--r-- |
| 39958 | 1 |
(* Title: HOL/Tools/Metis/metis_translate.ML |
| 38027 | 2 |
Author: Jia Meng, Cambridge University Computer Laboratory and NICTA |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
3 |
Author: Kong W. Susanto, Cambridge University Computer Laboratory |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
4 |
Author: Lawrence C. Paulson, Cambridge University Computer Laboratory |
|
36393
be73a2b2443b
support readable names even when Isar proof reconstruction is enabled -- useful for debugging
blanchet
parents:
36378
diff
changeset
|
5 |
Author: Jasmin Blanchette, TU Muenchen |
| 15347 | 6 |
|
|
39494
bf7dd4902321
rename "Metis_Clauses" to "Metis_Translate" for consistency with "Sledgehammer_Translate"
blanchet
parents:
39355
diff
changeset
|
7 |
Translation of HOL to FOL for Metis. |
| 15347 | 8 |
*) |
9 |
||
|
39494
bf7dd4902321
rename "Metis_Clauses" to "Metis_Translate" for consistency with "Sledgehammer_Translate"
blanchet
parents:
39355
diff
changeset
|
10 |
signature METIS_TRANSLATE = |
| 24310 | 11 |
sig |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
12 |
type name = string * string |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
13 |
datatype type_literal = |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
14 |
TyLitVar of name * name | |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
15 |
TyLitFree of name * name |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
16 |
datatype arLit = |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
17 |
TConsLit of name * name * name list | |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
18 |
TVarLit of name * name |
| 38028 | 19 |
datatype arity_clause = |
|
38105
373351f5f834
don't choke on synonyms when parsing SPASS's Flotter output + renamings;
blanchet
parents:
38028
diff
changeset
|
20 |
ArityClause of {name: string, conclLit: arLit, premLits: arLit list}
|
| 38028 | 21 |
datatype class_rel_clause = |
|
38105
373351f5f834
don't choke on synonyms when parsing SPASS's Flotter output + renamings;
blanchet
parents:
38028
diff
changeset
|
22 |
ClassRelClause of {name: string, subclass: name, superclass: name}
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
23 |
datatype combtyp = |
| 37924 | 24 |
CombTVar of name | |
25 |
CombTFree of name | |
|
26 |
CombType of name * combtyp list |
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
27 |
datatype combterm = |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
28 |
CombConst of name * combtyp * combtyp list (* Const and Free *) | |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
29 |
CombVar of name * combtyp | |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
30 |
CombApp of combterm * combterm |
| 37923 | 31 |
datatype fol_literal = FOLLiteral of bool * combterm |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
32 |
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
33 |
datatype mode = FO | HO | FT |
| 40157 | 34 |
type metis_problem = |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
35 |
{axioms: (Metis_Thm.thm * thm) list,
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
36 |
tfrees: type_literal list, |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
37 |
old_skolems: (string * term) list} |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
38 |
|
|
42098
f978caf60bbe
more robust handling of variables in new Skolemizer
blanchet
parents:
41491
diff
changeset
|
39 |
val metis_generated_var_prefix : string |
|
41138
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
40 |
val type_tag_name : string |
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
41 |
val bound_var_prefix : string |
| 24310 | 42 |
val schematic_var_prefix: string |
43 |
val fixed_var_prefix: string |
|
44 |
val tvar_prefix: string |
|
45 |
val tfree_prefix: string |
|
46 |
val const_prefix: string |
|
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
47 |
val type_const_prefix: string |
| 24310 | 48 |
val class_prefix: string |
|
39896
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
49 |
val new_skolem_const_prefix : string |
|
37572
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
50 |
val invert_const: string -> string |
| 24310 | 51 |
val ascii_of: string -> string |
| 38748 | 52 |
val unascii_of: string -> string |
53 |
val strip_prefix_and_unascii: string -> string -> string option |
|
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
54 |
val make_bound_var : string -> string |
| 24310 | 55 |
val make_schematic_var : string * int -> string |
| 18868 | 56 |
val make_fixed_var : string -> string |
57 |
val make_schematic_type_var : string * int -> string |
|
| 24310 | 58 |
val make_fixed_type_var : string -> string |
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
59 |
val make_fixed_const : string -> string |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
60 |
val make_fixed_type_const : string -> string |
| 18868 | 61 |
val make_type_class : string -> string |
|
37618
fa57a87f92a0
get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents:
37616
diff
changeset
|
62 |
val num_type_args: theory -> string -> int |
|
40259
c0e34371c2e2
prevent type errors because of inconsistent skolem Var types by giving fresh indices to Skolems
blanchet
parents:
40157
diff
changeset
|
63 |
val new_skolem_var_name_from_const : string -> string |
|
36966
adc11fb3f3aa
generate proper arity declarations for TFrees for SPASS's DFG format;
blanchet
parents:
36692
diff
changeset
|
64 |
val type_literals_for_types : typ list -> type_literal list |
| 39499 | 65 |
val make_class_rel_clauses : |
66 |
theory -> class list -> class list -> class_rel_clause list |
|
67 |
val make_arity_clauses : |
|
68 |
theory -> string list -> class list -> class list * arity_clause list |
|
|
42544
75cb06eee990
reimplemented the hAPP introduction code so that it's done earlier, when the types are still available
blanchet
parents:
42532
diff
changeset
|
69 |
val dest_combfun : combtyp -> combtyp * combtyp |
|
37994
b04307085a09
make TPTP generator accept full first-order formulas
blanchet
parents:
37992
diff
changeset
|
70 |
val combtyp_of : combterm -> combtyp |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
71 |
val strip_combterm_comb : combterm -> combterm * combterm list |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
72 |
val combtyp_from_typ : typ -> combtyp |
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
73 |
val combterm_from_term : |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
74 |
theory -> (string * typ) list -> term -> combterm * typ list |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
75 |
val reveal_old_skolem_terms : (string * term) list -> term -> term |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
76 |
val tfree_classes_of_terms : term list -> string list |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
77 |
val tvar_classes_of_terms : term list -> string list |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
78 |
val type_consts_of_terms : theory -> term list -> string list |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
79 |
val string_of_mode : mode -> string |
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
80 |
val metis_helpers : (string * (bool * thm list)) list |
| 40157 | 81 |
val prepare_metis_problem : |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
82 |
mode -> Proof.context -> bool -> thm list -> thm list list |
| 40157 | 83 |
-> mode * metis_problem |
| 24310 | 84 |
end |
| 15347 | 85 |
|
|
39494
bf7dd4902321
rename "Metis_Clauses" to "Metis_Translate" for consistency with "Sledgehammer_Translate"
blanchet
parents:
39355
diff
changeset
|
86 |
structure Metis_Translate : METIS_TRANSLATE = |
| 15347 | 87 |
struct |
88 |
||
|
42098
f978caf60bbe
more robust handling of variables in new Skolemizer
blanchet
parents:
41491
diff
changeset
|
89 |
val metis_generated_var_prefix = "_" |
|
f978caf60bbe
more robust handling of variables in new Skolemizer
blanchet
parents:
41491
diff
changeset
|
90 |
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
91 |
val type_tag_name = "ti" |
|
37509
f39464d971c4
factor out TPTP format output into file of its own, to facilitate further changes
blanchet
parents:
37500
diff
changeset
|
92 |
|
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
93 |
val bound_var_prefix = "B_" |
|
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
94 |
val schematic_var_prefix = "V_" |
|
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
95 |
val fixed_var_prefix = "v_" |
| 15347 | 96 |
|
|
17230
77e93bf303a5
fixed arities and restored changes that had gone missing
paulson
parents:
17150
diff
changeset
|
97 |
val tvar_prefix = "T_"; |
|
77e93bf303a5
fixed arities and restored changes that had gone missing
paulson
parents:
17150
diff
changeset
|
98 |
val tfree_prefix = "t_"; |
| 15347 | 99 |
|
|
17230
77e93bf303a5
fixed arities and restored changes that had gone missing
paulson
parents:
17150
diff
changeset
|
100 |
val const_prefix = "c_"; |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
101 |
val type_const_prefix = "tc_"; |
| 24310 | 102 |
val class_prefix = "class_"; |
| 15347 | 103 |
|
|
39896
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
104 |
val skolem_const_prefix = "Sledgehammer" ^ Long_Name.separator ^ "Sko" |
|
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
105 |
val old_skolem_const_prefix = skolem_const_prefix ^ "o" |
|
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
106 |
val new_skolem_const_prefix = skolem_const_prefix ^ "n" |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
107 |
|
|
36218
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
108 |
fun union_all xss = fold (union (op =)) xss [] |
| 17775 | 109 |
|
|
36493
a3357a631b96
reintroduced short names for HOL->FOL constants; other parts of the code rely on these
blanchet
parents:
36491
diff
changeset
|
110 |
(* Readable names for the more common symbolic functions. Do not mess with the |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
111 |
table unless you know what you are doing. *) |
| 15347 | 112 |
val const_trans_table = |
|
37678
0040bafffdef
"prod" and "sum" replace "*" and "+" respectively
haftmann
parents:
37643
diff
changeset
|
113 |
Symtab.make [(@{type_name Product_Type.prod}, "prod"),
|
|
0040bafffdef
"prod" and "sum" replace "*" and "+" respectively
haftmann
parents:
37643
diff
changeset
|
114 |
(@{type_name Sum_Type.sum}, "sum"),
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
115 |
(@{const_name False}, "False"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
116 |
(@{const_name True}, "True"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
117 |
(@{const_name Not}, "Not"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
118 |
(@{const_name conj}, "conj"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
119 |
(@{const_name disj}, "disj"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
120 |
(@{const_name implies}, "implies"),
|
|
38864
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
haftmann
parents:
38795
diff
changeset
|
121 |
(@{const_name HOL.eq}, "equal"),
|
| 41156 | 122 |
(@{const_name If}, "If"),
|
| 38653 | 123 |
(@{const_name Set.member}, "member"),
|
| 41156 | 124 |
(@{const_name Meson.COMBI}, "COMBI"),
|
125 |
(@{const_name Meson.COMBK}, "COMBK"),
|
|
126 |
(@{const_name Meson.COMBB}, "COMBB"),
|
|
127 |
(@{const_name Meson.COMBC}, "COMBC"),
|
|
128 |
(@{const_name Meson.COMBS}, "COMBS"),
|
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
129 |
(@{const_name Metis.fFalse}, "fFalse"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
130 |
(@{const_name Metis.fTrue}, "fTrue"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
131 |
(@{const_name Metis.fNot}, "fNot"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
132 |
(@{const_name Metis.fconj}, "fconj"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
133 |
(@{const_name Metis.fdisj}, "fdisj"),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
134 |
(@{const_name Metis.fimplies}, "fimplies"),
|
| 41156 | 135 |
(@{const_name Metis.fequal}, "fequal")]
|
| 15347 | 136 |
|
|
37572
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
137 |
(* Invert the table of translations between Isabelle and ATPs. *) |
|
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
138 |
val const_trans_table_inv = |
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
139 |
const_trans_table |> Symtab.dest |> map swap |> Symtab.make |
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
140 |
|> fold Symtab.update [("fFalse", @{const_name False}),
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
141 |
("fTrue", @{const_name True}),
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
142 |
("fNot", @{const_name Not}),
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
143 |
("fconj", @{const_name conj}),
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
144 |
("fdisj", @{const_name disj}),
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
145 |
("fimplies", @{const_name implies}),
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
146 |
("fequal", @{const_name HOL.eq})]
|
|
37572
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
147 |
|
|
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
148 |
val invert_const = perhaps (Symtab.lookup const_trans_table_inv) |
| 15347 | 149 |
|
| 15610 | 150 |
(*Escaping of special characters. |
151 |
Alphanumeric characters are left unchanged. |
|
152 |
The character _ goes to __ |
|
153 |
Characters in the range ASCII space to / go to _A to _P, respectively. |
|
|
38738
0ce517c1970f
make sure that "undo_ascii_of" is the inverse of "ascii_of", also for non-printable characters -- and avoid those in ``-style facts
blanchet
parents:
38653
diff
changeset
|
154 |
Other characters go to _nnn where nnn is the decimal ASCII code.*) |
| 24183 | 155 |
val A_minus_space = Char.ord #"A" - Char.ord #" "; |
| 15610 | 156 |
|
| 24183 | 157 |
fun stringN_of_int 0 _ = "" |
| 41491 | 158 |
| stringN_of_int k n = stringN_of_int (k-1) (n div 10) ^ string_of_int (n mod 10); |
| 15610 | 159 |
|
| 15347 | 160 |
fun ascii_of_c c = |
| 15610 | 161 |
if Char.isAlphaNum c then String.str c |
162 |
else if c = #"_" then "__" |
|
| 24310 | 163 |
else if #" " <= c andalso c <= #"/" |
| 15610 | 164 |
then "_" ^ String.str (Char.chr (Char.ord c + A_minus_space)) |
|
38738
0ce517c1970f
make sure that "undo_ascii_of" is the inverse of "ascii_of", also for non-printable characters -- and avoid those in ``-style facts
blanchet
parents:
38653
diff
changeset
|
165 |
else ("_" ^ stringN_of_int 3 (Char.ord c)) (*fixed width, in case more digits follow*)
|
| 15347 | 166 |
|
| 15610 | 167 |
val ascii_of = String.translate ascii_of_c; |
168 |
||
| 24183 | 169 |
(** Remove ASCII armouring from names in proof files **) |
170 |
||
171 |
(*We don't raise error exceptions because this code can run inside the watcher. |
|
172 |
Also, the errors are "impossible" (hah!)*) |
|
| 38748 | 173 |
fun unascii_aux rcs [] = String.implode(rev rcs) |
174 |
| unascii_aux rcs [#"_"] = unascii_aux (#"_"::rcs) [] (*ERROR*) |
|
| 24183 | 175 |
(*Three types of _ escapes: __, _A to _P, _nnn*) |
| 38748 | 176 |
| unascii_aux rcs (#"_" :: #"_" :: cs) = unascii_aux (#"_"::rcs) cs |
177 |
| unascii_aux rcs (#"_" :: c :: cs) = |
|
| 24183 | 178 |
if #"A" <= c andalso c<= #"P" (*translation of #" " to #"/"*) |
| 38748 | 179 |
then unascii_aux (Char.chr(Char.ord c - A_minus_space) :: rcs) cs |
| 24310 | 180 |
else |
| 24183 | 181 |
let val digits = List.take (c::cs, 3) handle Subscript => [] |
| 24310 | 182 |
in |
| 24183 | 183 |
case Int.fromString (String.implode digits) of |
| 38748 | 184 |
NONE => unascii_aux (c:: #"_"::rcs) cs (*ERROR*) |
185 |
| SOME n => unascii_aux (Char.chr n :: rcs) (List.drop (cs, 2)) |
|
| 24183 | 186 |
end |
| 38748 | 187 |
| unascii_aux rcs (c::cs) = unascii_aux (c::rcs) cs |
188 |
val unascii_of = unascii_aux [] o String.explode |
|
| 15347 | 189 |
|
|
37572
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
190 |
(* If string s has the prefix s1, return the result of deleting it, |
|
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
191 |
un-ASCII'd. *) |
| 38748 | 192 |
fun strip_prefix_and_unascii s1 s = |
|
37572
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
193 |
if String.isPrefix s1 s then |
| 38748 | 194 |
SOME (unascii_of (String.extract (s, size s1, NONE))) |
|
37572
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
195 |
else |
|
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
196 |
NONE |
|
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
197 |
|
|
16925
0fd7b1438d28
simpler variable names, and no types for monomorphic constants
paulson
parents:
16903
diff
changeset
|
198 |
(*Remove the initial ' character from a type variable, if it is present*) |
|
0fd7b1438d28
simpler variable names, and no types for monomorphic constants
paulson
parents:
16903
diff
changeset
|
199 |
fun trim_type_var s = |
|
0fd7b1438d28
simpler variable names, and no types for monomorphic constants
paulson
parents:
16903
diff
changeset
|
200 |
if s <> "" andalso String.sub(s,0) = #"'" then String.extract(s,1,NONE) |
|
0fd7b1438d28
simpler variable names, and no types for monomorphic constants
paulson
parents:
16903
diff
changeset
|
201 |
else error ("trim_type: Malformed type variable encountered: " ^ s);
|
|
0fd7b1438d28
simpler variable names, and no types for monomorphic constants
paulson
parents:
16903
diff
changeset
|
202 |
|
| 16903 | 203 |
fun ascii_of_indexname (v,0) = ascii_of v |
| 41491 | 204 |
| ascii_of_indexname (v,i) = ascii_of v ^ "_" ^ string_of_int i; |
| 15347 | 205 |
|
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
206 |
fun make_bound_var x = bound_var_prefix ^ ascii_of x |
|
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
207 |
fun make_schematic_var v = schematic_var_prefix ^ ascii_of_indexname v |
|
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
208 |
fun make_fixed_var x = fixed_var_prefix ^ ascii_of x |
| 15347 | 209 |
|
| 24310 | 210 |
fun make_schematic_type_var (x,i) = |
|
16925
0fd7b1438d28
simpler variable names, and no types for monomorphic constants
paulson
parents:
16903
diff
changeset
|
211 |
tvar_prefix ^ (ascii_of_indexname (trim_type_var x,i)); |
|
0fd7b1438d28
simpler variable names, and no types for monomorphic constants
paulson
parents:
16903
diff
changeset
|
212 |
fun make_fixed_type_var x = tfree_prefix ^ (ascii_of (trim_type_var x)); |
| 15347 | 213 |
|
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
214 |
fun lookup_const c = |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
215 |
case Symtab.lookup const_trans_table c of |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
216 |
SOME c' => c' |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
217 |
| NONE => ascii_of c |
| 23075 | 218 |
|
|
38864
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
haftmann
parents:
38795
diff
changeset
|
219 |
(* HOL.eq MUST BE "equal" because it's built into ATPs. *) |
|
4abe644fcea5
formerly unnamed infix equality now named HOL.eq
haftmann
parents:
38795
diff
changeset
|
220 |
fun make_fixed_const @{const_name HOL.eq} = "equal"
|
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
221 |
| make_fixed_const c = const_prefix ^ lookup_const c |
|
18411
2d3165a0fb40
No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents:
18409
diff
changeset
|
222 |
|
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
223 |
fun make_fixed_type_const c = type_const_prefix ^ lookup_const c |
|
17150
ce2a1aeb42aa
DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents:
16976
diff
changeset
|
224 |
|
| 17261 | 225 |
fun make_type_class clas = class_prefix ^ ascii_of clas; |
|
17150
ce2a1aeb42aa
DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents:
16976
diff
changeset
|
226 |
|
|
37618
fa57a87f92a0
get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents:
37616
diff
changeset
|
227 |
(* The number of type arguments of a constant, zero if it's monomorphic. For |
|
fa57a87f92a0
get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents:
37616
diff
changeset
|
228 |
(instances of) Skolem pseudoconstants, this information is encoded in the |
|
fa57a87f92a0
get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents:
37616
diff
changeset
|
229 |
constant name. *) |
|
fa57a87f92a0
get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents:
37616
diff
changeset
|
230 |
fun num_type_args thy s = |
|
39896
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
231 |
if String.isPrefix skolem_const_prefix s then |
| 39499 | 232 |
s |> space_explode Long_Name.separator |> List.last |> Int.fromString |> the |
|
37618
fa57a87f92a0
get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents:
37616
diff
changeset
|
233 |
else |
|
fa57a87f92a0
get rid of Skolem cache by performing CNF-conversion after fact selection
blanchet
parents:
37616
diff
changeset
|
234 |
(s, Sign.the_const_type thy s) |> Sign.const_typargs thy |> length |
|
17150
ce2a1aeb42aa
DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents:
16976
diff
changeset
|
235 |
|
|
40259
c0e34371c2e2
prevent type errors because of inconsistent skolem Var types by giving fresh indices to Skolems
blanchet
parents:
40157
diff
changeset
|
236 |
fun new_skolem_var_name_from_const s = |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
237 |
let val ss = s |> space_explode Long_Name.separator in |
|
40259
c0e34371c2e2
prevent type errors because of inconsistent skolem Var types by giving fresh indices to Skolems
blanchet
parents:
40157
diff
changeset
|
238 |
nth ss (length ss - 2) |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
239 |
end |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
240 |
|
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
241 |
|
| 37624 | 242 |
(**** Definitions and functions for FOL clauses for TPTP format output ****) |
|
36169
27b1cc58715e
store nonmangled names along with mangled type names in Sledgehammer for debugging purposes
blanchet
parents:
36168
diff
changeset
|
243 |
|
| 37624 | 244 |
type name = string * string |
| 15347 | 245 |
|
246 |
(**** Isabelle FOL clauses ****) |
|
247 |
||
|
36556
81dc2c20f052
use readable names in "debug" mode for type vars + don't pipe facts using "using" but rather give them directly to metis (works better with type variables)
blanchet
parents:
36493
diff
changeset
|
248 |
(* The first component is the type class; the second is a TVar or TFree. *) |
|
81dc2c20f052
use readable names in "debug" mode for type vars + don't pipe facts using "using" but rather give them directly to metis (works better with type variables)
blanchet
parents:
36493
diff
changeset
|
249 |
datatype type_literal = |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
250 |
TyLitVar of name * name | |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
251 |
TyLitFree of name * name |
| 15347 | 252 |
|
| 24310 | 253 |
(*Make literals for sorted type variables*) |
| 24940 | 254 |
fun sorts_on_typs_aux (_, []) = [] |
255 |
| sorts_on_typs_aux ((x,i), s::ss) = |
|
256 |
let val sorts = sorts_on_typs_aux ((x,i), ss) |
|
|
22643
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
257 |
in |
|
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
258 |
if s = "HOL.type" then sorts |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
259 |
else if i = ~1 then TyLitFree (`make_type_class s, `make_fixed_type_var x) :: sorts |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
260 |
else TyLitVar (`make_type_class s, (make_schematic_type_var (x,i), x)) :: sorts |
|
22643
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
261 |
end; |
|
17150
ce2a1aeb42aa
DFG output now works for untyped rules (ML "ResClause.untyped();")
quigley
parents:
16976
diff
changeset
|
262 |
|
| 24940 | 263 |
fun sorts_on_typs (TFree (a,s)) = sorts_on_typs_aux ((a,~1),s) |
264 |
| sorts_on_typs (TVar (v,s)) = sorts_on_typs_aux (v,s); |
|
265 |
||
|
24937
340523598914
context-based treatment of generalization; also handling TFrees in axiom clauses
paulson
parents:
24322
diff
changeset
|
266 |
(*Given a list of sorted type variables, return a list of type literals.*) |
|
36966
adc11fb3f3aa
generate proper arity declarations for TFrees for SPASS's DFG format;
blanchet
parents:
36692
diff
changeset
|
267 |
fun type_literals_for_types Ts = |
|
adc11fb3f3aa
generate proper arity declarations for TFrees for SPASS's DFG format;
blanchet
parents:
36692
diff
changeset
|
268 |
fold (union (op =)) (map sorts_on_typs Ts) [] |
|
20015
1ffcf4802802
Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents:
19719
diff
changeset
|
269 |
|
|
1ffcf4802802
Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents:
19719
diff
changeset
|
270 |
(** make axiom and conjecture clauses. **) |
|
1ffcf4802802
Literals aren't sorted any more. Output overloaded constants' type var instantiations.
mengj
parents:
19719
diff
changeset
|
271 |
|
| 15347 | 272 |
(**** Isabelle arities ****) |
273 |
||
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
274 |
datatype arLit = |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
275 |
TConsLit of name * name * name list | |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
276 |
TVarLit of name * name |
| 24310 | 277 |
|
| 35865 | 278 |
datatype arity_clause = |
|
38105
373351f5f834
don't choke on synonyms when parsing SPASS's Flotter output + renamings;
blanchet
parents:
38028
diff
changeset
|
279 |
ArityClause of {name: string, conclLit: arLit, premLits: arLit list}
|
| 15347 | 280 |
|
281 |
||
| 18798 | 282 |
fun gen_TVars 0 = [] |
| 41491 | 283 |
| gen_TVars n = ("T_" ^ string_of_int n) :: gen_TVars (n-1);
|
| 15347 | 284 |
|
|
18411
2d3165a0fb40
No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents:
18409
diff
changeset
|
285 |
fun pack_sort(_,[]) = [] |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
286 |
| pack_sort(tvar, "HOL.type"::srt) = pack_sort (tvar, srt) (*IGNORE sort "type"*) |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
287 |
| pack_sort(tvar, cls::srt) = |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
288 |
(`make_type_class cls, (tvar, tvar)) :: pack_sort (tvar, srt) |
| 24310 | 289 |
|
|
18411
2d3165a0fb40
No axiom, arity or classrel clauses contain HOL.type. Negative occurrences are
paulson
parents:
18409
diff
changeset
|
290 |
(*Arity of type constructor tcon :: (arg1,...,argN)res*) |
|
38105
373351f5f834
don't choke on synonyms when parsing SPASS's Flotter output + renamings;
blanchet
parents:
38028
diff
changeset
|
291 |
fun make_axiom_arity_clause (tcons, name, (cls,args)) = |
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
292 |
let |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
293 |
val tvars = gen_TVars (length args) |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
294 |
val tvars_srts = ListPair.zip (tvars, args) |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
295 |
in |
| 39318 | 296 |
ArityClause {name = name,
|
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
297 |
conclLit = TConsLit (`make_type_class cls, |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
298 |
`make_fixed_type_const tcons, |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
299 |
tvars ~~ tvars), |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
300 |
premLits = map TVarLit (union_all (map pack_sort tvars_srts))} |
|
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
301 |
end |
| 15347 | 302 |
|
303 |
||
304 |
(**** Isabelle class relations ****) |
|
305 |
||
| 37925 | 306 |
datatype class_rel_clause = |
|
38105
373351f5f834
don't choke on synonyms when parsing SPASS's Flotter output + renamings;
blanchet
parents:
38028
diff
changeset
|
307 |
ClassRelClause of {name: string, subclass: name, superclass: name}
|
| 24310 | 308 |
|
|
21290
33b6bb5d6ab8
Improvement to classrel clauses: now outputs the minimum needed.
paulson
parents:
21254
diff
changeset
|
309 |
(*Generate all pairs (sub,super) such that sub is a proper subclass of super in theory thy.*) |
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
310 |
fun class_pairs _ [] _ = [] |
|
21432
625797c592b2
Optimized class_pairs for the common case of no subclasses
paulson
parents:
21416
diff
changeset
|
311 |
| class_pairs thy subs supers = |
|
36218
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
312 |
let |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
313 |
val class_less = Sorts.class_less (Sign.classes_of thy) |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
314 |
fun add_super sub super = class_less (sub, super) ? cons (sub, super) |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
315 |
fun add_supers sub = fold (add_super sub) supers |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
316 |
in fold add_supers subs [] end |
| 15347 | 317 |
|
| 37925 | 318 |
fun make_class_rel_clause (sub,super) = |
|
38105
373351f5f834
don't choke on synonyms when parsing SPASS's Flotter output + renamings;
blanchet
parents:
38028
diff
changeset
|
319 |
ClassRelClause {name = sub ^ "_" ^ super,
|
|
37643
f576af716aa6
rewrote the TPTP problem generation code more or less from scratch;
blanchet
parents:
37632
diff
changeset
|
320 |
subclass = `make_type_class sub, |
|
38105
373351f5f834
don't choke on synonyms when parsing SPASS's Flotter output + renamings;
blanchet
parents:
38028
diff
changeset
|
321 |
superclass = `make_type_class super} |
| 15347 | 322 |
|
| 37925 | 323 |
fun make_class_rel_clauses thy subs supers = |
324 |
map make_class_rel_clause (class_pairs thy subs supers); |
|
| 18868 | 325 |
|
326 |
||
327 |
(** Isabelle arities **) |
|
|
17845
1438291d57f0
deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents:
17775
diff
changeset
|
328 |
|
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
329 |
fun arity_clause _ _ (_, []) = [] |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
330 |
| arity_clause seen n (tcons, ("HOL.type",_)::ars) = (*ignore*)
|
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
331 |
arity_clause seen n (tcons,ars) |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
332 |
| arity_clause seen n (tcons, (ar as (class,_)) :: ars) = |
|
36692
54b64d4ad524
farewell to old-style mem infixes -- type inference in situations with mem_int and mem_string should provide enough information to resolve the type of (op =)
haftmann
parents:
36556
diff
changeset
|
333 |
if member (op =) seen class then (*multiple arities for the same tycon, class pair*) |
| 41491 | 334 |
make_axiom_arity_clause (tcons, lookup_const tcons ^ "_" ^ class ^ "_" ^ string_of_int n, ar) :: |
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
335 |
arity_clause seen (n+1) (tcons,ars) |
|
21373
18f519614978
Arity clauses are now produced only for types and type classes actually used.
paulson
parents:
21290
diff
changeset
|
336 |
else |
|
37572
a899f9506f39
more intra-module dependency cleanup + merge "const" and "type_const" tables, since this is safe
blanchet
parents:
37570
diff
changeset
|
337 |
make_axiom_arity_clause (tcons, lookup_const tcons ^ "_" ^ class, ar) :: |
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
338 |
arity_clause (class::seen) n (tcons,ars) |
|
17845
1438291d57f0
deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents:
17775
diff
changeset
|
339 |
|
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
340 |
fun multi_arity_clause [] = [] |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
341 |
| multi_arity_clause ((tcons, ars) :: tc_arlists) = |
|
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
342 |
arity_clause [] 1 (tcons, ars) @ multi_arity_clause tc_arlists |
|
17845
1438291d57f0
deletion of Tools/res_types_sorts; removal of absolute numbering of clauses
paulson
parents:
17775
diff
changeset
|
343 |
|
|
22643
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
344 |
(*Generate all pairs (tycon,class,sorts) such that tycon belongs to class in theory thy |
|
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
345 |
provided its arguments have the corresponding sorts.*) |
|
21373
18f519614978
Arity clauses are now produced only for types and type classes actually used.
paulson
parents:
21290
diff
changeset
|
346 |
fun type_class_pairs thy tycons classes = |
|
18f519614978
Arity clauses are now produced only for types and type classes actually used.
paulson
parents:
21290
diff
changeset
|
347 |
let val alg = Sign.classes_of thy |
|
36218
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
348 |
fun domain_sorts tycon = Sorts.mg_domain alg tycon o single |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
349 |
fun add_class tycon class = |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
350 |
cons (class, domain_sorts tycon class) |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
351 |
handle Sorts.CLASS_ERROR _ => I |
|
0e4a01f3e7d3
get rid of "List.foldl" + add timestamp to SPASS
blanchet
parents:
36170
diff
changeset
|
352 |
fun try_classes tycon = (tycon, fold (add_class tycon) classes []) |
|
21373
18f519614978
Arity clauses are now produced only for types and type classes actually used.
paulson
parents:
21290
diff
changeset
|
353 |
in map try_classes tycons end; |
|
18f519614978
Arity clauses are now produced only for types and type classes actually used.
paulson
parents:
21290
diff
changeset
|
354 |
|
|
22643
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
355 |
(*Proving one (tycon, class) membership may require proving others, so iterate.*) |
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
356 |
fun iter_type_class_pairs _ _ [] = ([], []) |
|
22643
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
357 |
| iter_type_class_pairs thy tycons classes = |
|
bc3bb8e9594a
Improved and simplified the treatment of classrel/arity clauses
paulson
parents:
22383
diff
changeset
|
358 |
let val cpairs = type_class_pairs thy tycons classes |
| 33040 | 359 |
val newclasses = union_all (union_all (union_all (map (map #2 o #2) cpairs))) |
360 |
|> subtract (op =) classes |> subtract (op =) HOLogic.typeS |
|
| 24310 | 361 |
val (classes', cpairs') = iter_type_class_pairs thy tycons newclasses |
| 33042 | 362 |
in (union (op =) classes' classes, union (op =) cpairs' cpairs) end; |
| 24310 | 363 |
|
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
364 |
fun make_arity_clauses thy tycons classes = |
| 24310 | 365 |
let val (classes', cpairs) = iter_type_class_pairs thy tycons classes |
|
37498
b426cbdb5a23
removed Sledgehammer's support for the DFG syntax;
blanchet
parents:
37479
diff
changeset
|
366 |
in (classes', multi_arity_clause cpairs) end; |
| 18863 | 367 |
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
368 |
datatype combtyp = |
| 37924 | 369 |
CombTVar of name | |
370 |
CombTFree of name | |
|
371 |
CombType of name * combtyp list |
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
372 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
373 |
datatype combterm = |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
374 |
CombConst of name * combtyp * combtyp list (* Const and Free *) | |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
375 |
CombVar of name * combtyp | |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
376 |
CombApp of combterm * combterm |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
377 |
|
| 37923 | 378 |
datatype fol_literal = FOLLiteral of bool * combterm |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
379 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
380 |
(*********************************************************************) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
381 |
(* convert a clause with type Term.term to a clause with type clause *) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
382 |
(*********************************************************************) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
383 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
384 |
(*Result of a function type; no need to check that the argument type matches.*) |
|
42544
75cb06eee990
reimplemented the hAPP introduction code so that it's done earlier, when the types are still available
blanchet
parents:
42532
diff
changeset
|
385 |
fun dest_combfun (CombType (_, [ty1, ty2])) = (ty1, ty2) |
|
75cb06eee990
reimplemented the hAPP introduction code so that it's done earlier, when the types are still available
blanchet
parents:
42532
diff
changeset
|
386 |
| dest_combfun _ = raise Fail "non-function type" |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
387 |
|
|
37994
b04307085a09
make TPTP generator accept full first-order formulas
blanchet
parents:
37992
diff
changeset
|
388 |
fun combtyp_of (CombConst (_, tp, _)) = tp |
|
b04307085a09
make TPTP generator accept full first-order formulas
blanchet
parents:
37992
diff
changeset
|
389 |
| combtyp_of (CombVar (_, tp)) = tp |
|
42544
75cb06eee990
reimplemented the hAPP introduction code so that it's done earlier, when the types are still available
blanchet
parents:
42532
diff
changeset
|
390 |
| combtyp_of (CombApp (t1, _)) = snd (dest_combfun (combtyp_of t1)) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
391 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
392 |
(*gets the head of a combinator application, along with the list of arguments*) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
393 |
fun strip_combterm_comb u = |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
394 |
let fun stripc (CombApp(t,u), ts) = stripc (t, u::ts) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
395 |
| stripc x = x |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
396 |
in stripc(u,[]) end |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
397 |
|
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
398 |
fun combtyp_and_sorts_from_type (Type (a, Ts)) = |
|
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
399 |
let val (tys, ts) = combtyps_and_sorts_from_types Ts in |
|
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
400 |
(CombType (`make_fixed_type_const a, tys), ts) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
401 |
end |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
402 |
| combtyp_and_sorts_from_type (tp as TFree (a, _)) = |
|
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
403 |
(CombTFree (`make_fixed_type_var a), [tp]) |
|
42532
7849e1d10584
no point in keeping indices in Sledgehammer readable var names, since these are disambiguated anyway
blanchet
parents:
42531
diff
changeset
|
404 |
| combtyp_and_sorts_from_type (tp as TVar (x as (s, _), _)) = |
|
7849e1d10584
no point in keeping indices in Sledgehammer readable var names, since these are disambiguated anyway
blanchet
parents:
42531
diff
changeset
|
405 |
(CombTVar (make_schematic_type_var x, s), [tp]) |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
406 |
and combtyps_and_sorts_from_types Ts = |
|
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
407 |
let val (tys, ts) = ListPair.unzip (map combtyp_and_sorts_from_type Ts) in |
|
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
408 |
(tys, union_all ts) |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
409 |
end |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
410 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
411 |
(* same as above, but no gathering of sort information *) |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
412 |
fun combtyp_from_typ (Type (a, Ts)) = |
|
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
413 |
CombType (`make_fixed_type_const a, map combtyp_from_typ Ts) |
|
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
414 |
| combtyp_from_typ (TFree (a, _)) = CombTFree (`make_fixed_type_var a) |
|
42532
7849e1d10584
no point in keeping indices in Sledgehammer readable var names, since these are disambiguated anyway
blanchet
parents:
42531
diff
changeset
|
415 |
| combtyp_from_typ (TVar (x as (s, _), _)) = |
|
7849e1d10584
no point in keeping indices in Sledgehammer readable var names, since these are disambiguated anyway
blanchet
parents:
42531
diff
changeset
|
416 |
CombTVar (make_schematic_type_var x, s) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
417 |
|
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
418 |
fun new_skolem_const_name s num_T_args = |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
419 |
[new_skolem_const_prefix, s, string_of_int num_T_args] |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
420 |
|> space_implode Long_Name.separator |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
421 |
|
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
422 |
(* Converts a term (with combinators) into a combterm. Also accumulates sort |
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
423 |
infomation. *) |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
424 |
fun combterm_from_term thy bs (P $ Q) = |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
425 |
let |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
426 |
val (P', tsP) = combterm_from_term thy bs P |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
427 |
val (Q', tsQ) = combterm_from_term thy bs Q |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
428 |
in (CombApp (P', Q'), union (op =) tsP tsQ) end |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
429 |
| combterm_from_term thy _ (Const (c, T)) = |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
430 |
let |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
431 |
val (tp, ts) = combtyp_and_sorts_from_type T |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
432 |
val tvar_list = |
|
39896
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
433 |
(if String.isPrefix old_skolem_const_prefix c then |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
434 |
[] |> Term.add_tvarsT T |> map TVar |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
435 |
else |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
436 |
(c, T) |> Sign.const_typargs thy) |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
437 |
|> map combtyp_from_typ |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
438 |
val c' = CombConst (`make_fixed_const c, tp, tvar_list) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
439 |
in (c',ts) end |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
440 |
| combterm_from_term _ _ (Free (v, T)) = |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
441 |
let val (tp, ts) = combtyp_and_sorts_from_type T |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
442 |
val v' = CombConst (`make_fixed_var v, tp, []) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
443 |
in (v',ts) end |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
444 |
| combterm_from_term _ _ (Var (v as (s, _), T)) = |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
445 |
let |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
446 |
val (tp, ts) = combtyp_and_sorts_from_type T |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
447 |
val v' = |
| 39890 | 448 |
if String.isPrefix Meson_Clausify.new_skolem_var_prefix s then |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
449 |
let |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
450 |
val tys = T |> strip_type |> swap |> op :: |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
451 |
val s' = new_skolem_const_name s (length tys) |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
452 |
in CombConst (`make_fixed_const s', tp, map combtyp_from_typ tys) end |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
453 |
else |
|
42532
7849e1d10584
no point in keeping indices in Sledgehammer readable var names, since these are disambiguated anyway
blanchet
parents:
42531
diff
changeset
|
454 |
CombVar ((make_schematic_var v, s), tp) |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
455 |
in (v', ts) end |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
456 |
| combterm_from_term _ bs (Bound j) = |
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
457 |
let |
|
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
458 |
val (s, T) = nth bs j |
|
42531
a462dbaa584f
added more rudimentary type support to Sledgehammer's ATP encoding
blanchet
parents:
42361
diff
changeset
|
459 |
val (tp, ts) = combtyp_and_sorts_from_type T |
|
37995
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
460 |
val v' = CombConst (`make_bound_var s, tp, []) |
|
06f02b15ef8a
generate full first-order formulas (FOF) in Sledgehammer
blanchet
parents:
37994
diff
changeset
|
461 |
in (v', ts) end |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
462 |
| combterm_from_term _ _ (Abs _) = raise Fail "HOL clause: Abs" |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
463 |
|
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
464 |
fun predicate_of thy ((@{const Not} $ P), pos) = predicate_of thy (P, not pos)
|
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
465 |
| predicate_of thy (t, pos) = |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
466 |
(combterm_from_term thy [] (Envir.eta_contract t), pos) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
467 |
|
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
468 |
fun literals_of_term1 args thy (@{const Trueprop} $ P) =
|
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
469 |
literals_of_term1 args thy P |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
470 |
| literals_of_term1 args thy (@{const HOL.disj} $ P $ Q) =
|
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
471 |
literals_of_term1 (literals_of_term1 args thy P) thy Q |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
472 |
| literals_of_term1 (lits, ts) thy P = |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
473 |
let val ((pred, ts'), pol) = predicate_of thy (P, true) in |
| 37923 | 474 |
(FOLLiteral (pol, pred) :: lits, union (op =) ts ts') |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
475 |
end |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
476 |
val literals_of_term = literals_of_term1 ([], []) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
477 |
|
|
39896
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
478 |
fun old_skolem_const_name i j num_T_args = |
|
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
479 |
old_skolem_const_prefix ^ Long_Name.separator ^ |
| 41491 | 480 |
(space_implode Long_Name.separator (map string_of_int [i, j, num_T_args])) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
481 |
|
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
482 |
fun conceal_old_skolem_terms i old_skolems t = |
|
39953
aa54f347e5e2
hide uninteresting MESON/Metis constants and facts and remove "meson_" prefix to (now hidden) fact names
blanchet
parents:
39946
diff
changeset
|
483 |
if exists_Const (curry (op =) @{const_name Meson.skolem} o fst) t then
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
484 |
let |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
485 |
fun aux old_skolems |
|
39953
aa54f347e5e2
hide uninteresting MESON/Metis constants and facts and remove "meson_" prefix to (now hidden) fact names
blanchet
parents:
39946
diff
changeset
|
486 |
(t as (Const (@{const_name Meson.skolem}, Type (_, [_, T])) $ _)) =
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
487 |
let |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
488 |
val (old_skolems, s) = |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
489 |
if i = ~1 then |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
490 |
(old_skolems, @{const_name undefined})
|
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
491 |
else case AList.find (op aconv) old_skolems t of |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
492 |
s :: _ => (old_skolems, s) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
493 |
| [] => |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
494 |
let |
|
39896
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
495 |
val s = old_skolem_const_name i (length old_skolems) |
|
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
496 |
(length (Term.add_tvarsT T [])) |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
497 |
in ((s, t) :: old_skolems, s) end |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
498 |
in (old_skolems, Const (s, T)) end |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
499 |
| aux old_skolems (t1 $ t2) = |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
500 |
let |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
501 |
val (old_skolems, t1) = aux old_skolems t1 |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
502 |
val (old_skolems, t2) = aux old_skolems t2 |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
503 |
in (old_skolems, t1 $ t2) end |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
504 |
| aux old_skolems (Abs (s, T, t')) = |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
505 |
let val (old_skolems, t') = aux old_skolems t' in |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
506 |
(old_skolems, Abs (s, T, t')) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
507 |
end |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
508 |
| aux old_skolems t = (old_skolems, t) |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
509 |
in aux old_skolems t end |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
510 |
else |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
511 |
(old_skolems, t) |
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
512 |
|
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
513 |
fun reveal_old_skolem_terms old_skolems = |
| 37632 | 514 |
map_aterms (fn t as Const (s, _) => |
|
39896
13b3a2ba9ea7
encode axiom number and cluster number in all zapped quantifiers to help discharging new skolemizer assumptions
blanchet
parents:
39890
diff
changeset
|
515 |
if String.isPrefix old_skolem_const_prefix s then |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
516 |
AList.lookup (op =) old_skolems s |> the |
| 37632 | 517 |
|> map_types Type_Infer.paramify_vars |
518 |
else |
|
519 |
t |
|
520 |
| t => t) |
|
521 |
||
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
522 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
523 |
(***************************************************************) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
524 |
(* Type Classes Present in the Axiom or Conjecture Clauses *) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
525 |
(***************************************************************) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
526 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
527 |
fun set_insert (x, s) = Symtab.update (x, ()) s |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
528 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
529 |
fun add_classes (sorts, cset) = List.foldl set_insert cset (flat sorts) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
530 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
531 |
(*Remove this trivial type class*) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
532 |
fun delete_type cset = Symtab.delete_safe (the_single @{sort HOL.type}) cset;
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
533 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
534 |
fun tfree_classes_of_terms ts = |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
535 |
let val sorts_list = map (map #2 o OldTerm.term_tfrees) ts |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
536 |
in Symtab.keys (delete_type (List.foldl add_classes Symtab.empty sorts_list)) end; |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
537 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
538 |
fun tvar_classes_of_terms ts = |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
539 |
let val sorts_list = map (map #2 o OldTerm.term_tvars) ts |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
540 |
in Symtab.keys (delete_type (List.foldl add_classes Symtab.empty sorts_list)) end; |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
541 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
542 |
(*fold type constructors*) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
543 |
fun fold_type_consts f (Type (a, Ts)) x = fold (fold_type_consts f) Ts (f (a,x)) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
544 |
| fold_type_consts _ _ x = x; |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
545 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
546 |
(*Type constructors used to instantiate overloaded constants are the only ones needed.*) |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
547 |
fun add_type_consts_in_term thy = |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
548 |
let |
| 38748 | 549 |
fun aux (Const x) = |
550 |
fold (fold_type_consts set_insert) (Sign.const_typargs thy x) |
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
551 |
| aux (Abs (_, _, u)) = aux u |
|
39953
aa54f347e5e2
hide uninteresting MESON/Metis constants and facts and remove "meson_" prefix to (now hidden) fact names
blanchet
parents:
39946
diff
changeset
|
552 |
| aux (Const (@{const_name Meson.skolem}, _) $ _) = I
|
|
37577
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
553 |
| aux (t $ u) = aux t #> aux u |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
554 |
| aux _ = I |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
555 |
in aux end |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
556 |
|
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
557 |
fun type_consts_of_terms thy ts = |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
558 |
Symtab.keys (fold (add_type_consts_in_term thy) ts Symtab.empty); |
|
5379f41a1322
merge "Sledgehammer_{F,H}OL_Clause", as requested by a FIXME
blanchet
parents:
37575
diff
changeset
|
559 |
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
560 |
(* ------------------------------------------------------------------------- *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
561 |
(* HOL to FOL (Isabelle to Metis) *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
562 |
(* ------------------------------------------------------------------------- *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
563 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
564 |
datatype mode = FO | HO | FT (* first-order, higher-order, fully-typed *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
565 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
566 |
fun string_of_mode FO = "FO" |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
567 |
| string_of_mode HO = "HO" |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
568 |
| string_of_mode FT = "FT" |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
569 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
570 |
fun fn_isa_to_met_sublevel "equal" = "=" (* FIXME: "c_fequal" *) |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
571 |
| fn_isa_to_met_sublevel "c_False" = "c_fFalse" |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
572 |
| fn_isa_to_met_sublevel "c_True" = "c_fTrue" |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
573 |
| fn_isa_to_met_sublevel "c_Not" = "c_fNot" |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
574 |
| fn_isa_to_met_sublevel "c_conj" = "c_fconj" |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
575 |
| fn_isa_to_met_sublevel "c_disj" = "c_fdisj" |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
576 |
| fn_isa_to_met_sublevel "c_implies" = "c_fimplies" |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
577 |
| fn_isa_to_met_sublevel x = x |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
578 |
fun fn_isa_to_met_toplevel "equal" = "=" |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
579 |
| fn_isa_to_met_toplevel x = x |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
580 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
581 |
fun metis_lit b c args = (b, (c, args)); |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
582 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
583 |
fun metis_term_from_combtyp (CombTVar (s, _)) = Metis_Term.Var s |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
584 |
| metis_term_from_combtyp (CombTFree (s, _)) = Metis_Term.Fn (s, []) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
585 |
| metis_term_from_combtyp (CombType ((s, _), tps)) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
586 |
Metis_Term.Fn (s, map metis_term_from_combtyp tps); |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
587 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
588 |
(*These two functions insert type literals before the real literals. That is the |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
589 |
opposite order from TPTP linkup, but maybe OK.*) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
590 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
591 |
fun hol_term_to_fol_FO tm = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
592 |
case strip_combterm_comb tm of |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
593 |
(CombConst ((c, _), _, tys), tms) => |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
594 |
let val tyargs = map metis_term_from_combtyp tys |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
595 |
val args = map hol_term_to_fol_FO tms |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
596 |
in Metis_Term.Fn (c, tyargs @ args) end |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
597 |
| (CombVar ((v, _), _), []) => Metis_Term.Var v |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
598 |
| _ => raise Fail "non-first-order combterm" |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
599 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
600 |
fun hol_term_to_fol_HO (CombConst ((a, _), _, tylist)) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
601 |
Metis_Term.Fn (fn_isa_to_met_sublevel a, map metis_term_from_combtyp tylist) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
602 |
| hol_term_to_fol_HO (CombVar ((s, _), _)) = Metis_Term.Var s |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
603 |
| hol_term_to_fol_HO (CombApp (tm1, tm2)) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
604 |
Metis_Term.Fn (".", map hol_term_to_fol_HO [tm1, tm2]);
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
605 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
606 |
(*The fully-typed translation, to avoid type errors*) |
|
41138
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
607 |
fun tag_with_type tm ty = |
|
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
608 |
Metis_Term.Fn (type_tag_name, [tm, metis_term_from_combtyp ty]) |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
609 |
|
|
41138
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
610 |
fun hol_term_to_fol_FT (CombVar ((s, _), ty)) = |
|
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
611 |
tag_with_type (Metis_Term.Var s) ty |
|
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
612 |
| hol_term_to_fol_FT (CombConst ((a, _), ty, _)) = |
|
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
613 |
tag_with_type (Metis_Term.Fn (fn_isa_to_met_sublevel a, [])) ty |
|
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
614 |
| hol_term_to_fol_FT (tm as CombApp (tm1,tm2)) = |
|
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
615 |
tag_with_type (Metis_Term.Fn (".", map hol_term_to_fol_FT [tm1, tm2]))
|
|
eb80538166b6
implemented partially-typed "tags" type encoding
blanchet
parents:
40259
diff
changeset
|
616 |
(combtyp_of tm) |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
617 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
618 |
fun hol_literal_to_fol FO (FOLLiteral (pos, tm)) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
619 |
let val (CombConst((p, _), _, tys), tms) = strip_combterm_comb tm |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
620 |
val tylits = if p = "equal" then [] else map metis_term_from_combtyp tys |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
621 |
val lits = map hol_term_to_fol_FO tms |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
622 |
in metis_lit pos (fn_isa_to_met_toplevel p) (tylits @ lits) end |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
623 |
| hol_literal_to_fol HO (FOLLiteral (pos, tm)) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
624 |
(case strip_combterm_comb tm of |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
625 |
(CombConst(("equal", _), _, _), tms) =>
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
626 |
metis_lit pos "=" (map hol_term_to_fol_HO tms) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
627 |
| _ => metis_lit pos "{}" [hol_term_to_fol_HO tm]) (*hBOOL*)
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
628 |
| hol_literal_to_fol FT (FOLLiteral (pos, tm)) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
629 |
(case strip_combterm_comb tm of |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
630 |
(CombConst(("equal", _), _, _), tms) =>
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
631 |
metis_lit pos "=" (map hol_term_to_fol_FT tms) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
632 |
| _ => metis_lit pos "{}" [hol_term_to_fol_FT tm]) (*hBOOL*);
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
633 |
|
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
634 |
fun literals_of_hol_term thy mode t = |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
635 |
let val (lits, types_sorts) = literals_of_term thy t in |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
636 |
(map (hol_literal_to_fol mode) lits, types_sorts) |
|
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
637 |
end |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
638 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
639 |
(*Sign should be "true" for conjecture type constraints, "false" for type lits in clauses.*) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
640 |
fun metis_of_type_literals pos (TyLitVar ((s, _), (s', _))) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
641 |
metis_lit pos s [Metis_Term.Var s'] |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
642 |
| metis_of_type_literals pos (TyLitFree ((s, _), (s', _))) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
643 |
metis_lit pos s [Metis_Term.Fn (s',[])] |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
644 |
|
| 42352 | 645 |
fun has_default_sort _ (TVar _) = false |
646 |
| has_default_sort ctxt (TFree (x, s)) = |
|
647 |
(s = the_default [] (Variable.def_sort ctxt (x, ~1))); |
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
648 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
649 |
fun metis_of_tfree tf = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
650 |
Metis_Thm.axiom (Metis_LiteralSet.singleton (metis_of_type_literals true tf)); |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
651 |
|
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
652 |
fun hol_thm_to_fol is_conjecture ctxt type_lits mode j old_skolems th = |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
653 |
let |
| 42361 | 654 |
val thy = Proof_Context.theory_of ctxt |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
655 |
val (old_skolems, (mlits, types_sorts)) = |
| 39888 | 656 |
th |> prop_of |> Logic.strip_imp_concl |
657 |
|> conceal_old_skolem_terms j old_skolems |
|
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
658 |
||> (HOLogic.dest_Trueprop #> literals_of_hol_term thy mode) |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
659 |
in |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
660 |
if is_conjecture then |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
661 |
(Metis_Thm.axiom (Metis_LiteralSet.fromList mlits), |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
662 |
type_literals_for_types types_sorts, old_skolems) |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
663 |
else |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
664 |
let |
| 42352 | 665 |
val tylits = types_sorts |> filter_out (has_default_sort ctxt) |
666 |
|> type_literals_for_types |
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
667 |
val mtylits = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
668 |
if type_lits then map (metis_of_type_literals false) tylits else [] |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
669 |
in |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
670 |
(Metis_Thm.axiom (Metis_LiteralSet.fromList(mtylits @ mlits)), [], |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
671 |
old_skolems) |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
672 |
end |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
673 |
end; |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
674 |
|
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
675 |
val metis_helpers = |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
676 |
[("c_COMBI", (false, @{thms Meson.COMBI_def})),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
677 |
("c_COMBK", (false, @{thms Meson.COMBK_def})),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
678 |
("c_COMBB", (false, @{thms Meson.COMBB_def})),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
679 |
("c_COMBC", (false, @{thms Meson.COMBC_def})),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
680 |
("c_COMBS", (false, @{thms Meson.COMBS_def})),
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
681 |
("c_fequal",
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
682 |
(false, @{thms fequal_def [THEN Meson.iff_to_disjD, THEN conjunct1]
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
683 |
fequal_def [THEN Meson.iff_to_disjD, THEN conjunct2]})), |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
684 |
("c_fFalse", (true, [@{lemma "x = fTrue | x = fFalse"
|
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
685 |
by (unfold fFalse_def fTrue_def) fast}])), |
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
686 |
("c_fFalse", (false, [@{lemma "~ fFalse" by (unfold fFalse_def) fast}])),
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
687 |
("c_fTrue", (true, [@{lemma "x = fTrue | x = fFalse"
|
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
688 |
by (unfold fFalse_def fTrue_def) fast}])), |
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
689 |
("c_fTrue", (false, [@{lemma "fTrue" by (unfold fTrue_def) fast}])),
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
690 |
("c_fNot",
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
691 |
(false, @{thms fNot_def [THEN Meson.iff_to_disjD, THEN conjunct1]
|
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
692 |
fNot_def [THEN Meson.iff_to_disjD, THEN conjunct2]})), |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
693 |
("c_fconj",
|
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
694 |
(false, @{lemma "~ P | ~ Q | fconj P Q" "~ fconj P Q | P" "~ fconj P Q | Q"
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
695 |
by (unfold fconj_def) fast+})), |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
696 |
("c_fdisj",
|
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
697 |
(false, @{lemma "~ P | fdisj P Q" "~ Q | fdisj P Q" "~ fdisj P Q | P | Q"
|
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
698 |
by (unfold fdisj_def) fast+})), |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
699 |
("c_fimplies",
|
| 41156 | 700 |
(false, @{lemma "P | fimplies P Q" "~ Q | fimplies P Q"
|
701 |
"~ fimplies P Q | ~ P | Q" |
|
702 |
by (unfold fimplies_def) fast+})), |
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
703 |
("c_If", (true, @{thms if_True if_False True_or_False})) (* FIXME *)]
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
704 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
705 |
(* ------------------------------------------------------------------------- *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
706 |
(* Logic maps manage the interface between HOL and first-order logic. *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
707 |
(* ------------------------------------------------------------------------- *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
708 |
|
| 40157 | 709 |
type metis_problem = |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
710 |
{axioms: (Metis_Thm.thm * thm) list,
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
711 |
tfrees: type_literal list, |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
712 |
old_skolems: (string * term) list} |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
713 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
714 |
fun is_quasi_fol_clause thy = |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
715 |
Meson.is_fol_term thy o snd o conceal_old_skolem_terms ~1 [] o prop_of |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
716 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
717 |
(*Extract TFree constraints from context to include as conjecture clauses*) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
718 |
fun init_tfrees ctxt = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
719 |
let fun add ((a,i),s) Ts = if i = ~1 then TFree(a,s) :: Ts else Ts in |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
720 |
Vartab.fold add (#2 (Variable.constraints_of ctxt)) [] |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
721 |
|> type_literals_for_types |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
722 |
end; |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
723 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
724 |
(*Insert non-logical axioms corresponding to all accumulated TFrees*) |
| 40157 | 725 |
fun add_tfrees {axioms, tfrees, old_skolems} : metis_problem =
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
726 |
{axioms = map (rpair TrueI o metis_of_tfree) (distinct (op =) tfrees) @
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
727 |
axioms, |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
728 |
tfrees = tfrees, old_skolems = old_skolems} |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
729 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
730 |
(*transform isabelle type / arity clause to metis clause *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
731 |
fun add_type_thm [] lmap = lmap |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
732 |
| add_type_thm ((ith, mth) :: cls) {axioms, tfrees, old_skolems} =
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
733 |
add_type_thm cls {axioms = (mth, ith) :: axioms, tfrees = tfrees,
|
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
734 |
old_skolems = old_skolems} |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
735 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
736 |
fun const_in_metis c (pred, tm_list) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
737 |
let |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
738 |
fun in_mterm (Metis_Term.Var _) = false |
| 41156 | 739 |
| in_mterm (Metis_Term.Fn (nm, tm_list)) = |
740 |
c = nm orelse exists in_mterm tm_list |
|
741 |
in c = pred orelse exists in_mterm tm_list end |
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
742 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
743 |
(* ARITY CLAUSE *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
744 |
fun m_arity_cls (TConsLit ((c, _), (t, _), args)) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
745 |
metis_lit true c [Metis_Term.Fn(t, map (Metis_Term.Var o fst) args)] |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
746 |
| m_arity_cls (TVarLit ((c, _), (s, _))) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
747 |
metis_lit false c [Metis_Term.Var s] |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
748 |
(*TrueI is returned as the Isabelle counterpart because there isn't any.*) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
749 |
fun arity_cls (ArityClause {conclLit, premLits, ...}) =
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
750 |
(TrueI, |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
751 |
Metis_Thm.axiom (Metis_LiteralSet.fromList (map m_arity_cls (conclLit :: premLits)))); |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
752 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
753 |
(* CLASSREL CLAUSE *) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
754 |
fun m_class_rel_cls (subclass, _) (superclass, _) = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
755 |
[metis_lit false subclass [Metis_Term.Var "T"], metis_lit true superclass [Metis_Term.Var "T"]]; |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
756 |
fun class_rel_cls (ClassRelClause {subclass, superclass, ...}) =
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
757 |
(TrueI, Metis_Thm.axiom (Metis_LiteralSet.fromList (m_class_rel_cls subclass superclass))); |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
758 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
759 |
fun type_ext thy tms = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
760 |
let val subs = tfree_classes_of_terms tms |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
761 |
val supers = tvar_classes_of_terms tms |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
762 |
and tycons = type_consts_of_terms thy tms |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
763 |
val (supers', arity_clauses) = make_arity_clauses thy tycons supers |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
764 |
val class_rel_clauses = make_class_rel_clauses thy subs supers' |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
765 |
in map class_rel_cls class_rel_clauses @ map arity_cls arity_clauses |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
766 |
end; |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
767 |
|
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
768 |
(* Function to generate metis clauses, including comb and type clauses *) |
| 40157 | 769 |
fun prepare_metis_problem mode0 ctxt type_lits cls thss = |
| 42361 | 770 |
let val thy = Proof_Context.theory_of ctxt |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
771 |
(*The modes FO and FT are sticky. HO can be downgraded to FO.*) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
772 |
fun set_mode FO = FO |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
773 |
| set_mode HO = |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
774 |
if forall (forall (is_quasi_fol_clause thy)) (cls :: thss) then FO |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
775 |
else HO |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
776 |
| set_mode FT = FT |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
777 |
val mode = set_mode mode0 |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
778 |
(*transform isabelle clause to metis clause *) |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
779 |
fun add_thm is_conjecture (isa_ith, metis_ith) |
| 40157 | 780 |
{axioms, tfrees, old_skolems} : metis_problem =
|
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
781 |
let |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
782 |
val (mth, tfree_lits, old_skolems) = |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
783 |
hol_thm_to_fol is_conjecture ctxt type_lits mode (length axioms) |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
784 |
old_skolems metis_ith |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
785 |
in |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
786 |
{axioms = (mth, isa_ith) :: axioms,
|
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
787 |
tfrees = union (op =) tfree_lits tfrees, old_skolems = old_skolems} |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
788 |
end; |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
789 |
val lmap = {axioms = [], tfrees = init_tfrees ctxt, old_skolems = []}
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
790 |
|> fold (add_thm true o `Meson.make_meta_clause) cls |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
791 |
|> add_tfrees |
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
792 |
|> fold (fold (add_thm false o `Meson.make_meta_clause)) thss |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
793 |
val clause_lists = map (Metis_Thm.clause o #1) (#axioms lmap) |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
794 |
fun is_used c = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
795 |
exists (Metis_LiteralSet.exists (const_in_metis c o #2)) clause_lists |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
796 |
val lmap = |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
797 |
if mode = FO then |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
798 |
lmap |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
799 |
else |
|
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
800 |
let |
| 41156 | 801 |
val fdefs = @{thms fFalse_def fTrue_def fNot_def fconj_def fdisj_def
|
802 |
fimplies_def fequal_def} |
|
|
41139
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
803 |
val prepare_helper = |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
804 |
zero_var_indexes |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
805 |
#> `(Meson.make_meta_clause |
|
cb1cbae54dbf
add Metis support for higher-order propositional reasoning
blanchet
parents:
41138
diff
changeset
|
806 |
#> rewrite_rule (map safe_mk_meta_eq fdefs)) |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
807 |
val helper_ths = |
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
808 |
metis_helpers |
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
809 |
|> filter (is_used o fst) |
|
42107
a6725f293377
clean up new Skolemizer code -- some old hacks are no longer necessary
blanchet
parents:
42098
diff
changeset
|
810 |
|> maps (fn (_, (needs_full_types, thms)) => |
|
41140
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
811 |
if needs_full_types andalso mode <> FT then [] |
|
9c68004b8c9d
added Sledgehammer support for higher-order propositional reasoning
blanchet
parents:
41139
diff
changeset
|
812 |
else map prepare_helper thms) |
|
40145
04a05b2a7a36
no need to encode theorem number twice in skolem names
blanchet
parents:
39962
diff
changeset
|
813 |
in lmap |> fold (add_thm false) helper_ths end |
|
39886
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
814 |
in |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
815 |
(mode, add_type_thm (type_ext thy (maps (map prop_of) (cls :: thss))) lmap) |
|
8a9f0c97d550
first step towards a new skolemizer that doesn't require "Eps"
blanchet
parents:
39720
diff
changeset
|
816 |
end |
|
39497
fa16349939b7
complete refactoring of Metis along the lines of Sledgehammer
blanchet
parents:
39494
diff
changeset
|
817 |
|
| 15347 | 818 |
end; |