author | smolkas |
Thu, 17 Jan 2013 11:56:34 +0100 | |
changeset 50924 | beb95bf66b21 |
parent 50905 | db99fcf69761 |
child 51026 | 48e82e199df1 |
permissions | -rw-r--r-- |
49883 | 1 |
(* Title: HOL/Tools/Sledgehammer/sledgehammer_reconstruct.ML |
2 |
Author: Jasmin Blanchette, TU Muenchen |
|
3 |
Author: Steffen Juilf Smolka, TU Muenchen |
|
4 |
||
49914 | 5 |
Isar proof reconstruction from ATP proofs. |
49883 | 6 |
*) |
7 |
||
8 |
signature SLEDGEHAMMER_PROOF_RECONSTRUCT = |
|
9 |
sig |
|
49914 | 10 |
type 'a proof = 'a ATP_Proof.proof |
11 |
type stature = ATP_Problem_Generate.stature |
|
12 |
||
13 |
datatype reconstructor = |
|
14 |
Metis of string * string | |
|
15 |
SMT |
|
16 |
||
17 |
datatype play = |
|
18 |
Played of reconstructor * Time.time | |
|
19 |
Trust_Playable of reconstructor * Time.time option | |
|
20 |
Failed_to_Play of reconstructor |
|
21 |
||
22 |
type minimize_command = string list -> string |
|
23 |
type one_line_params = |
|
24 |
play * string * (string * stature) list * minimize_command * int * int |
|
25 |
type isar_params = |
|
50557 | 26 |
bool * bool * Time.time option * real * string Symtab.table |
50004
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
27 |
* (string * stature) list vector * int Symtab.table * string proof * thm |
49914 | 28 |
|
29 |
val smtN : string |
|
30 |
val string_for_reconstructor : reconstructor -> string |
|
31 |
val lam_trans_from_atp_proof : string proof -> string -> string |
|
32 |
val is_typed_helper_used_in_atp_proof : string proof -> bool |
|
33 |
val used_facts_in_atp_proof : |
|
34 |
Proof.context -> (string * stature) list vector -> string proof -> |
|
35 |
(string * stature) list |
|
36 |
val used_facts_in_unsound_atp_proof : |
|
37 |
Proof.context -> (string * stature) list vector -> 'a proof -> |
|
38 |
string list option |
|
39 |
val one_line_proof_text : int -> one_line_params -> string |
|
49883 | 40 |
val isar_proof_text : |
49913 | 41 |
Proof.context -> bool -> isar_params -> one_line_params -> string |
49883 | 42 |
val proof_text : |
49913 | 43 |
Proof.context -> bool -> isar_params -> int -> one_line_params -> string |
49883 | 44 |
end; |
45 |
||
46 |
structure Sledgehammer_Reconstruct : SLEDGEHAMMER_PROOF_RECONSTRUCT = |
|
47 |
struct |
|
48 |
||
49 |
open ATP_Util |
|
49914 | 50 |
open ATP_Problem |
49883 | 51 |
open ATP_Proof |
52 |
open ATP_Problem_Generate |
|
53 |
open ATP_Proof_Reconstruct |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
54 |
open Sledgehammer_Util |
50264
a9ec48b98734
renamed sledgehammer_isar_reconstruct to sledgehammer_proof
smolkas
parents:
50262
diff
changeset
|
55 |
open Sledgehammer_Proof |
50258 | 56 |
open Sledgehammer_Annotate |
50259 | 57 |
open Sledgehammer_Shrink |
49914 | 58 |
|
59 |
structure String_Redirect = ATP_Proof_Redirect( |
|
60 |
type key = step_name |
|
61 |
val ord = fn ((s, _ : string list), (s', _)) => fast_string_ord (s, s') |
|
62 |
val string_of = fst) |
|
63 |
||
49883 | 64 |
open String_Redirect |
65 |
||
49916
412346127bfa
fixed theorem lookup code in Isar proof reconstruction
blanchet
parents:
49915
diff
changeset
|
66 |
|
49914 | 67 |
(** reconstructors **) |
68 |
||
69 |
datatype reconstructor = |
|
70 |
Metis of string * string | |
|
71 |
SMT |
|
72 |
||
73 |
datatype play = |
|
74 |
Played of reconstructor * Time.time | |
|
75 |
Trust_Playable of reconstructor * Time.time option | |
|
76 |
Failed_to_Play of reconstructor |
|
77 |
||
78 |
val smtN = "smt" |
|
79 |
||
80 |
fun string_for_reconstructor (Metis (type_enc, lam_trans)) = |
|
81 |
metis_call type_enc lam_trans |
|
82 |
| string_for_reconstructor SMT = smtN |
|
83 |
||
84 |
||
85 |
(** fact extraction from ATP proofs **) |
|
86 |
||
87 |
fun find_first_in_list_vector vec key = |
|
88 |
Vector.foldl (fn (ps, NONE) => AList.lookup (op =) ps key |
|
89 |
| (_, value) => value) NONE vec |
|
90 |
||
91 |
val unprefix_fact_number = space_implode "_" o tl o space_explode "_" |
|
92 |
||
93 |
fun resolve_one_named_fact fact_names s = |
|
94 |
case try (unprefix fact_prefix) s of |
|
95 |
SOME s' => |
|
96 |
let val s' = s' |> unprefix_fact_number |> unascii_of in |
|
97 |
s' |> find_first_in_list_vector fact_names |> Option.map (pair s') |
|
98 |
end |
|
99 |
| NONE => NONE |
|
100 |
fun resolve_fact fact_names = map_filter (resolve_one_named_fact fact_names) |
|
101 |
fun is_fact fact_names = not o null o resolve_fact fact_names |
|
102 |
||
103 |
fun resolve_one_named_conjecture s = |
|
104 |
case try (unprefix conjecture_prefix) s of |
|
105 |
SOME s' => Int.fromString s' |
|
106 |
| NONE => NONE |
|
107 |
||
108 |
val resolve_conjecture = map_filter resolve_one_named_conjecture |
|
109 |
val is_conjecture = not o null o resolve_conjecture |
|
110 |
||
111 |
val ascii_of_lam_fact_prefix = ascii_of lam_fact_prefix |
|
112 |
||
113 |
(* overapproximation (good enough) *) |
|
114 |
fun is_lam_lifted s = |
|
115 |
String.isPrefix fact_prefix s andalso |
|
116 |
String.isSubstring ascii_of_lam_fact_prefix s |
|
117 |
||
118 |
val is_combinator_def = String.isPrefix (helper_prefix ^ combinator_prefix) |
|
119 |
||
120 |
fun is_axiom_used_in_proof pred = |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
121 |
exists (fn Inference_Step ((_, ss), _, _, _, []) => exists pred ss |
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
122 |
| _ => false) |
49914 | 123 |
|
124 |
fun lam_trans_from_atp_proof atp_proof default = |
|
125 |
case (is_axiom_used_in_proof is_combinator_def atp_proof, |
|
126 |
is_axiom_used_in_proof is_lam_lifted atp_proof) of |
|
127 |
(false, false) => default |
|
128 |
| (false, true) => liftingN |
|
129 |
(* | (true, true) => combs_and_liftingN -- not supported by "metis" *) |
|
130 |
| (true, _) => combsN |
|
131 |
||
132 |
val is_typed_helper_name = |
|
133 |
String.isPrefix helper_prefix andf String.isSuffix typed_helper_suffix |
|
134 |
fun is_typed_helper_used_in_atp_proof atp_proof = |
|
135 |
is_axiom_used_in_proof is_typed_helper_name atp_proof |
|
136 |
||
137 |
fun add_non_rec_defs fact_names accum = |
|
138 |
Vector.foldl (fn (facts, facts') => |
|
139 |
union (op =) (filter (fn (_, (_, status)) => status = Non_Rec_Def) facts) |
|
140 |
facts') |
|
141 |
accum fact_names |
|
142 |
||
143 |
val isa_ext = Thm.get_name_hint @{thm ext} |
|
144 |
val isa_short_ext = Long_Name.base_name isa_ext |
|
145 |
||
146 |
fun ext_name ctxt = |
|
147 |
if Thm.eq_thm_prop (@{thm ext}, |
|
148 |
singleton (Attrib.eval_thms ctxt) (Facts.named isa_short_ext, [])) then |
|
149 |
isa_short_ext |
|
150 |
else |
|
151 |
isa_ext |
|
152 |
||
50675 | 153 |
val leo2_extcnf_equal_neg_rule = "extcnf_equal_neg" |
154 |
val leo2_unfold_def_rule = "unfold_def" |
|
49914 | 155 |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
156 |
fun add_fact ctxt fact_names (Inference_Step ((_, ss), _, _, rule, deps)) = |
50675 | 157 |
(if rule = leo2_extcnf_equal_neg_rule then |
49914 | 158 |
insert (op =) (ext_name ctxt, (Global, General)) |
50675 | 159 |
else if rule = leo2_unfold_def_rule then |
49914 | 160 |
(* LEO 1.3.3 does not record definitions properly, leading to missing |
161 |
dependencies in the TSTP proof. Remove the next line once this is |
|
162 |
fixed. *) |
|
163 |
add_non_rec_defs fact_names |
|
164 |
else if rule = satallax_coreN then |
|
165 |
(fn [] => |
|
166 |
(* Satallax doesn't include definitions in its unsatisfiable cores, |
|
167 |
so we assume the worst and include them all here. *) |
|
168 |
[(ext_name ctxt, (Global, General))] |> add_non_rec_defs fact_names |
|
169 |
| facts => facts) |
|
170 |
else |
|
171 |
I) |
|
172 |
#> (if null deps then union (op =) (resolve_fact fact_names ss) |
|
173 |
else I) |
|
174 |
| add_fact _ _ _ = I |
|
175 |
||
176 |
fun used_facts_in_atp_proof ctxt fact_names atp_proof = |
|
177 |
if null atp_proof then Vector.foldl (uncurry (union (op =))) [] fact_names |
|
178 |
else fold (add_fact ctxt fact_names) atp_proof [] |
|
179 |
||
180 |
fun used_facts_in_unsound_atp_proof _ _ [] = NONE |
|
181 |
| used_facts_in_unsound_atp_proof ctxt fact_names atp_proof = |
|
182 |
let val used_facts = used_facts_in_atp_proof ctxt fact_names atp_proof in |
|
183 |
if forall (fn (_, (sc, _)) => sc = Global) used_facts andalso |
|
184 |
not (is_axiom_used_in_proof (is_conjecture o single) atp_proof) then |
|
185 |
SOME (map fst used_facts) |
|
186 |
else |
|
187 |
NONE |
|
188 |
end |
|
189 |
||
190 |
||
191 |
(** one-liner reconstructor proofs **) |
|
192 |
||
193 |
fun show_time NONE = "" |
|
194 |
| show_time (SOME ext_time) = " (" ^ string_from_ext_time ext_time ^ ")" |
|
195 |
||
49986
90e7be285b49
took out "using only ..." comments in Sledgehammer generated metis/smt calls, until these can be generated soundly
blanchet
parents:
49983
diff
changeset
|
196 |
(* FIXME: Various bugs, esp. with "unfolding" |
49914 | 197 |
fun unusing_chained_facts _ 0 = "" |
198 |
| unusing_chained_facts used_chaineds num_chained = |
|
199 |
if length used_chaineds = num_chained then "" |
|
200 |
else if null used_chaineds then "(* using no facts *) " |
|
201 |
else "(* using only " ^ space_implode " " used_chaineds ^ " *) " |
|
49986
90e7be285b49
took out "using only ..." comments in Sledgehammer generated metis/smt calls, until these can be generated soundly
blanchet
parents:
49983
diff
changeset
|
202 |
*) |
49914 | 203 |
|
204 |
fun apply_on_subgoal _ 1 = "by " |
|
205 |
| apply_on_subgoal 1 _ = "apply " |
|
206 |
| apply_on_subgoal i n = |
|
207 |
"prefer " ^ string_of_int i ^ " " ^ apply_on_subgoal 1 n |
|
208 |
||
209 |
fun using_labels [] = "" |
|
210 |
| using_labels ls = |
|
211 |
"using " ^ space_implode " " (map string_for_label ls) ^ " " |
|
212 |
||
213 |
fun command_call name [] = |
|
50239 | 214 |
name |> not (Symbol_Pos.is_identifier name) ? enclose "(" ")" |
49914 | 215 |
| command_call name args = "(" ^ name ^ " " ^ space_implode " " args ^ ")" |
216 |
||
217 |
fun reconstructor_command reconstr i n used_chaineds num_chained (ls, ss) = |
|
49986
90e7be285b49
took out "using only ..." comments in Sledgehammer generated metis/smt calls, until these can be generated soundly
blanchet
parents:
49983
diff
changeset
|
218 |
(* unusing_chained_facts used_chaineds num_chained ^ *) |
49914 | 219 |
using_labels ls ^ apply_on_subgoal i n ^ |
220 |
command_call (string_for_reconstructor reconstr) ss |
|
221 |
||
222 |
fun try_command_line banner time command = |
|
50450
358b6020f8b6
generalized notion of active area, where sendback is just one application;
wenzelm
parents:
50410
diff
changeset
|
223 |
banner ^ ": " ^ Active.sendback_markup command ^ show_time time ^ "." |
49914 | 224 |
|
225 |
fun minimize_line _ [] = "" |
|
226 |
| minimize_line minimize_command ss = |
|
227 |
case minimize_command ss of |
|
228 |
"" => "" |
|
229 |
| command => |
|
50450
358b6020f8b6
generalized notion of active area, where sendback is just one application;
wenzelm
parents:
50410
diff
changeset
|
230 |
"\nTo minimize: " ^ Active.sendback_markup command ^ "." |
49914 | 231 |
|
232 |
fun split_used_facts facts = |
|
233 |
facts |> List.partition (fn (_, (sc, _)) => sc = Chained) |
|
234 |
|> pairself (sort_distinct (string_ord o pairself fst)) |
|
235 |
||
236 |
type minimize_command = string list -> string |
|
237 |
type one_line_params = |
|
238 |
play * string * (string * stature) list * minimize_command * int * int |
|
239 |
||
240 |
fun one_line_proof_text num_chained |
|
241 |
(preplay, banner, used_facts, minimize_command, subgoal, |
|
242 |
subgoal_count) = |
|
243 |
let |
|
244 |
val (chained, extra) = split_used_facts used_facts |
|
245 |
val (failed, reconstr, ext_time) = |
|
246 |
case preplay of |
|
247 |
Played (reconstr, time) => (false, reconstr, (SOME (false, time))) |
|
248 |
| Trust_Playable (reconstr, time) => |
|
249 |
(false, reconstr, |
|
250 |
case time of |
|
251 |
NONE => NONE |
|
252 |
| SOME time => |
|
253 |
if time = Time.zeroTime then NONE else SOME (true, time)) |
|
254 |
| Failed_to_Play reconstr => (true, reconstr, NONE) |
|
255 |
val try_line = |
|
256 |
([], map fst extra) |
|
257 |
|> reconstructor_command reconstr subgoal subgoal_count (map fst chained) |
|
258 |
num_chained |
|
259 |
|> (if failed then |
|
260 |
enclose "One-line proof reconstruction failed: " |
|
261 |
".\n(Invoking \"sledgehammer\" with \"[strict]\" might \ |
|
262 |
\solve this.)" |
|
263 |
else |
|
264 |
try_command_line banner ext_time) |
|
265 |
in try_line ^ minimize_line minimize_command (map fst (extra @ chained)) end |
|
266 |
||
267 |
||
268 |
(** Isar proof construction and manipulation **) |
|
269 |
||
50017 | 270 |
val assume_prefix = "a" |
49914 | 271 |
val have_prefix = "f" |
272 |
val raw_prefix = "x" |
|
273 |
||
274 |
fun raw_label_for_name (num, ss) = |
|
275 |
case resolve_conjecture ss of |
|
276 |
[j] => (conjecture_prefix, j) |
|
277 |
| _ => (raw_prefix ^ ascii_of num, 0) |
|
278 |
||
50005 | 279 |
fun label_of_clause [name] = raw_label_for_name name |
50262 | 280 |
| label_of_clause c = (space_implode "___" (map (fst o raw_label_for_name) c), 0) |
50005 | 281 |
|
282 |
fun add_fact_from_dependencies fact_names (names as [(_, ss)]) = |
|
283 |
if is_fact fact_names ss then |
|
284 |
apsnd (union (op =) (map fst (resolve_fact fact_names ss))) |
|
285 |
else |
|
286 |
apfst (insert (op =) (label_of_clause names)) |
|
287 |
| add_fact_from_dependencies fact_names names = |
|
288 |
apfst (insert (op =) (label_of_clause names)) |
|
49914 | 289 |
|
290 |
fun repair_name "$true" = "c_True" |
|
291 |
| repair_name "$false" = "c_False" |
|
292 |
| repair_name "$$e" = tptp_equal (* seen in Vampire proofs *) |
|
293 |
| repair_name s = |
|
294 |
if is_tptp_equal s orelse |
|
295 |
(* seen in Vampire proofs *) |
|
296 |
(String.isPrefix "sQ" s andalso String.isSuffix "_eqProxy" s) then |
|
297 |
tptp_equal |
|
298 |
else |
|
299 |
s |
|
300 |
||
301 |
fun unvarify_term (Var ((s, 0), T)) = Free (s, T) |
|
302 |
| unvarify_term t = raise TERM ("unvarify_term: non-Var", [t]) |
|
303 |
||
304 |
fun infer_formula_types ctxt = |
|
305 |
Type.constraint HOLogic.boolT |
|
306 |
#> Syntax.check_term |
|
307 |
(Proof_Context.set_mode Proof_Context.mode_schematic ctxt) |
|
308 |
||
309 |
val combinator_table = |
|
310 |
[(@{const_name Meson.COMBI}, @{thm Meson.COMBI_def [abs_def]}), |
|
311 |
(@{const_name Meson.COMBK}, @{thm Meson.COMBK_def [abs_def]}), |
|
312 |
(@{const_name Meson.COMBB}, @{thm Meson.COMBB_def [abs_def]}), |
|
313 |
(@{const_name Meson.COMBC}, @{thm Meson.COMBC_def [abs_def]}), |
|
314 |
(@{const_name Meson.COMBS}, @{thm Meson.COMBS_def [abs_def]})] |
|
315 |
||
316 |
fun uncombine_term thy = |
|
317 |
let |
|
318 |
fun aux (t1 $ t2) = betapply (pairself aux (t1, t2)) |
|
319 |
| aux (Abs (s, T, t')) = Abs (s, T, aux t') |
|
320 |
| aux (t as Const (x as (s, _))) = |
|
321 |
(case AList.lookup (op =) combinator_table s of |
|
322 |
SOME thm => thm |> prop_of |> specialize_type thy x |
|
323 |
|> Logic.dest_equals |> snd |
|
324 |
| NONE => t) |
|
325 |
| aux t = t |
|
326 |
in aux end |
|
327 |
||
328 |
fun decode_line sym_tab (Definition_Step (name, phi1, phi2)) ctxt = |
|
329 |
let |
|
330 |
val thy = Proof_Context.theory_of ctxt |
|
331 |
val t1 = prop_from_atp ctxt true sym_tab phi1 |
|
332 |
val vars = snd (strip_comb t1) |
|
333 |
val frees = map unvarify_term vars |
|
334 |
val unvarify_args = subst_atomic (vars ~~ frees) |
|
335 |
val t2 = prop_from_atp ctxt true sym_tab phi2 |
|
336 |
val (t1, t2) = |
|
337 |
HOLogic.eq_const HOLogic.typeT $ t1 $ t2 |
|
338 |
|> unvarify_args |> uncombine_term thy |> infer_formula_types ctxt |
|
339 |
|> HOLogic.dest_eq |
|
340 |
in |
|
341 |
(Definition_Step (name, t1, t2), |
|
342 |
fold Variable.declare_term (maps Misc_Legacy.term_frees [t1, t2]) ctxt) |
|
343 |
end |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
344 |
| decode_line sym_tab (Inference_Step (name, role, u, rule, deps)) ctxt = |
49914 | 345 |
let |
346 |
val thy = Proof_Context.theory_of ctxt |
|
347 |
val t = u |> prop_from_atp ctxt true sym_tab |
|
348 |
|> uncombine_term thy |> infer_formula_types ctxt |
|
349 |
in |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
350 |
(Inference_Step (name, role, t, rule, deps), |
49914 | 351 |
fold Variable.declare_term (Misc_Legacy.term_frees t) ctxt) |
352 |
end |
|
353 |
fun decode_lines ctxt sym_tab lines = |
|
354 |
fst (fold_map (decode_line sym_tab) lines ctxt) |
|
355 |
||
356 |
fun replace_one_dependency (old, new) dep = |
|
357 |
if is_same_atp_step dep old then new else [dep] |
|
358 |
fun replace_dependencies_in_line _ (line as Definition_Step _) = line |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
359 |
| replace_dependencies_in_line p |
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
360 |
(Inference_Step (name, role, t, rule, deps)) = |
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
361 |
Inference_Step (name, role, t, rule, |
49914 | 362 |
fold (union (op =) o replace_one_dependency p) deps []) |
363 |
||
364 |
(* No "real" literals means only type information (tfree_tcs, clsrel, or |
|
365 |
clsarity). *) |
|
366 |
fun is_only_type_information t = t aconv @{term True} |
|
367 |
||
50905 | 368 |
fun s_maybe_not role = role <> Conjecture ? s_not |
369 |
||
49914 | 370 |
fun is_same_inference _ (Definition_Step _) = false |
50905 | 371 |
| is_same_inference (role, t) (Inference_Step (_, role', t', _, _)) = |
372 |
s_maybe_not role t aconv s_maybe_not role' t' |
|
49914 | 373 |
|
374 |
(* Discard facts; consolidate adjacent lines that prove the same formula, since |
|
375 |
they differ only in type information.*) |
|
376 |
fun add_line _ (line as Definition_Step _) lines = line :: lines |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
377 |
| add_line fact_names (Inference_Step (name as (_, ss), role, t, rule, [])) |
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
378 |
lines = |
49914 | 379 |
(* No dependencies: fact, conjecture, or (for Vampire) internal facts or |
380 |
definitions. *) |
|
50905 | 381 |
if is_conjecture ss then |
382 |
Inference_Step (name, role, t, rule, []) :: lines |
|
383 |
else if is_fact fact_names ss then |
|
49914 | 384 |
(* Facts are not proof lines. *) |
385 |
if is_only_type_information t then |
|
386 |
map (replace_dependencies_in_line (name, [])) lines |
|
50905 | 387 |
else |
388 |
lines |
|
49914 | 389 |
else |
390 |
map (replace_dependencies_in_line (name, [])) lines |
|
50675 | 391 |
| add_line _ (line as Inference_Step (name, role, t, rule, deps)) lines = |
49914 | 392 |
(* Type information will be deleted later; skip repetition test. *) |
393 |
if is_only_type_information t then |
|
50675 | 394 |
line :: lines |
49914 | 395 |
(* Is there a repetition? If so, replace later line by earlier one. *) |
50905 | 396 |
else case take_prefix (not o is_same_inference (role, t)) lines of |
49914 | 397 |
(* FIXME: Doesn't this code risk conflating proofs involving different |
398 |
types? *) |
|
50675 | 399 |
(_, []) => line :: lines |
400 |
| (pre, Inference_Step (name', _, _, _, _) :: post) => |
|
401 |
line :: pre @ map (replace_dependencies_in_line (name', [name])) post |
|
402 |
| _ => raise Fail "unexpected inference" |
|
49914 | 403 |
|
404 |
val waldmeister_conjecture_num = "1.0.0.0" |
|
405 |
||
406 |
val repair_waldmeister_endgame = |
|
407 |
let |
|
50905 | 408 |
fun do_tail (Inference_Step (name, _, t, rule, deps)) = |
409 |
Inference_Step (name, Negated_Conjecture, s_not t, rule, deps) |
|
49914 | 410 |
| do_tail line = line |
411 |
fun do_body [] = [] |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
412 |
| do_body ((line as Inference_Step ((num, _), _, _, _, _)) :: lines) = |
49914 | 413 |
if num = waldmeister_conjecture_num then map do_tail (line :: lines) |
414 |
else line :: do_body lines |
|
415 |
| do_body (line :: lines) = line :: do_body lines |
|
416 |
in do_body end |
|
417 |
||
418 |
(* Recursively delete empty lines (type information) from the proof. *) |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
419 |
fun add_nontrivial_line (line as Inference_Step (name, _, t, _, [])) lines = |
49914 | 420 |
if is_only_type_information t then delete_dependency name lines |
421 |
else line :: lines |
|
422 |
| add_nontrivial_line line lines = line :: lines |
|
423 |
and delete_dependency name lines = |
|
424 |
fold_rev add_nontrivial_line |
|
425 |
(map (replace_dependencies_in_line (name, [])) lines) [] |
|
426 |
||
427 |
(* ATPs sometimes reuse free variable names in the strangest ways. Removing |
|
428 |
offending lines often does the trick. *) |
|
429 |
fun is_bad_free frees (Free x) = not (member (op =) frees x) |
|
430 |
| is_bad_free _ _ = false |
|
431 |
||
50675 | 432 |
val e_skolemize_rule = "skolemize" |
433 |
val vampire_skolemisation_rule = "skolemisation" |
|
434 |
||
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
435 |
val is_skolemize_rule = |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
436 |
member (op =) [e_skolemize_rule, vampire_skolemisation_rule] |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
437 |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
438 |
fun add_desired_line _ _ (line as Definition_Step (name, _, _)) (j, lines) = |
49914 | 439 |
(j, line :: map (replace_dependencies_in_line (name, [])) lines) |
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
440 |
| add_desired_line fact_names frees |
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
441 |
(Inference_Step (name as (_, ss), role, t, rule, deps)) (j, lines) = |
49914 | 442 |
(j + 1, |
443 |
if is_fact fact_names ss orelse |
|
444 |
is_conjecture ss orelse |
|
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
445 |
is_skolemize_rule rule orelse |
49914 | 446 |
(* the last line must be kept *) |
447 |
j = 0 orelse |
|
448 |
(not (is_only_type_information t) andalso |
|
449 |
null (Term.add_tvars t []) andalso |
|
450 |
not (exists_subterm (is_bad_free frees) t) andalso |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
451 |
length deps >= 2 andalso |
49914 | 452 |
(* kill next to last line, which usually results in a trivial step *) |
453 |
j <> 1) then |
|
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
454 |
Inference_Step (name, role, t, rule, deps) :: lines (* keep line *) |
49914 | 455 |
else |
456 |
map (replace_dependencies_in_line (name, deps)) lines) (* drop line *) |
|
457 |
||
458 |
val indent_size = 2 |
|
459 |
val no_label = ("", ~1) |
|
460 |
||
49883 | 461 |
fun string_for_proof ctxt type_enc lam_trans i n = |
462 |
let |
|
463 |
fun do_indent ind = replicate_string (ind * indent_size) " " |
|
464 |
fun do_free (s, T) = |
|
465 |
maybe_quote s ^ " :: " ^ |
|
50049
dd6a4655cd72
avoid messing too much with output of "string_of_term", so that it doesn't break the yxml encoding for jEdit
blanchet
parents:
50048
diff
changeset
|
466 |
maybe_quote (simplify_spaces (with_vanilla_print_mode |
50048 | 467 |
(Syntax.string_of_typ ctxt) T)) |
49883 | 468 |
fun do_label l = if l = no_label then "" else string_for_label l ^ ": " |
469 |
fun do_have qs = |
|
470 |
(if member (op =) qs Ultimately then "ultimately " else "") ^ |
|
471 |
(if member (op =) qs Then then |
|
472 |
if member (op =) qs Show then "thus" else "hence" |
|
473 |
else |
|
474 |
if member (op =) qs Show then "show" else "have") |
|
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
475 |
fun do_obtain qs xs = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
476 |
(if member (op =) qs Then then "then " else "") ^ "obtain " ^ |
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
477 |
(space_implode " " (map fst xs)) ^ " where" |
49883 | 478 |
val do_term = |
50048 | 479 |
annotate_types ctxt |
480 |
#> with_vanilla_print_mode (Syntax.string_of_term ctxt) |
|
50049
dd6a4655cd72
avoid messing too much with output of "string_of_term", so that it doesn't break the yxml encoding for jEdit
blanchet
parents:
50048
diff
changeset
|
481 |
#> simplify_spaces |
50048 | 482 |
#> maybe_quote |
49883 | 483 |
val reconstr = Metis (type_enc, lam_trans) |
50705
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
484 |
fun do_metis ind options (ls, ss) = |
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
485 |
"\n" ^ do_indent (ind + 1) ^ options ^ |
49883 | 486 |
reconstructor_command reconstr 1 1 [] 0 |
487 |
(ls |> sort_distinct (prod_ord string_ord int_ord), |
|
488 |
ss |> sort_distinct string_ord) |
|
489 |
and do_step ind (Fix xs) = |
|
490 |
do_indent ind ^ "fix " ^ space_implode " and " (map do_free xs) ^ "\n" |
|
491 |
| do_step ind (Let (t1, t2)) = |
|
492 |
do_indent ind ^ "let " ^ do_term t1 ^ " = " ^ do_term t2 ^ "\n" |
|
493 |
| do_step ind (Assume (l, t)) = |
|
494 |
do_indent ind ^ "assume " ^ do_label l ^ do_term t ^ "\n" |
|
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
495 |
| do_step ind (Obtain (qs, xs, l, t, By_Metis facts)) = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
496 |
do_indent ind ^ do_obtain qs xs ^ " " ^ |
50705
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
497 |
do_label l ^ do_term t ^ |
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
498 |
(* The new skolemizer puts the arguments in the same order as the ATPs |
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
499 |
(E and Vampire -- but see also "atp_proof_reconstruct.ML" regarding |
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
500 |
Vampire). *) |
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
501 |
do_metis ind "using [[metis_new_skolem]] " facts ^ "\n" |
49883 | 502 |
| do_step ind (Prove (qs, l, t, By_Metis facts)) = |
503 |
do_indent ind ^ do_have qs ^ " " ^ |
|
50705
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
504 |
do_label l ^ do_term t ^ do_metis ind "" facts ^ "\n" |
49883 | 505 |
| do_step ind (Prove (qs, l, t, Case_Split (proofs, facts))) = |
506 |
implode (map (prefix (do_indent ind ^ "moreover\n") o do_block ind) |
|
507 |
proofs) ^ |
|
49921 | 508 |
do_indent ind ^ do_have qs ^ " " ^ do_label l ^ do_term t ^ |
50705
0e943b33d907
use new skolemizer for reconstructing skolemization steps in Isar proofs (because the old skolemizer messes up the order of the Skolem arguments)
blanchet
parents:
50679
diff
changeset
|
509 |
do_metis ind "" facts ^ "\n" |
49883 | 510 |
and do_steps prefix suffix ind steps = |
511 |
let val s = implode (map (do_step ind) steps) in |
|
512 |
replicate_string (ind * indent_size - size prefix) " " ^ prefix ^ |
|
513 |
String.extract (s, ind * indent_size, |
|
514 |
SOME (size s - ind * indent_size - 1)) ^ |
|
515 |
suffix ^ "\n" |
|
516 |
end |
|
517 |
and do_block ind proof = do_steps "{ " " }" (ind + 1) proof |
|
518 |
(* One-step proofs are pointless; better use the Metis one-liner |
|
519 |
directly. *) |
|
520 |
and do_proof [Prove (_, _, _, By_Metis _)] = "" |
|
521 |
| do_proof proof = |
|
522 |
(if i <> 1 then "prefer " ^ string_of_int i ^ "\n" else "") ^ |
|
523 |
do_indent 0 ^ "proof -\n" ^ do_steps "" "" 1 proof ^ do_indent 0 ^ |
|
524 |
(if n <> 1 then "next" else "qed") |
|
525 |
in do_proof end |
|
526 |
||
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
527 |
fun used_labels_of_step (Obtain (_, _, _, _, By_Metis (ls, _))) = ls |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
528 |
| used_labels_of_step (Prove (_, _, _, by)) = |
49914 | 529 |
(case by of |
530 |
By_Metis (ls, _) => ls |
|
531 |
| Case_Split (proofs, (ls, _)) => |
|
532 |
fold (union (op =) o used_labels_of) proofs ls) |
|
533 |
| used_labels_of_step _ = [] |
|
534 |
and used_labels_of proof = fold (union (op =) o used_labels_of_step) proof [] |
|
535 |
||
536 |
fun kill_useless_labels_in_proof proof = |
|
537 |
let |
|
538 |
val used_ls = used_labels_of proof |
|
539 |
fun do_label l = if member (op =) used_ls l then l else no_label |
|
540 |
fun do_step (Assume (l, t)) = Assume (do_label l, t) |
|
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
541 |
| do_step (Obtain (qs, xs, l, t, by)) = Obtain (qs, xs, do_label l, t, by) |
49914 | 542 |
| do_step (Prove (qs, l, t, by)) = |
543 |
Prove (qs, do_label l, t, |
|
544 |
case by of |
|
545 |
Case_Split (proofs, facts) => |
|
546 |
Case_Split (map (map do_step) proofs, facts) |
|
547 |
| _ => by) |
|
548 |
| do_step step = step |
|
549 |
in map do_step proof end |
|
550 |
||
551 |
fun prefix_for_depth n = replicate_string (n + 1) |
|
552 |
||
553 |
val relabel_proof = |
|
554 |
let |
|
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
555 |
fun fresh_label depth (old as (l, subst, next_have)) = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
556 |
if l = no_label then |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
557 |
old |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
558 |
else |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
559 |
let val l' = (prefix_for_depth depth have_prefix, next_have) in |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
560 |
(l', (l, l') :: subst, next_have + 1) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
561 |
end |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
562 |
fun do_facts subst = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
563 |
apfst (maps (the_list o AList.lookup (op =) subst)) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
564 |
fun do_byline subst depth by = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
565 |
case by of |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
566 |
By_Metis facts => By_Metis (do_facts subst facts) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
567 |
| Case_Split (proofs, facts) => |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
568 |
Case_Split (map (do_proof subst (depth + 1) (1, 1)) proofs, |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
569 |
do_facts subst facts) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
570 |
and do_proof _ _ _ [] = [] |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
571 |
| do_proof subst depth (next_assum, next_have) (Assume (l, t) :: proof) = |
49914 | 572 |
if l = no_label then |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
573 |
Assume (l, t) :: do_proof subst depth (next_assum, next_have) proof |
49914 | 574 |
else |
50017 | 575 |
let val l' = (prefix_for_depth depth assume_prefix, next_assum) in |
49914 | 576 |
Assume (l', t) :: |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
577 |
do_proof ((l, l') :: subst) depth (next_assum + 1, next_have) proof |
49914 | 578 |
end |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
579 |
| do_proof subst depth (next_assum, next_have) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
580 |
(Obtain (qs, xs, l, t, by) :: proof) = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
581 |
let |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
582 |
val (l, subst, next_have) = (l, subst, next_have) |> fresh_label depth |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
583 |
val by = by |> do_byline subst depth |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
584 |
in |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
585 |
Obtain (qs, xs, l, t, by) :: |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
586 |
do_proof subst depth (next_assum, next_have) proof |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
587 |
end |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
588 |
| do_proof subst depth (next_assum, next_have) |
49914 | 589 |
(Prove (qs, l, t, by) :: proof) = |
590 |
let |
|
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
591 |
val (l, subst, next_have) = (l, subst, next_have) |> fresh_label depth |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
592 |
val by = by |> do_byline subst depth |
49914 | 593 |
in |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
594 |
Prove (qs, l, t, by) :: |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
595 |
do_proof subst depth (next_assum, next_have) proof |
49914 | 596 |
end |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
597 |
| do_proof subst depth nextp (step :: proof) = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
598 |
step :: do_proof subst depth nextp proof |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
599 |
in do_proof [] 0 (1, 1) end |
49914 | 600 |
|
50004
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
601 |
val chain_direct_proof = |
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
602 |
let |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
603 |
fun label_of (Assume (l, _)) = SOME l |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
604 |
| label_of (Obtain (_, _, l, _, _)) = SOME l |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
605 |
| label_of (Prove (_, l, _, _)) = SOME l |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
606 |
| label_of _ = NONE |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
607 |
fun chain_step (SOME l0) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
608 |
(step as Obtain (qs, xs, l, t, By_Metis (lfs, gfs))) = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
609 |
if member (op =) lfs l0 then |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
610 |
Obtain (Then :: qs, xs, l, t, By_Metis (lfs |> remove (op =) l0, gfs)) |
50004
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
611 |
else |
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
612 |
step |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
613 |
| chain_step (SOME l0) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
614 |
(step as Prove (qs, l, t, By_Metis (lfs, gfs))) = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
615 |
if member (op =) lfs l0 then |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
616 |
Prove (Then :: qs, l, t, By_Metis (lfs |> remove (op =) l0, gfs)) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
617 |
else |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
618 |
step |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
619 |
| chain_step _ (Prove (qs, l, t, Case_Split (proofs, facts))) = |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
620 |
Prove (qs, l, t, Case_Split ((map (chain_proof NONE) proofs), facts)) |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
621 |
| chain_step _ step = step |
50004
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
622 |
and chain_proof _ [] = [] |
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
623 |
| chain_proof (prev as SOME _) (i :: is) = |
50672
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
624 |
chain_step prev i :: chain_proof (label_of i) is |
ab5b8b5c9cbe
added "obtain" to Isar proof construction data structure
blanchet
parents:
50671
diff
changeset
|
625 |
| chain_proof _ (i :: is) = i :: chain_proof (label_of i) is |
50004
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
626 |
in chain_proof NONE end |
49883 | 627 |
|
49914 | 628 |
type isar_params = |
50557 | 629 |
bool * bool * Time.time option * real * string Symtab.table |
50004
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
630 |
* (string * stature) list vector * int Symtab.table * string proof * thm |
49914 | 631 |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
632 |
fun isar_proof_text ctxt isar_proofs |
50020 | 633 |
(debug, verbose, preplay_timeout, isar_shrink, pool, fact_names, sym_tab, |
634 |
atp_proof, goal) |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
635 |
(one_line_params as (_, _, _, _, subgoal, subgoal_count)) = |
49883 | 636 |
let |
637 |
val (params, hyp_ts, concl_t) = strip_subgoal ctxt goal subgoal |
|
638 |
val frees = fold Term.add_frees (concl_t :: hyp_ts) [] |
|
639 |
val one_line_proof = one_line_proof_text 0 one_line_params |
|
640 |
val type_enc = |
|
641 |
if is_typed_helper_used_in_atp_proof atp_proof then full_typesN |
|
642 |
else partial_typesN |
|
643 |
val lam_trans = lam_trans_from_atp_proof atp_proof metis_default_lam_trans |
|
50557 | 644 |
val preplay = preplay_timeout <> SOME Time.zeroTime |
49883 | 645 |
|
646 |
fun isar_proof_of () = |
|
647 |
let |
|
648 |
val atp_proof = |
|
649 |
atp_proof |
|
650 |
|> clean_up_atp_proof_dependencies |
|
651 |
|> nasty_atp_proof pool |
|
652 |
|> map_term_names_in_atp_proof repair_name |
|
653 |
|> decode_lines ctxt sym_tab |
|
50905 | 654 |
|> repair_waldmeister_endgame |
49883 | 655 |
|> rpair [] |-> fold_rev (add_line fact_names) |
656 |
|> rpair [] |-> fold_rev add_nontrivial_line |
|
657 |
|> rpair (0, []) |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
658 |
|-> fold_rev (add_desired_line fact_names frees) |
49883 | 659 |
|> snd |
660 |
val conj_name = conjecture_prefix ^ string_of_int (length hyp_ts) |
|
661 |
val conjs = |
|
50010
17488e45eb5a
proper handling of assumptions arising from the goal's being expressed in rule format, for Isar proof construction
blanchet
parents:
50005
diff
changeset
|
662 |
atp_proof |> map_filter |
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
663 |
(fn Inference_Step (name as (_, ss), _, _, _, []) => |
50010
17488e45eb5a
proper handling of assumptions arising from the goal's being expressed in rule format, for Isar proof construction
blanchet
parents:
50005
diff
changeset
|
664 |
if member (op =) ss conj_name then SOME name else NONE |
17488e45eb5a
proper handling of assumptions arising from the goal's being expressed in rule format, for Isar proof construction
blanchet
parents:
50005
diff
changeset
|
665 |
| _ => NONE) |
17488e45eb5a
proper handling of assumptions arising from the goal's being expressed in rule format, for Isar proof construction
blanchet
parents:
50005
diff
changeset
|
666 |
val assms = |
17488e45eb5a
proper handling of assumptions arising from the goal's being expressed in rule format, for Isar proof construction
blanchet
parents:
50005
diff
changeset
|
667 |
atp_proof |> map_filter |
50013
cceec179bdca
use original formulas for hypotheses and conclusion to avoid mismatches
blanchet
parents:
50012
diff
changeset
|
668 |
(fn Inference_Step (name as (_, ss), _, _, _, []) => |
cceec179bdca
use original formulas for hypotheses and conclusion to avoid mismatches
blanchet
parents:
50012
diff
changeset
|
669 |
(case resolve_conjecture ss of |
cceec179bdca
use original formulas for hypotheses and conclusion to avoid mismatches
blanchet
parents:
50012
diff
changeset
|
670 |
[j] => |
cceec179bdca
use original formulas for hypotheses and conclusion to avoid mismatches
blanchet
parents:
50012
diff
changeset
|
671 |
if j = length hyp_ts then NONE |
cceec179bdca
use original formulas for hypotheses and conclusion to avoid mismatches
blanchet
parents:
50012
diff
changeset
|
672 |
else SOME (Assume (raw_label_for_name name, nth hyp_ts j)) |
cceec179bdca
use original formulas for hypotheses and conclusion to avoid mismatches
blanchet
parents:
50012
diff
changeset
|
673 |
| _ => NONE) |
50010
17488e45eb5a
proper handling of assumptions arising from the goal's being expressed in rule format, for Isar proof construction
blanchet
parents:
50005
diff
changeset
|
674 |
| _ => NONE) |
49883 | 675 |
fun dep_of_step (Definition_Step _) = NONE |
50012
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
676 |
| dep_of_step (Inference_Step (name, _, _, _, from)) = |
01cb92151a53
track formula roles in proofs and use that to determine whether the conjecture should be negated or not
blanchet
parents:
50010
diff
changeset
|
677 |
SOME (from, name) |
49883 | 678 |
val ref_graph = atp_proof |> map_filter dep_of_step |> make_ref_graph |
679 |
val axioms = axioms_of_ref_graph ref_graph conjs |
|
680 |
val tainted = tainted_atoms_of_ref_graph ref_graph conjs |
|
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
681 |
val steps = |
49883 | 682 |
Symtab.empty |
683 |
|> fold (fn Definition_Step _ => I (* FIXME *) |
|
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
684 |
| Inference_Step (name as (s, ss), role, t, rule, _) => |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
685 |
Symtab.update_new (s, (rule, |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
686 |
t |> (if member (op = o apsnd fst) tainted s then |
50905 | 687 |
s_maybe_not role |
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
688 |
#> fold exists_of (map Var (Term.add_vars t [])) |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
689 |
else |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
690 |
I)))) |
49883 | 691 |
atp_proof |
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
692 |
fun is_clause_skolemize_rule [(s, _)] = |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
693 |
Option.map (is_skolemize_rule o fst) (Symtab.lookup steps s) = |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
694 |
SOME true |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
695 |
| is_clause_skolemize_rule _ = false |
50670
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
696 |
(* The assumptions and conjecture are "prop"s; the other formulas are |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
697 |
"bool"s. *) |
50016 | 698 |
fun prop_of_clause [name as (s, ss)] = |
699 |
(case resolve_conjecture ss of |
|
700 |
[j] => if j = length hyp_ts then concl_t else nth hyp_ts j |
|
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
701 |
| _ => the_default ("", @{term False}) (Symtab.lookup steps s) |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
702 |
|> snd |> HOLogic.mk_Trueprop |> close_form) |
50016 | 703 |
| prop_of_clause names = |
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
704 |
let |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
705 |
val lits = map snd (map_filter (Symtab.lookup steps o fst) names) |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
706 |
in |
50018
4ea26c74d7ea
use implications rather than disjunctions to improve readability
blanchet
parents:
50017
diff
changeset
|
707 |
case List.partition (can HOLogic.dest_not) lits of |
4ea26c74d7ea
use implications rather than disjunctions to improve readability
blanchet
parents:
50017
diff
changeset
|
708 |
(negs as _ :: _, pos as _ :: _) => |
4ea26c74d7ea
use implications rather than disjunctions to improve readability
blanchet
parents:
50017
diff
changeset
|
709 |
HOLogic.mk_imp |
4ea26c74d7ea
use implications rather than disjunctions to improve readability
blanchet
parents:
50017
diff
changeset
|
710 |
(Library.foldr1 s_conj (map HOLogic.dest_not negs), |
4ea26c74d7ea
use implications rather than disjunctions to improve readability
blanchet
parents:
50017
diff
changeset
|
711 |
Library.foldr1 s_disj pos) |
4ea26c74d7ea
use implications rather than disjunctions to improve readability
blanchet
parents:
50017
diff
changeset
|
712 |
| _ => fold (curry s_disj) lits @{term False} |
4ea26c74d7ea
use implications rather than disjunctions to improve readability
blanchet
parents:
50017
diff
changeset
|
713 |
end |
50016 | 714 |
|> HOLogic.mk_Trueprop |> close_form |
49883 | 715 |
fun maybe_show outer c = |
716 |
(outer andalso length c = 1 andalso subset (op =) (c, conjs)) |
|
717 |
? cons Show |
|
50674 | 718 |
fun isar_step_of_direct_inf outer (Have (gamma, c)) = |
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
719 |
let |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
720 |
val l = label_of_clause c |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
721 |
val t = prop_of_clause c |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
722 |
val by = |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
723 |
By_Metis (fold (add_fact_from_dependencies fact_names) gamma |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
724 |
([], [])) |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
725 |
in |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
726 |
if is_clause_skolemize_rule c then |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
727 |
let |
50905 | 728 |
val is_fixed = |
729 |
Variable.is_declared ctxt orf can Name.dest_skolem |
|
730 |
val xs = Term.add_frees t [] |> filter_out (is_fixed o fst) |
|
50676
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
731 |
in Obtain ([], xs, l, t, by) end |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
732 |
else |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
733 |
Prove (maybe_show outer c [], l, t, by) |
83b8a5a39709
generate "obtain" steps corresponding to skolemization inferences
blanchet
parents:
50675
diff
changeset
|
734 |
end |
50674 | 735 |
| isar_step_of_direct_inf outer (Cases cases) = |
49883 | 736 |
let val c = succedent_of_cases cases in |
737 |
Prove (maybe_show outer c [Ultimately], label_of_clause c, |
|
738 |
prop_of_clause c, |
|
739 |
Case_Split (map (do_case false) cases, ([], []))) |
|
740 |
end |
|
741 |
and do_case outer (c, infs) = |
|
742 |
Assume (label_of_clause c, prop_of_clause c) :: |
|
50674 | 743 |
map (isar_step_of_direct_inf outer) infs |
50924 | 744 |
val (isar_proof, (preplay_fail, preplay_time)) = |
50004
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
745 |
ref_graph |
c96e8e40d789
several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents:
49994
diff
changeset
|
746 |
|> redirect_graph axioms tainted |
50674 | 747 |
|> map (isar_step_of_direct_inf true) |
50010
17488e45eb5a
proper handling of assumptions arising from the goal's being expressed in rule format, for Isar proof construction
blanchet
parents:
50005
diff
changeset
|
748 |
|> append assms |
50557 | 749 |
|> (if not preplay andalso isar_shrink <= 1.0 then |
50677 | 750 |
rpair (false, (true, seconds 0.0)) |
50557 | 751 |
else |
752 |
shrink_proof debug ctxt type_enc lam_trans preplay |
|
50679 | 753 |
preplay_timeout |
754 |
(if isar_proofs then isar_shrink else 1000.0)) |
|
50257 | 755 |
(* |>> reorder_proof_to_minimize_jumps (* ? *) *) |
756 |
|>> chain_direct_proof |
|
757 |
|>> kill_useless_labels_in_proof |
|
758 |
|>> relabel_proof |
|
759 |
|>> not (null params) ? cons (Fix params) |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
760 |
val isar_text = |
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
761 |
string_for_proof ctxt type_enc lam_trans subgoal subgoal_count |
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
762 |
isar_proof |
49883 | 763 |
in |
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
764 |
case isar_text of |
49883 | 765 |
"" => |
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
766 |
if isar_proofs then |
50671 | 767 |
"\nNo structured proof available (proof too simple)." |
49883 | 768 |
else |
769 |
"" |
|
770 |
| _ => |
|
50670
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
771 |
let |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
772 |
val msg = |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
773 |
(if preplay then |
50924 | 774 |
[(if preplay_fail then "may fail, " else "") ^ |
775 |
Sledgehammer_Preplay.string_of_preplay_time preplay_time] |
|
50670
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
776 |
else |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
777 |
[]) @ |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
778 |
(if verbose then |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
779 |
let val num_steps = metis_steps_total isar_proof in |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
780 |
[string_of_int num_steps ^ " step" ^ plural_s num_steps] |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
781 |
end |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
782 |
else |
eaa540986291
properly take the existential closure of skolems
blanchet
parents:
50557
diff
changeset
|
783 |
[]) |
50277 | 784 |
in |
785 |
"\n\nStructured proof " |
|
786 |
^ (commas msg |> not (null msg) ? enclose "(" ")") |
|
50450
358b6020f8b6
generalized notion of active area, where sendback is just one application;
wenzelm
parents:
50410
diff
changeset
|
787 |
^ ":\n" ^ Active.sendback_markup isar_text |
50277 | 788 |
end |
49883 | 789 |
end |
790 |
val isar_proof = |
|
791 |
if debug then |
|
792 |
isar_proof_of () |
|
793 |
else case try isar_proof_of () of |
|
794 |
SOME s => s |
|
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
795 |
| NONE => if isar_proofs then |
49883 | 796 |
"\nWarning: The Isar proof construction failed." |
797 |
else |
|
798 |
"" |
|
799 |
in one_line_proof ^ isar_proof end |
|
800 |
||
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
801 |
fun proof_text ctxt isar_proofs isar_params num_chained |
49883 | 802 |
(one_line_params as (preplay, _, _, _, _, _)) = |
49918
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
803 |
(if case preplay of Failed_to_Play _ => true | _ => isar_proofs then |
cf441f4a358b
renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents:
49917
diff
changeset
|
804 |
isar_proof_text ctxt isar_proofs isar_params |
49883 | 805 |
else |
806 |
one_line_proof_text num_chained) one_line_params |
|
807 |
||
808 |
end; |