blanchet@48250
|
1 |
(* Title: HOL/Tools/Sledgehammer/sledgehammer_fact.ML
|
blanchet@48250
|
2 |
Author: Jia Meng, Cambridge University Computer Laboratory and NICTA
|
blanchet@48250
|
3 |
Author: Jasmin Blanchette, TU Muenchen
|
blanchet@48250
|
4 |
|
blanchet@48250
|
5 |
Sledgehammer fact handling.
|
blanchet@48250
|
6 |
*)
|
blanchet@48250
|
7 |
|
blanchet@48250
|
8 |
signature SLEDGEHAMMER_FACT =
|
blanchet@48250
|
9 |
sig
|
blanchet@48250
|
10 |
type status = ATP_Problem_Generate.status
|
blanchet@48250
|
11 |
type stature = ATP_Problem_Generate.stature
|
blanchet@48250
|
12 |
|
blanchet@48250
|
13 |
type relevance_override =
|
blanchet@48250
|
14 |
{add : (Facts.ref * Attrib.src list) list,
|
blanchet@48250
|
15 |
del : (Facts.ref * Attrib.src list) list,
|
blanchet@48250
|
16 |
only : bool}
|
blanchet@48250
|
17 |
|
blanchet@48250
|
18 |
val ignore_no_atp : bool Config.T
|
blanchet@48250
|
19 |
val instantiate_inducts : bool Config.T
|
blanchet@48250
|
20 |
val no_relevance_override : relevance_override
|
blanchet@48250
|
21 |
val fact_from_ref :
|
blanchet@48250
|
22 |
Proof.context -> unit Symtab.table -> thm list -> status Termtab.table
|
blanchet@48250
|
23 |
-> Facts.ref * Attrib.src list -> ((string * stature) * thm) list
|
blanchet@48250
|
24 |
val all_facts :
|
blanchet@48250
|
25 |
Proof.context -> bool -> 'a Symtab.table -> bool -> thm list
|
blanchet@48250
|
26 |
-> thm list -> status Termtab.table
|
blanchet@48250
|
27 |
-> (((unit -> string) * stature) * thm) list
|
blanchet@48250
|
28 |
val clasimpset_rule_table_of : Proof.context -> status Termtab.table
|
blanchet@48250
|
29 |
val maybe_instantiate_inducts :
|
blanchet@48250
|
30 |
Proof.context -> term list -> term -> (((unit -> string) * 'a) * thm) list
|
blanchet@48250
|
31 |
-> (((unit -> string) * 'a) * thm) list
|
blanchet@48250
|
32 |
val maybe_filter_no_atps : Proof.context -> ('a * thm) list -> ('a * thm) list
|
blanchet@48250
|
33 |
val nearly_all_facts :
|
blanchet@48250
|
34 |
Proof.context -> bool -> relevance_override -> thm list -> term list -> term
|
blanchet@48250
|
35 |
-> (((unit -> string) * stature) * thm) list
|
blanchet@48250
|
36 |
end;
|
blanchet@48250
|
37 |
|
blanchet@48250
|
38 |
structure Sledgehammer_Fact : SLEDGEHAMMER_FACT =
|
blanchet@48250
|
39 |
struct
|
blanchet@48250
|
40 |
|
blanchet@48250
|
41 |
open ATP_Problem_Generate
|
blanchet@48250
|
42 |
open Metis_Tactic
|
blanchet@48250
|
43 |
open Sledgehammer_Util
|
blanchet@48250
|
44 |
|
blanchet@48250
|
45 |
type relevance_override =
|
blanchet@48250
|
46 |
{add : (Facts.ref * Attrib.src list) list,
|
blanchet@48250
|
47 |
del : (Facts.ref * Attrib.src list) list,
|
blanchet@48250
|
48 |
only : bool}
|
blanchet@48250
|
49 |
|
blanchet@48250
|
50 |
val sledgehammer_prefix = "Sledgehammer" ^ Long_Name.separator
|
blanchet@48250
|
51 |
|
blanchet@48250
|
52 |
(* experimental features *)
|
blanchet@48250
|
53 |
val ignore_no_atp =
|
blanchet@48250
|
54 |
Attrib.setup_config_bool @{binding sledgehammer_ignore_no_atp} (K false)
|
blanchet@48250
|
55 |
val instantiate_inducts =
|
blanchet@48250
|
56 |
Attrib.setup_config_bool @{binding sledgehammer_instantiate_inducts} (K false)
|
blanchet@48250
|
57 |
|
blanchet@48250
|
58 |
val no_relevance_override = {add = [], del = [], only = false}
|
blanchet@48250
|
59 |
|
blanchet@48250
|
60 |
fun needs_quoting reserved s =
|
blanchet@48250
|
61 |
Symtab.defined reserved s orelse
|
blanchet@48250
|
62 |
exists (not o Lexicon.is_identifier) (Long_Name.explode s)
|
blanchet@48250
|
63 |
|
blanchet@48250
|
64 |
fun make_name reserved multi j name =
|
blanchet@48250
|
65 |
(name |> needs_quoting reserved name ? quote) ^
|
blanchet@48250
|
66 |
(if multi then "(" ^ string_of_int j ^ ")" else "")
|
blanchet@48250
|
67 |
|
blanchet@48250
|
68 |
fun explode_interval _ (Facts.FromTo (i, j)) = i upto j
|
blanchet@48250
|
69 |
| explode_interval max (Facts.From i) = i upto i + max - 1
|
blanchet@48250
|
70 |
| explode_interval _ (Facts.Single i) = [i]
|
blanchet@48250
|
71 |
|
blanchet@48250
|
72 |
val backquote =
|
blanchet@48250
|
73 |
raw_explode #> map (fn "`" => "\\`" | s => s) #> implode #> enclose "`" "`"
|
blanchet@48250
|
74 |
|
blanchet@48250
|
75 |
(* unfolding these can yield really huge terms *)
|
blanchet@48250
|
76 |
val risky_defs = @{thms Bit0_def Bit1_def}
|
blanchet@48250
|
77 |
|
blanchet@48250
|
78 |
fun is_rec_eq lhs = Term.exists_subterm (curry (op =) (head_of lhs))
|
blanchet@48250
|
79 |
fun is_rec_def (@{const Trueprop} $ t) = is_rec_def t
|
blanchet@48250
|
80 |
| is_rec_def (@{const ==>} $ _ $ t2) = is_rec_def t2
|
blanchet@48250
|
81 |
| is_rec_def (Const (@{const_name "=="}, _) $ t1 $ t2) = is_rec_eq t1 t2
|
blanchet@48250
|
82 |
| is_rec_def (Const (@{const_name HOL.eq}, _) $ t1 $ t2) = is_rec_eq t1 t2
|
blanchet@48250
|
83 |
| is_rec_def _ = false
|
blanchet@48250
|
84 |
|
blanchet@48250
|
85 |
fun is_assum assms th = exists (fn ct => prop_of th aconv term_of ct) assms
|
blanchet@48250
|
86 |
fun is_chained chained_ths = member Thm.eq_thm_prop chained_ths
|
blanchet@48250
|
87 |
|
blanchet@48250
|
88 |
fun scope_of_thm global assms chained_ths th =
|
blanchet@48250
|
89 |
if is_chained chained_ths th then Chained
|
blanchet@48250
|
90 |
else if global then Global
|
blanchet@48250
|
91 |
else if is_assum assms th then Assum
|
blanchet@48250
|
92 |
else Local
|
blanchet@48250
|
93 |
|
blanchet@48250
|
94 |
val may_be_induction =
|
blanchet@48250
|
95 |
exists_subterm (fn Var (_, Type (@{type_name fun}, [_, T])) =>
|
blanchet@48250
|
96 |
body_type T = @{typ bool}
|
blanchet@48250
|
97 |
| _ => false)
|
blanchet@48250
|
98 |
|
blanchet@48250
|
99 |
fun status_of_thm css_table name th =
|
blanchet@48250
|
100 |
(* FIXME: use structured name *)
|
blanchet@48250
|
101 |
if (String.isSubstring ".induct" name orelse
|
blanchet@48250
|
102 |
String.isSubstring ".inducts" name) andalso
|
blanchet@48250
|
103 |
may_be_induction (prop_of th) then
|
blanchet@48250
|
104 |
Induction
|
blanchet@48250
|
105 |
else case Termtab.lookup css_table (prop_of th) of
|
blanchet@48250
|
106 |
SOME status => status
|
blanchet@48250
|
107 |
| NONE => General
|
blanchet@48250
|
108 |
|
blanchet@48250
|
109 |
fun stature_of_thm global assms chained_ths css_table name th =
|
blanchet@48250
|
110 |
(scope_of_thm global assms chained_ths th, status_of_thm css_table name th)
|
blanchet@48250
|
111 |
|
blanchet@48250
|
112 |
fun fact_from_ref ctxt reserved chained_ths css_table (xthm as (xref, args)) =
|
blanchet@48250
|
113 |
let
|
blanchet@48250
|
114 |
val ths = Attrib.eval_thms ctxt [xthm]
|
blanchet@48250
|
115 |
val bracket =
|
blanchet@48250
|
116 |
map (enclose "[" "]" o Pretty.str_of o Args.pretty_src ctxt) args
|
blanchet@48250
|
117 |
|> implode
|
blanchet@48250
|
118 |
fun nth_name j =
|
blanchet@48250
|
119 |
case xref of
|
blanchet@48250
|
120 |
Facts.Fact s => backquote s ^ bracket
|
blanchet@48250
|
121 |
| Facts.Named (("", _), _) => "[" ^ bracket ^ "]"
|
blanchet@48250
|
122 |
| Facts.Named ((name, _), NONE) =>
|
blanchet@48250
|
123 |
make_name reserved (length ths > 1) (j + 1) name ^ bracket
|
blanchet@48250
|
124 |
| Facts.Named ((name, _), SOME intervals) =>
|
blanchet@48250
|
125 |
make_name reserved true
|
blanchet@48250
|
126 |
(nth (maps (explode_interval (length ths)) intervals) j) name ^
|
blanchet@48250
|
127 |
bracket
|
blanchet@48250
|
128 |
in
|
blanchet@48250
|
129 |
(ths, (0, []))
|
blanchet@48250
|
130 |
|-> fold (fn th => fn (j, rest) =>
|
blanchet@48250
|
131 |
let val name = nth_name j in
|
blanchet@48250
|
132 |
(j + 1, ((name, stature_of_thm false [] chained_ths
|
blanchet@48250
|
133 |
css_table name th), th) :: rest)
|
blanchet@48250
|
134 |
end)
|
blanchet@48250
|
135 |
|> snd
|
blanchet@48250
|
136 |
end
|
blanchet@48250
|
137 |
|
blanchet@48250
|
138 |
(* Reject theorems with names like "List.filter.filter_list_def" or
|
blanchet@48250
|
139 |
"Accessible_Part.acc.defs", as these are definitions arising from packages. *)
|
blanchet@48250
|
140 |
fun is_package_def a =
|
blanchet@48250
|
141 |
let val names = Long_Name.explode a in
|
blanchet@48250
|
142 |
(length names > 2 andalso not (hd names = "local") andalso
|
blanchet@48250
|
143 |
String.isSuffix "_def" a) orelse String.isSuffix "_defs" a
|
blanchet@48250
|
144 |
end
|
blanchet@48250
|
145 |
|
blanchet@48250
|
146 |
(* FIXME: put other record thms here, or declare as "no_atp" *)
|
blanchet@48250
|
147 |
fun multi_base_blacklist ctxt ho_atp =
|
blanchet@48250
|
148 |
["defs", "select_defs", "update_defs", "split", "splits", "split_asm",
|
blanchet@48250
|
149 |
"cases", "ext_cases", "eq.simps", "eq.refl", "nchotomy", "case_cong",
|
blanchet@48250
|
150 |
"weak_case_cong"]
|
blanchet@48250
|
151 |
|> not (ho_atp orelse (Config.get ctxt instantiate_inducts)) ?
|
blanchet@48250
|
152 |
append ["induct", "inducts"]
|
blanchet@48250
|
153 |
|> map (prefix ".")
|
blanchet@48250
|
154 |
|
blanchet@48250
|
155 |
val max_lambda_nesting = 3 (*only applies if not ho_atp*)
|
blanchet@48250
|
156 |
|
blanchet@48250
|
157 |
fun term_has_too_many_lambdas max (t1 $ t2) =
|
blanchet@48250
|
158 |
exists (term_has_too_many_lambdas max) [t1, t2]
|
blanchet@48250
|
159 |
| term_has_too_many_lambdas max (Abs (_, _, t)) =
|
blanchet@48250
|
160 |
max = 0 orelse term_has_too_many_lambdas (max - 1) t
|
blanchet@48250
|
161 |
| term_has_too_many_lambdas _ _ = false
|
blanchet@48250
|
162 |
|
blanchet@48250
|
163 |
(* Don't count nested lambdas at the level of formulas, since they are
|
blanchet@48250
|
164 |
quantifiers. *)
|
blanchet@48250
|
165 |
fun formula_has_too_many_lambdas true _ _ = false (*i.e. ho_atp*)
|
blanchet@48250
|
166 |
| formula_has_too_many_lambdas _ Ts (Abs (_, T, t)) =
|
blanchet@48250
|
167 |
formula_has_too_many_lambdas false (T :: Ts) t
|
blanchet@48250
|
168 |
| formula_has_too_many_lambdas _ Ts t =
|
blanchet@48250
|
169 |
if member (op =) [HOLogic.boolT, propT] (fastype_of1 (Ts, t)) then
|
blanchet@48250
|
170 |
exists (formula_has_too_many_lambdas false Ts) (#2 (strip_comb t))
|
blanchet@48250
|
171 |
else
|
blanchet@48250
|
172 |
term_has_too_many_lambdas max_lambda_nesting t
|
blanchet@48250
|
173 |
|
blanchet@48250
|
174 |
(* The max apply depth of any "metis" call in "Metis_Examples" (on 2007-10-31)
|
blanchet@48250
|
175 |
was 11. *)
|
blanchet@48250
|
176 |
val max_apply_depth = 15
|
blanchet@48250
|
177 |
|
blanchet@48250
|
178 |
fun apply_depth (f $ t) = Int.max (apply_depth f, apply_depth t + 1)
|
blanchet@48250
|
179 |
| apply_depth (Abs (_, _, t)) = apply_depth t
|
blanchet@48250
|
180 |
| apply_depth _ = 0
|
blanchet@48250
|
181 |
|
blanchet@48250
|
182 |
fun is_formula_too_complex ho_atp t =
|
blanchet@48250
|
183 |
apply_depth t > max_apply_depth orelse formula_has_too_many_lambdas ho_atp [] t
|
blanchet@48250
|
184 |
|
blanchet@48250
|
185 |
(* FIXME: Extend to "Meson" and "Metis" *)
|
blanchet@48250
|
186 |
val exists_sledgehammer_const =
|
blanchet@48250
|
187 |
exists_Const (fn (s, _) => String.isPrefix sledgehammer_prefix s)
|
blanchet@48250
|
188 |
|
blanchet@48250
|
189 |
(* FIXME: make more reliable *)
|
blanchet@48250
|
190 |
val exists_low_level_class_const =
|
blanchet@48250
|
191 |
exists_Const (fn (s, _) =>
|
blanchet@48250
|
192 |
s = @{const_name equal_class.equal} orelse
|
blanchet@48250
|
193 |
String.isSubstring (Long_Name.separator ^ "class" ^ Long_Name.separator) s)
|
blanchet@48250
|
194 |
|
blanchet@48250
|
195 |
fun is_metastrange_theorem th =
|
blanchet@48250
|
196 |
case head_of (concl_of th) of
|
blanchet@48250
|
197 |
Const (s, _) => (s <> @{const_name Trueprop} andalso
|
blanchet@48250
|
198 |
s <> @{const_name "=="})
|
blanchet@48250
|
199 |
| _ => false
|
blanchet@48250
|
200 |
|
blanchet@48250
|
201 |
fun is_that_fact th =
|
blanchet@48250
|
202 |
String.isSuffix (Long_Name.separator ^ Obtain.thatN) (Thm.get_name_hint th)
|
blanchet@48250
|
203 |
andalso exists_subterm (fn Free (s, _) => s = Name.skolem Auto_Bind.thesisN
|
blanchet@48250
|
204 |
| _ => false) (prop_of th)
|
blanchet@48250
|
205 |
|
blanchet@48250
|
206 |
fun is_theorem_bad_for_atps ho_atp exporter thm =
|
blanchet@48250
|
207 |
is_metastrange_theorem thm orelse
|
blanchet@48250
|
208 |
(not exporter andalso
|
blanchet@48250
|
209 |
let val t = prop_of thm in
|
blanchet@48250
|
210 |
is_formula_too_complex ho_atp t orelse exists_type type_has_top_sort t orelse
|
blanchet@48250
|
211 |
exists_sledgehammer_const t orelse exists_low_level_class_const t orelse
|
blanchet@48250
|
212 |
is_that_fact thm
|
blanchet@48250
|
213 |
end)
|
blanchet@48250
|
214 |
|
blanchet@48250
|
215 |
fun hackish_string_for_term ctxt t =
|
blanchet@48250
|
216 |
Print_Mode.setmp (filter (curry (op =) Symbol.xsymbolsN)
|
blanchet@48250
|
217 |
(print_mode_value ())) (Syntax.string_of_term ctxt) t
|
blanchet@48250
|
218 |
|> String.translate (fn c => if Char.isPrint c then str c else "")
|
blanchet@48250
|
219 |
|> simplify_spaces
|
blanchet@48250
|
220 |
|
blanchet@48250
|
221 |
(* This is a terrible hack. Free variables are sometimes coded as "M__" when
|
blanchet@48250
|
222 |
they are displayed as "M" and we want to avoid clashes with these. But
|
blanchet@48250
|
223 |
sometimes it's even worse: "Ma__" encodes "M". So we simply reserve all
|
blanchet@48250
|
224 |
prefixes of all free variables. In the worse case scenario, where the fact
|
blanchet@48250
|
225 |
won't be resolved correctly, the user can fix it manually, e.g., by naming
|
blanchet@48250
|
226 |
the fact in question. Ideally we would need nothing of it, but backticks
|
blanchet@48250
|
227 |
simply don't work with schematic variables. *)
|
blanchet@48250
|
228 |
fun all_prefixes_of s =
|
blanchet@48250
|
229 |
map (fn i => String.extract (s, 0, SOME i)) (1 upto size s - 1)
|
blanchet@48250
|
230 |
|
blanchet@48250
|
231 |
fun close_form t =
|
blanchet@48250
|
232 |
(t, [] |> Term.add_free_names t |> maps all_prefixes_of)
|
blanchet@48250
|
233 |
|> fold (fn ((s, i), T) => fn (t', taken) =>
|
blanchet@48250
|
234 |
let val s' = singleton (Name.variant_list taken) s in
|
blanchet@48250
|
235 |
((if fastype_of t' = HOLogic.boolT then HOLogic.all_const
|
blanchet@48250
|
236 |
else Logic.all_const) T
|
blanchet@48250
|
237 |
$ Abs (s', T, abstract_over (Var ((s, i), T), t')),
|
blanchet@48250
|
238 |
s' :: taken)
|
blanchet@48250
|
239 |
end)
|
blanchet@48250
|
240 |
(Term.add_vars t [] |> sort_wrt (fst o fst))
|
blanchet@48250
|
241 |
|> fst
|
blanchet@48250
|
242 |
|
blanchet@48250
|
243 |
fun all_facts ctxt ho_atp reserved exporter add_ths chained_ths css_table =
|
blanchet@48250
|
244 |
let
|
blanchet@48250
|
245 |
val thy = Proof_Context.theory_of ctxt
|
blanchet@48250
|
246 |
val global_facts = Global_Theory.facts_of thy
|
blanchet@48250
|
247 |
val local_facts = Proof_Context.facts_of ctxt
|
blanchet@48250
|
248 |
val named_locals = local_facts |> Facts.dest_static []
|
blanchet@48250
|
249 |
val assms = Assumption.all_assms_of ctxt
|
blanchet@48250
|
250 |
fun is_good_unnamed_local th =
|
blanchet@48250
|
251 |
not (Thm.has_name_hint th) andalso
|
blanchet@48250
|
252 |
forall (fn (_, ths) => not (member Thm.eq_thm_prop ths th)) named_locals
|
blanchet@48250
|
253 |
val unnamed_locals =
|
blanchet@48250
|
254 |
union Thm.eq_thm_prop (Facts.props local_facts) chained_ths
|
blanchet@48250
|
255 |
|> filter is_good_unnamed_local |> map (pair "" o single)
|
blanchet@48250
|
256 |
val full_space =
|
blanchet@48250
|
257 |
Name_Space.merge (Facts.space_of global_facts, Facts.space_of local_facts)
|
blanchet@48250
|
258 |
fun add_facts global foldx facts =
|
blanchet@48250
|
259 |
foldx (fn (name0, ths) =>
|
blanchet@48250
|
260 |
if not exporter andalso name0 <> "" andalso
|
blanchet@48250
|
261 |
forall (not o member Thm.eq_thm_prop add_ths) ths andalso
|
blanchet@48250
|
262 |
(Facts.is_concealed facts name0 orelse
|
blanchet@48250
|
263 |
(not (Config.get ctxt ignore_no_atp) andalso
|
blanchet@48250
|
264 |
is_package_def name0) orelse
|
blanchet@48250
|
265 |
exists (fn s => String.isSuffix s name0)
|
blanchet@48250
|
266 |
(multi_base_blacklist ctxt ho_atp)) then
|
blanchet@48250
|
267 |
I
|
blanchet@48250
|
268 |
else
|
blanchet@48250
|
269 |
let
|
blanchet@48250
|
270 |
val multi = length ths > 1
|
blanchet@48250
|
271 |
val backquote_thm =
|
blanchet@48250
|
272 |
backquote o hackish_string_for_term ctxt o close_form o prop_of
|
blanchet@48250
|
273 |
fun check_thms a =
|
blanchet@48250
|
274 |
case try (Proof_Context.get_thms ctxt) a of
|
blanchet@48250
|
275 |
NONE => false
|
blanchet@48250
|
276 |
| SOME ths' => eq_list Thm.eq_thm_prop (ths, ths')
|
blanchet@48250
|
277 |
in
|
blanchet@48250
|
278 |
pair 1
|
blanchet@48250
|
279 |
#> fold (fn th => fn (j, (multis, unis)) =>
|
blanchet@48250
|
280 |
(j + 1,
|
blanchet@48250
|
281 |
if not (member Thm.eq_thm_prop add_ths th) andalso
|
blanchet@48250
|
282 |
is_theorem_bad_for_atps ho_atp exporter th then
|
blanchet@48250
|
283 |
(multis, unis)
|
blanchet@48250
|
284 |
else
|
blanchet@48250
|
285 |
let
|
blanchet@48250
|
286 |
val new =
|
blanchet@48250
|
287 |
(((fn () =>
|
blanchet@48250
|
288 |
if name0 = "" then
|
blanchet@48250
|
289 |
th |> backquote_thm
|
blanchet@48250
|
290 |
else
|
blanchet@48250
|
291 |
[Facts.extern ctxt facts name0,
|
blanchet@48250
|
292 |
Name_Space.extern ctxt full_space name0,
|
blanchet@48250
|
293 |
name0]
|
blanchet@48250
|
294 |
|> find_first check_thms
|
blanchet@48250
|
295 |
|> (fn SOME name =>
|
blanchet@48250
|
296 |
make_name reserved multi j name
|
blanchet@48250
|
297 |
| NONE => "")),
|
blanchet@48250
|
298 |
stature_of_thm global assms chained_ths
|
blanchet@48250
|
299 |
css_table name0 th), th)
|
blanchet@48250
|
300 |
in
|
blanchet@48250
|
301 |
if multi then (new :: multis, unis)
|
blanchet@48250
|
302 |
else (multis, new :: unis)
|
blanchet@48250
|
303 |
end)) ths
|
blanchet@48250
|
304 |
#> snd
|
blanchet@48250
|
305 |
end)
|
blanchet@48250
|
306 |
in
|
blanchet@48250
|
307 |
(* The single-name theorems go after the multiple-name ones, so that single
|
blanchet@48250
|
308 |
names are preferred when both are available. *)
|
blanchet@48250
|
309 |
([], []) |> add_facts false fold local_facts (unnamed_locals @ named_locals)
|
blanchet@48250
|
310 |
|> add_facts true Facts.fold_static global_facts global_facts
|
blanchet@48250
|
311 |
|> op @
|
blanchet@48250
|
312 |
end
|
blanchet@48250
|
313 |
|
blanchet@48250
|
314 |
fun clasimpset_rule_table_of ctxt =
|
blanchet@48250
|
315 |
let
|
blanchet@48250
|
316 |
val thy = Proof_Context.theory_of ctxt
|
blanchet@48250
|
317 |
val atomize = HOLogic.mk_Trueprop o Object_Logic.atomize_term thy
|
blanchet@48250
|
318 |
fun add stature normalizers get_th =
|
blanchet@48250
|
319 |
fold (fn rule =>
|
blanchet@48250
|
320 |
let
|
blanchet@48250
|
321 |
val th = rule |> get_th
|
blanchet@48250
|
322 |
val t =
|
blanchet@48250
|
323 |
th |> Thm.maxidx_of th > 0 ? zero_var_indexes |> prop_of
|
blanchet@48250
|
324 |
in
|
blanchet@48250
|
325 |
fold (fn normalize => Termtab.update (normalize t, stature))
|
blanchet@48250
|
326 |
(I :: normalizers)
|
blanchet@48250
|
327 |
end)
|
blanchet@48250
|
328 |
val {safeIs, (* safeEs, *) hazIs, (* hazEs, *) ...} =
|
blanchet@48250
|
329 |
ctxt |> claset_of |> Classical.rep_cs
|
blanchet@48250
|
330 |
val intros = Item_Net.content safeIs @ Item_Net.content hazIs
|
blanchet@48250
|
331 |
(* Add once it is used:
|
blanchet@48250
|
332 |
val elims =
|
blanchet@48250
|
333 |
Item_Net.content safeEs @ Item_Net.content hazEs
|
blanchet@48250
|
334 |
|> map Classical.classical_rule
|
blanchet@48250
|
335 |
*)
|
blanchet@48250
|
336 |
val simps = ctxt |> simpset_of |> dest_ss |> #simps
|
blanchet@48250
|
337 |
val specs = ctxt |> Spec_Rules.get
|
blanchet@48250
|
338 |
val (rec_defs, nonrec_defs) =
|
blanchet@48250
|
339 |
specs |> filter (curry (op =) Spec_Rules.Equational o fst)
|
blanchet@48250
|
340 |
|> maps (snd o snd)
|
blanchet@48250
|
341 |
|> filter_out (member Thm.eq_thm_prop risky_defs)
|
blanchet@48250
|
342 |
|> List.partition (is_rec_def o prop_of)
|
blanchet@48250
|
343 |
val spec_intros =
|
blanchet@48250
|
344 |
specs |> filter (member (op =) [Spec_Rules.Inductive,
|
blanchet@48250
|
345 |
Spec_Rules.Co_Inductive] o fst)
|
blanchet@48250
|
346 |
|> maps (snd o snd)
|
blanchet@48250
|
347 |
in
|
blanchet@48250
|
348 |
Termtab.empty |> add Simp [atomize] snd simps
|
blanchet@48250
|
349 |
|> add Simp [] I rec_defs
|
blanchet@48250
|
350 |
|> add Def [] I nonrec_defs
|
blanchet@48250
|
351 |
(* Add once it is used:
|
blanchet@48250
|
352 |
|> add Elim [] I elims
|
blanchet@48250
|
353 |
*)
|
blanchet@48250
|
354 |
|> add Intro [] I intros
|
blanchet@48250
|
355 |
|> add Inductive [] I spec_intros
|
blanchet@48250
|
356 |
end
|
blanchet@48250
|
357 |
|
blanchet@48250
|
358 |
fun uniquify xs =
|
blanchet@48250
|
359 |
Termtab.fold (cons o snd)
|
blanchet@48250
|
360 |
(fold (Termtab.update o `(prop_of o snd)) xs Termtab.empty) []
|
blanchet@48250
|
361 |
|
blanchet@48250
|
362 |
fun struct_induct_rule_on th =
|
blanchet@48250
|
363 |
case Logic.strip_horn (prop_of th) of
|
blanchet@48250
|
364 |
(prems, @{const Trueprop}
|
blanchet@48250
|
365 |
$ ((p as Var ((p_name, 0), _)) $ (a as Var (_, ind_T)))) =>
|
blanchet@48250
|
366 |
if not (is_TVar ind_T) andalso length prems > 1 andalso
|
blanchet@48250
|
367 |
exists (exists_subterm (curry (op aconv) p)) prems andalso
|
blanchet@48250
|
368 |
not (exists (exists_subterm (curry (op aconv) a)) prems) then
|
blanchet@48250
|
369 |
SOME (p_name, ind_T)
|
blanchet@48250
|
370 |
else
|
blanchet@48250
|
371 |
NONE
|
blanchet@48250
|
372 |
| _ => NONE
|
blanchet@48250
|
373 |
|
blanchet@48250
|
374 |
fun instantiate_induct_rule ctxt concl_prop p_name ((name, stature), th) ind_x =
|
blanchet@48250
|
375 |
let
|
blanchet@48250
|
376 |
fun varify_noninducts (t as Free (s, T)) =
|
blanchet@48250
|
377 |
if (s, T) = ind_x orelse can dest_funT T then t else Var ((s, 0), T)
|
blanchet@48250
|
378 |
| varify_noninducts t = t
|
blanchet@48250
|
379 |
val p_inst =
|
blanchet@48250
|
380 |
concl_prop |> map_aterms varify_noninducts |> close_form
|
blanchet@48250
|
381 |
|> lambda (Free ind_x)
|
blanchet@48250
|
382 |
|> hackish_string_for_term ctxt
|
blanchet@48250
|
383 |
in
|
blanchet@48250
|
384 |
((fn () => name () ^ "[where " ^ p_name ^ " = " ^ quote p_inst ^ "]",
|
blanchet@48250
|
385 |
stature), th |> read_instantiate ctxt [((p_name, 0), p_inst)])
|
blanchet@48250
|
386 |
end
|
blanchet@48250
|
387 |
|
blanchet@48250
|
388 |
fun type_match thy (T1, T2) =
|
blanchet@48250
|
389 |
(Sign.typ_match thy (T2, T1) Vartab.empty; true)
|
blanchet@48250
|
390 |
handle Type.TYPE_MATCH => false
|
blanchet@48250
|
391 |
|
blanchet@48250
|
392 |
fun instantiate_if_induct_rule ctxt stmt stmt_xs (ax as (_, th)) =
|
blanchet@48250
|
393 |
case struct_induct_rule_on th of
|
blanchet@48250
|
394 |
SOME (p_name, ind_T) =>
|
blanchet@48250
|
395 |
let val thy = Proof_Context.theory_of ctxt in
|
blanchet@48250
|
396 |
stmt_xs |> filter (fn (_, T) => type_match thy (T, ind_T))
|
blanchet@48250
|
397 |
|> map_filter (try (instantiate_induct_rule ctxt stmt p_name ax))
|
blanchet@48250
|
398 |
end
|
blanchet@48250
|
399 |
| NONE => [ax]
|
blanchet@48250
|
400 |
|
blanchet@48250
|
401 |
fun external_frees t =
|
blanchet@48250
|
402 |
[] |> Term.add_frees t |> filter_out (can Name.dest_internal o fst)
|
blanchet@48250
|
403 |
|
blanchet@48250
|
404 |
fun maybe_instantiate_inducts ctxt hyp_ts concl_t =
|
blanchet@48250
|
405 |
if Config.get ctxt instantiate_inducts then
|
blanchet@48250
|
406 |
let
|
blanchet@48250
|
407 |
val thy = Proof_Context.theory_of ctxt
|
blanchet@48250
|
408 |
val ind_stmt =
|
blanchet@48250
|
409 |
(hyp_ts |> filter_out (null o external_frees), concl_t)
|
blanchet@48250
|
410 |
|> Logic.list_implies |> Object_Logic.atomize_term thy
|
blanchet@48250
|
411 |
val ind_stmt_xs = external_frees ind_stmt
|
blanchet@48250
|
412 |
in maps (instantiate_if_induct_rule ctxt ind_stmt ind_stmt_xs) end
|
blanchet@48250
|
413 |
else
|
blanchet@48250
|
414 |
I
|
blanchet@48250
|
415 |
|
blanchet@48250
|
416 |
fun maybe_filter_no_atps ctxt =
|
blanchet@48250
|
417 |
not (Config.get ctxt ignore_no_atp) ? filter_out (No_ATPs.member ctxt o snd)
|
blanchet@48250
|
418 |
|
blanchet@48250
|
419 |
fun nearly_all_facts ctxt ho_atp ({add, only, ...} : relevance_override)
|
blanchet@48250
|
420 |
chained_ths hyp_ts concl_t =
|
blanchet@48250
|
421 |
if only andalso null add then
|
blanchet@48250
|
422 |
[]
|
blanchet@48250
|
423 |
else
|
blanchet@48250
|
424 |
let
|
blanchet@48250
|
425 |
val reserved = reserved_isar_keyword_table ()
|
blanchet@48250
|
426 |
val add_ths = Attrib.eval_thms ctxt add
|
blanchet@48250
|
427 |
val css_table = clasimpset_rule_table_of ctxt
|
blanchet@48250
|
428 |
in
|
blanchet@48250
|
429 |
(if only then
|
blanchet@48250
|
430 |
maps (map (fn ((name, stature), th) => ((K name, stature), th))
|
blanchet@48250
|
431 |
o fact_from_ref ctxt reserved chained_ths css_table) add
|
blanchet@48250
|
432 |
else
|
blanchet@48250
|
433 |
all_facts ctxt ho_atp reserved false add_ths chained_ths css_table)
|
blanchet@48250
|
434 |
|> maybe_instantiate_inducts ctxt hyp_ts concl_t
|
blanchet@48250
|
435 |
|> not only ? maybe_filter_no_atps ctxt
|
blanchet@48250
|
436 |
|> uniquify
|
blanchet@48250
|
437 |
end
|
blanchet@48250
|
438 |
|
blanchet@48250
|
439 |
end;
|