src/HOL/Tools/Sledgehammer/sledgehammer_reconstruct.ML
author blanchet
Wed, 11 Dec 2013 22:53:32 +0800
changeset 54716 55ed20a29a8c
parent 54715 a13aa1cac0e8
child 54746 6db5fbc02436
permissions -rw-r--r--
reverse order in which lines are selected, to ensure that the number of dependencies is accurate
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     1
(*  Title:      HOL/Tools/Sledgehammer/sledgehammer_reconstruct.ML
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     3
    Author:     Steffen Juilf Smolka, TU Muenchen
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     4
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
     5
Isar proof reconstruction from ATP proofs.
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     6
*)
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     7
52374
blanchet
parents: 52369
diff changeset
     8
signature SLEDGEHAMMER_RECONSTRUCT =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     9
sig
54495
237d5be57277 refactored
blanchet
parents: 54093
diff changeset
    10
  type ('a, 'b) atp_step = ('a, 'b) ATP_Proof.atp_step
53586
bd5fa6425993 prefixed types and some functions with "atp_" for disambiguation
blanchet
parents: 53052
diff changeset
    11
  type 'a atp_proof = 'a ATP_Proof.atp_proof
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    12
  type stature = ATP_Problem_Generate.stature
54495
237d5be57277 refactored
blanchet
parents: 54093
diff changeset
    13
  type one_line_params = Sledgehammer_Reconstructor.one_line_params
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    14
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    15
  type isar_params =
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    16
    bool * bool * string * string * Time.time option * real * bool * (term, string) atp_step list *
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    17
    thm
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    18
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    19
  val isar_proof_text :
53052
a0db255af8c5 sledgehammer sendback always uses Markup.padding_command: sensible default for most practical applications -- old-style in-line replacement is superseded by auto mode or panel;
wenzelm
parents: 53047
diff changeset
    20
    Proof.context -> bool option -> isar_params -> one_line_params -> string
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    21
  val proof_text :
54500
f625e0e79dd1 refactoring
blanchet
parents: 54499
diff changeset
    22
    Proof.context -> bool option -> (unit -> isar_params) -> int -> one_line_params -> string
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    23
end;
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    24
52374
blanchet
parents: 52369
diff changeset
    25
structure Sledgehammer_Reconstruct : SLEDGEHAMMER_RECONSTRUCT =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    26
struct
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    27
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    28
open ATP_Util
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    29
open ATP_Problem
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    30
open ATP_Proof
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    31
open ATP_Problem_Generate
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    32
open ATP_Proof_Reconstruct
49918
cf441f4a358b renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents: 49917
diff changeset
    33
open Sledgehammer_Util
52555
6811291d1869 moved code -> easier debugging
smolkas
parents: 52454
diff changeset
    34
open Sledgehammer_Reconstructor
50264
a9ec48b98734 renamed sledgehammer_isar_reconstruct to sledgehammer_proof
smolkas
parents: 50262
diff changeset
    35
open Sledgehammer_Proof
50258
1c708d7728c7 put annotate in own structure
smolkas
parents: 50257
diff changeset
    36
open Sledgehammer_Annotate
52555
6811291d1869 moved code -> easier debugging
smolkas
parents: 52454
diff changeset
    37
open Sledgehammer_Print
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52555
diff changeset
    38
open Sledgehammer_Preplay
51130
76d68444cd59 renamed sledgehammer_shrink to sledgehammer_compress
smolkas
parents: 51129
diff changeset
    39
open Sledgehammer_Compress
52592
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52556
diff changeset
    40
open Sledgehammer_Try0
52611
831f7479c74f minimize dependencies (used facts) of Isar proof steps; remove unreferenced steps
smolkas
parents: 52592
diff changeset
    41
open Sledgehammer_Minimize_Isar
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    42
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    43
structure String_Redirect = ATP_Proof_Redirect(
53586
bd5fa6425993 prefixed types and some functions with "atp_" for disambiguation
blanchet
parents: 53052
diff changeset
    44
  type key = atp_step_name
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    45
  val ord = fn ((s, _ : string list), (s', _)) => fast_string_ord (s, s')
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    46
  val string_of = fst)
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    47
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    48
open String_Redirect
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    49
54501
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
    50
fun raw_label_of_num num = (num, 0)
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    51
54501
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
    52
fun label_of_clause [(num, _)] = raw_label_of_num num
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
    53
  | label_of_clause c = (space_implode "___" (map (fst o raw_label_of_num o fst) c), 0)
50005
e9a9bff107da handle non-unit clauses gracefully
blanchet
parents: 50004
diff changeset
    54
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    55
fun add_fact_of_dependencies [(_, ss as _ :: _)] = apsnd (union (op =) ss)
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    56
  | add_fact_of_dependencies names = apfst (insert (op =) (label_of_clause names))
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    57
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    58
fun replace_one_dependency (old, new) dep =
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    59
  if is_same_atp_step dep old then new else [dep]
51201
f176855a1ee2 tuning (removed redundant datatype)
blanchet
parents: 51200
diff changeset
    60
fun replace_dependencies_in_line p (name, role, t, rule, deps) =
f176855a1ee2 tuning (removed redundant datatype)
blanchet
parents: 51200
diff changeset
    61
  (name, role, t, rule, fold (union (op =) o replace_one_dependency p) deps [])
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    62
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    63
(* No "real" literals means only type information (tfree_tcs, clsrel, or
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    64
   clsarity). *)
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    65
fun is_only_type_information t = t aconv @{term True}
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    66
51201
f176855a1ee2 tuning (removed redundant datatype)
blanchet
parents: 51200
diff changeset
    67
fun is_same_inference (role, t) (_, role', t', _, _) =
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
    68
  (t |> role = Conjecture ? s_not) aconv (t' |> role' = Conjecture ? s_not)
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    69
54715
a13aa1cac0e8 truncate proof once False is hit to avoid confusing the rest of the code (no idea why Z3 goes on)
blanchet
parents: 54712
diff changeset
    70
fun is_False t = t aconv @{term False} orelse t aconv @{prop False}
a13aa1cac0e8 truncate proof once False is hit to avoid confusing the rest of the code (no idea why Z3 goes on)
blanchet
parents: 54712
diff changeset
    71
a13aa1cac0e8 truncate proof once False is hit to avoid confusing the rest of the code (no idea why Z3 goes on)
blanchet
parents: 54712
diff changeset
    72
fun truncate_at_false [] = []
a13aa1cac0e8 truncate proof once False is hit to avoid confusing the rest of the code (no idea why Z3 goes on)
blanchet
parents: 54712
diff changeset
    73
  | truncate_at_false ((line as (_, role, t, _, _)) :: lines) =
a13aa1cac0e8 truncate proof once False is hit to avoid confusing the rest of the code (no idea why Z3 goes on)
blanchet
parents: 54712
diff changeset
    74
    line :: (if role <> Conjecture andalso is_False t then [] else truncate_at_false lines)
a13aa1cac0e8 truncate proof once False is hit to avoid confusing the rest of the code (no idea why Z3 goes on)
blanchet
parents: 54712
diff changeset
    75
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    76
(* Discard facts; consolidate adjacent lines that prove the same formula, since
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    77
   they differ only in type information.*)
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    78
fun add_line (name as (_, ss), role, t, rule, []) lines =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
    79
    (* No dependencies: lemma (for Z3), fact, conjecture, or (for Vampire)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
    80
       internal facts or definitions. *)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
    81
    if role = Lemma orelse role = Conjecture orelse role = Negated_Conjecture orelse
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
    82
       role = Hypothesis then
51201
f176855a1ee2 tuning (removed redundant datatype)
blanchet
parents: 51200
diff changeset
    83
      (name, role, t, rule, []) :: lines
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    84
    else if role = Axiom then
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    85
      (* Facts are not proof lines. *)
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
    86
      lines |> is_only_type_information t ? map (replace_dependencies_in_line (name, []))
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    87
    else
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    88
      map (replace_dependencies_in_line (name, [])) lines
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    89
  | add_line (line as (name, role, t, _, _)) lines =
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    90
    (* Type information will be deleted later; skip repetition test. *)
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    91
    if is_only_type_information t then
50675
e3e707c8ac57 keep E's and Vampire's skolemization steps
blanchet
parents: 50674
diff changeset
    92
      line :: lines
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
    93
    else
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
    94
      (* Is there a repetition? If so, replace later line by earlier one. *)
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
    95
      (case take_prefix (not o is_same_inference (role, t)) lines of
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
    96
        (_, []) => line :: lines
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
    97
      | (pre, (name', _, _, _, _) :: post) =>
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
    98
        line :: pre @ map (replace_dependencies_in_line (name', [name])) post)
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    99
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   100
(* Recursively delete empty lines (type information) from the proof. *)
51201
f176855a1ee2 tuning (removed redundant datatype)
blanchet
parents: 51200
diff changeset
   101
fun add_nontrivial_line (line as (name, _, t, _, [])) lines =
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   102
    if is_only_type_information t then delete_dependency name lines else line :: lines
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   103
  | add_nontrivial_line line lines = line :: lines
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   104
and delete_dependency name lines =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   105
  fold_rev add_nontrivial_line (map (replace_dependencies_in_line (name, [])) lines) []
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   106
50675
e3e707c8ac57 keep E's and Vampire's skolemization steps
blanchet
parents: 50674
diff changeset
   107
val e_skolemize_rule = "skolemize"
e3e707c8ac57 keep E's and Vampire's skolemization steps
blanchet
parents: 50674
diff changeset
   108
val vampire_skolemisation_rule = "skolemisation"
e3e707c8ac57 keep E's and Vampire's skolemization steps
blanchet
parents: 50674
diff changeset
   109
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   110
val is_skolemize_rule = member (op =) [e_skolemize_rule, vampire_skolemisation_rule]
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   111
54716
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   112
fun add_desired_lines res [] = rev res
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   113
  | add_desired_lines res ((name as (_, ss), role, t, rule, deps) :: lines) =
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   114
    if role <> Plain orelse is_skolemize_rule rule orelse
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   115
       (* the last line must be kept *)
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   116
       null lines orelse
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   117
       (not (is_only_type_information t) andalso
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   118
        null (Term.add_tvars t []) andalso
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   119
        length deps >= 2 andalso
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   120
        (* don't keep next to last line, which usually results in a trivial step *)
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   121
        not (can the_single lines)) then
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   122
      add_desired_lines ((name, role, t, rule, deps) :: res) lines
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   123
    else
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   124
      add_desired_lines res (map (replace_dependencies_in_line (name, deps)) lines)
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   125
52454
b528a975b256 tuned: cleaned up data structure
smolkas
parents: 52453
diff changeset
   126
val add_labels_of_proof =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   127
  steps_of_proof
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   128
  #> fold_isar_steps (byline_of_step #> (fn SOME ((ls, _), _) => union (op =) ls | _ => I))
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   129
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   130
fun kill_useless_labels_in_proof proof =
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   131
  let
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51165
diff changeset
   132
    val used_ls = add_labels_of_proof proof []
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   133
    fun kill_label l = if member (op =) used_ls l then l else no_label
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   134
    fun kill_assms assms = map (apfst kill_label) assms
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   135
    fun kill_step (Prove (qs, xs, l, t, subproofs, by)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   136
        Prove (qs, xs, kill_label l, t, map kill_proof subproofs, by)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   137
      | kill_step step = step
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   138
    and kill_proof (Proof (fix, assms, steps)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   139
      Proof (fix, kill_assms assms, map kill_step steps)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   140
  in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   141
    kill_proof proof
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   142
  end
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   143
51998
f732a674db1b renamed Sledgehammer functions with 'for' in their names to 'of'
blanchet
parents: 51976
diff changeset
   144
fun prefix_of_depth n = replicate_string (n + 1)
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   145
54501
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
   146
val assume_prefix = "a"
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
   147
val have_prefix = "f"
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
   148
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   149
val relabel_proof =
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   150
  let
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   151
    fun fresh_label depth prefix (old as (l, subst, next)) =
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   152
      if l = no_label then
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   153
        old
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   154
      else
51998
f732a674db1b renamed Sledgehammer functions with 'for' in their names to 'of'
blanchet
parents: 51976
diff changeset
   155
        let val l' = (prefix_of_depth depth prefix, next) in
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   156
          (l', (l, l') :: subst, next + 1)
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   157
        end
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   158
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   159
    fun relabel_facts subst = apfst (maps (the_list o AList.lookup (op =) subst))
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   160
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   161
    fun relabel_assm depth (l, t) (subst, next) =
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   162
      let val (l, subst, next) = (l, subst, next) |> fresh_label depth assume_prefix in
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   163
        ((l, t), (subst, next))
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   164
      end
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   165
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   166
    fun relabel_assms subst depth assms = fold_map (relabel_assm depth) assms (subst, 1) ||> fst
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   167
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   168
    fun relabel_steps _ _ _ [] = []
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   169
      | relabel_steps subst depth next (Prove (qs, xs, l, t, sub, by) :: steps) =
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   170
        let
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   171
          val (l, subst, next) = (l, subst, next) |> fresh_label depth have_prefix
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   172
          val sub = relabel_proofs subst depth sub
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   173
          val by = by |> relabel_byline subst
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   174
        in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   175
          Prove (qs, xs, l, t, sub, by) :: relabel_steps subst depth next steps
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   176
        end
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   177
      | relabel_steps subst depth next (step :: steps) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   178
        step :: relabel_steps subst depth next steps
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   179
    and relabel_proof subst depth (Proof (fix, assms, steps)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   180
      let val (assms, subst) = relabel_assms subst depth assms in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   181
        Proof (fix, assms, relabel_steps subst depth 1 steps)
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   182
      end
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   183
    and relabel_byline subst byline = apfst (relabel_facts subst) byline
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   184
    and relabel_proofs subst depth = map (relabel_proof subst (depth + 1))
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   185
  in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   186
    relabel_proof [] 0
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   187
  end
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   188
50004
c96e8e40d789 several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents: 49994
diff changeset
   189
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
   190
  let
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   191
    fun chain_qs_lfs NONE lfs = ([], lfs)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   192
      | chain_qs_lfs (SOME l0) lfs =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   193
        if member (op =) lfs l0 then ([Then], lfs |> remove (op =) l0) else ([], lfs)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   194
    fun chain_step lbl (Prove (qs, xs, l, t, subproofs, ((lfs, gfs), method))) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   195
        let val (qs', lfs) = chain_qs_lfs lbl lfs in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   196
          Prove (qs' @ qs, xs, l, t, chain_proofs subproofs, ((lfs, gfs), method))
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   197
        end
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   198
      | chain_step _ step = step
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   199
    and chain_steps _ [] = []
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   200
      | chain_steps (prev as SOME _) (i :: is) =
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   201
        chain_step prev i :: chain_steps (label_of_step i) is
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   202
      | chain_steps _ (i :: is) = i :: chain_steps (label_of_step i) is
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   203
    and chain_proof (Proof (fix, assms, steps)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   204
      Proof (fix, assms, chain_steps (try (List.last #> fst) assms) steps)
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   205
    and chain_proofs proofs = map (chain_proof) proofs
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   206
  in chain_proof end
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   207
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   208
fun maybe_mk_Trueprop t = t |> fastype_of t = HOLogic.boolT ? HOLogic.mk_Trueprop
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   209
val maybe_dest_Trueprop = perhaps (try HOLogic.dest_Trueprop)
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   210
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   211
type isar_params =
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   212
  bool * bool * string * string * Time.time option * real * bool * (term, string) atp_step list *
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   213
  thm
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   214
53052
a0db255af8c5 sledgehammer sendback always uses Markup.padding_command: sensible default for most practical applications -- old-style in-line replacement is superseded by auto mode or panel;
wenzelm
parents: 53047
diff changeset
   215
fun isar_proof_text ctxt isar_proofs
54500
f625e0e79dd1 refactoring
blanchet
parents: 54499
diff changeset
   216
    (debug, verbose, metis_type_enc, metis_lam_trans, preplay_timeout, isar_compress,
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   217
     isar_try0, atp_proof, goal)
49918
cf441f4a358b renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents: 49917
diff changeset
   218
    (one_line_params as (_, _, _, _, subgoal, subgoal_count)) =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   219
  let
52196
2281f33e8da6 redid rac7830871177 to avoid duplicate fixed variable (e.g. lemma "P (a::nat)" proof - have "!!a::int. Q a" sledgehammer [e])
blanchet
parents: 52150
diff changeset
   220
    val (params, hyp_ts, concl_t) = strip_subgoal goal subgoal ctxt
2281f33e8da6 redid rac7830871177 to avoid duplicate fixed variable (e.g. lemma "P (a::nat)" proof - have "!!a::int. Q a" sledgehammer [e])
blanchet
parents: 52150
diff changeset
   221
    val (_, ctxt) =
2281f33e8da6 redid rac7830871177 to avoid duplicate fixed variable (e.g. lemma "P (a::nat)" proof - have "!!a::int. Q a" sledgehammer [e])
blanchet
parents: 52150
diff changeset
   222
      params
2281f33e8da6 redid rac7830871177 to avoid duplicate fixed variable (e.g. lemma "P (a::nat)" proof - have "!!a::int. Q a" sledgehammer [e])
blanchet
parents: 52150
diff changeset
   223
      |> map (fn (s, T) => (Binding.name s, SOME T, NoSyn))
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   224
      |> (fn fixes => ctxt |> Variable.set_body false |> Proof_Context.add_fixes fixes)
53052
a0db255af8c5 sledgehammer sendback always uses Markup.padding_command: sensible default for most practical applications -- old-style in-line replacement is superseded by auto mode or panel;
wenzelm
parents: 53047
diff changeset
   225
    val one_line_proof = one_line_proof_text 0 one_line_params
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52555
diff changeset
   226
    val do_preplay = preplay_timeout <> SOME Time.zeroTime
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   227
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   228
    fun get_role keep_role ((num, _), role, t, _, _) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   229
      if keep_role role then SOME (raw_label_of_num num, t) else NONE
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   230
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   231
    fun isar_proof_of () =
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   232
      let
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   233
        val atp_proof =
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   234
          atp_proof
54715
a13aa1cac0e8 truncate proof once False is hit to avoid confusing the rest of the code (no idea why Z3 goes on)
blanchet
parents: 54712
diff changeset
   235
          |> truncate_at_false
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   236
          |> rpair [] |-> fold_rev add_line
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   237
          |> rpair [] |-> fold_rev add_nontrivial_line
54716
55ed20a29a8c reverse order in which lines are selected, to ensure that the number of dependencies is accurate
blanchet
parents: 54715
diff changeset
   238
          |> add_desired_lines []
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   239
54535
59737a43e044 support Negated_Conjecture as a TPTP role as well (e.g. for SMT proofs)
blanchet
parents: 54507
diff changeset
   240
        val conjs =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   241
          map_filter (fn (name, role, _, _, _) =>
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   242
              if member (op =) [Conjecture, Negated_Conjecture] role then SOME name else NONE)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   243
            atp_proof
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   244
        val assms = map_filter (get_role (curry (op =) Hypothesis)) atp_proof
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   245
        val lems =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   246
          map_filter (get_role (curry (op =) Lemma)) atp_proof
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   247
          |> map (fn (l, t) => Prove ([], [], l, maybe_mk_Trueprop t, [], (([], []), ArithM)))
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   248
51212
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   249
        val bot = atp_proof |> List.last |> #1
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   250
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   251
        val refute_graph =
51212
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   252
          atp_proof
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   253
          |> map (fn (name, _, _, _, from) => (from, name))
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   254
          |> make_refute_graph bot
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   255
          |> fold (Atom_Graph.default_node o rpair ()) conjs
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   256
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   257
        val axioms = axioms_of_refute_graph refute_graph conjs
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   258
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   259
        val tainted = tainted_atoms_of_refute_graph refute_graph conjs
51156
cbb640c3d203 made check for conjecture skolemization sound
blanchet
parents: 51149
diff changeset
   260
        val is_clause_tainted = exists (member (op =) tainted)
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   261
        val steps =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   262
          Symtab.empty
51201
f176855a1ee2 tuning (removed redundant datatype)
blanchet
parents: 51200
diff changeset
   263
          |> fold (fn (name as (s, _), role, t, rule, _) =>
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   264
                      Symtab.update_new (s, (rule,
51156
cbb640c3d203 made check for conjecture skolemization sound
blanchet
parents: 51149
diff changeset
   265
                        t |> (if is_clause_tainted [name] then
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   266
                                role <> Conjecture ? (maybe_dest_Trueprop #> s_not)
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   267
                                #> fold exists_of (map Var (Term.add_vars t []))
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   268
                              else
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   269
                                I))))
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   270
                  atp_proof
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   271
51148
2246a2e17f92 tuning -- refactoring in preparation for handling skolemization of conjecture
blanchet
parents: 51147
diff changeset
   272
        fun is_clause_skolemize_rule [(s, _)] =
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   273
            Option.map (is_skolemize_rule o fst) (Symtab.lookup steps s) = SOME true
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   274
          | is_clause_skolemize_rule _ = false
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   275
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   276
        (* The assumptions and conjecture are "prop"s; the other formulas are "bool"s (for ATPs) or
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   277
           "prop"s (for Z3). TODO: Always use "prop". *)
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   278
        fun prop_of_clause [(num, _)] =
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
   279
            Symtab.lookup steps num |> the |> snd |> maybe_mk_Trueprop |> close_form
50016
0ae5328ded8c fixed more "Trueprop" issues
blanchet
parents: 50015
diff changeset
   280
          | prop_of_clause names =
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   281
            let
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   282
              val lits =
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   283
                map (maybe_dest_Trueprop o snd) (map_filter (Symtab.lookup steps o fst) names)
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   284
            in
50018
4ea26c74d7ea use implications rather than disjunctions to improve readability
blanchet
parents: 50017
diff changeset
   285
              case List.partition (can HOLogic.dest_not) lits of
4ea26c74d7ea use implications rather than disjunctions to improve readability
blanchet
parents: 50017
diff changeset
   286
                (negs as _ :: _, pos as _ :: _) =>
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   287
                s_imp (Library.foldr1 s_conj (map HOLogic.dest_not negs), Library.foldr1 s_disj pos)
50018
4ea26c74d7ea use implications rather than disjunctions to improve readability
blanchet
parents: 50017
diff changeset
   288
              | _ => fold (curry s_disj) lits @{term False}
4ea26c74d7ea use implications rather than disjunctions to improve readability
blanchet
parents: 50017
diff changeset
   289
            end
50016
0ae5328ded8c fixed more "Trueprop" issues
blanchet
parents: 50015
diff changeset
   290
            |> HOLogic.mk_Trueprop |> close_form
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   291
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   292
        val is_fixed = Variable.is_declared ctxt orf can Name.dest_skolem
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   293
        fun skolems_of t = Term.add_frees t [] |> filter_out (is_fixed o fst) |> rev
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   294
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   295
        fun maybe_show outer c =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   296
          (outer andalso length c = 1 andalso subset (op =) (c, conjs)) ? cons Show
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   297
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   298
        fun isar_steps outer predecessor accum [] =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   299
            accum
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   300
            |> (if tainted = [] then
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   301
                  cons (Prove (if outer then [Show] else [], [], no_label, concl_t, [],
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   302
                               (([the predecessor], []), MetisM)))
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   303
                else
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   304
                  I)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   305
            |> rev
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   306
          | isar_steps outer _ accum (Have (gamma, c) :: infs) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   307
            let
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   308
              val l = label_of_clause c
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   309
              val t = prop_of_clause c
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   310
              val by = (fold add_fact_of_dependencies gamma no_facts, MetisM)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   311
              fun prove sub by = Prove (maybe_show outer c [], [], l, t, sub, by)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   312
              fun do_rest l step = isar_steps outer (SOME l) (step :: accum) infs
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   313
            in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   314
              if is_clause_tainted c then
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   315
                (case gamma of
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   316
                  [g] =>
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   317
                  if is_clause_skolemize_rule g andalso is_clause_tainted g then
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   318
                    let
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   319
                      val subproof = Proof (skolems_of (prop_of_clause g), [], rev accum)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   320
                    in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   321
                      isar_steps outer (SOME l) [prove [subproof] (no_facts, MetisM)] []
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   322
                    end
51148
2246a2e17f92 tuning -- refactoring in preparation for handling skolemization of conjecture
blanchet
parents: 51147
diff changeset
   323
                  else
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   324
                    do_rest l (prove [] by)
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   325
                | _ => do_rest l (prove [] by))
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   326
              else
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   327
                if is_clause_skolemize_rule c then
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   328
                  do_rest l (Prove ([], skolems_of t, l, t, [], by))
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   329
                else
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   330
                  do_rest l (prove [] by)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   331
            end
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   332
          | isar_steps outer predecessor accum (Cases cases :: infs) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   333
            let
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   334
              fun isar_case (c, infs) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   335
                isar_proof false [] [(label_of_clause c, prop_of_clause c)] [] infs
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   336
              val c = succedent_of_cases cases
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   337
              val l = label_of_clause c
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   338
              val t = prop_of_clause c
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   339
              val step =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   340
                Prove (maybe_show outer c [], [], l, t, map isar_case cases,
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   341
                  ((the_list predecessor, []), MetisM))
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   342
            in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   343
              isar_steps outer (SOME l) (step :: accum) infs
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   344
            end
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   345
        and isar_proof outer fix assms lems infs =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   346
          Proof (fix, assms, lems @ isar_steps outer NONE [] infs)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   347
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   348
        val isar_proof_of_direct_proof = isar_proof true params assms lems
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   349
52592
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52556
diff changeset
   350
        (* 60 seconds seems like a good interpreation of "no timeout" *)
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52556
diff changeset
   351
        val preplay_timeout = preplay_timeout |> the_default (seconds 60.0)
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52556
diff changeset
   352
51741
blanchet
parents: 51258
diff changeset
   353
        val clean_up_labels_in_proof =
51165
blanchet
parents: 51164
diff changeset
   354
          chain_direct_proof
blanchet
parents: 51164
diff changeset
   355
          #> kill_useless_labels_in_proof
blanchet
parents: 51164
diff changeset
   356
          #> relabel_proof
53761
4d34e267fba9 use configuration mechanism for low-level tracing
blanchet
parents: 53586
diff changeset
   357
        val (preplay_interface as {overall_preplay_stats, ...}, isar_proof) =
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   358
          refute_graph
54699
65c4fd04b5b2 useful debugging info
blanchet
parents: 54535
diff changeset
   359
(*
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   360
          |> tap (tracing o prefix "REFUTE GRAPH: " o string_of_refute_graph)
54699
65c4fd04b5b2 useful debugging info
blanchet
parents: 54535
diff changeset
   361
*)
51031
63d71b247323 more robustness in Isar proof reconstruction (cf. bug report by Ondrej)
blanchet
parents: 51026
diff changeset
   362
          |> redirect_graph axioms tainted bot
54699
65c4fd04b5b2 useful debugging info
blanchet
parents: 54535
diff changeset
   363
(*
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   364
          |> tap (tracing o prefix "DIRECT PROOF: " o string_of_direct_proof)
54699
65c4fd04b5b2 useful debugging info
blanchet
parents: 54535
diff changeset
   365
*)
51179
0d5f8812856f split isar_step into isar_step, fix, assms; made isar_proof explicit; register fixed variables in ctxt and auto_fix terms to avoid superfluous annotations
smolkas
parents: 51178
diff changeset
   366
          |> isar_proof_of_direct_proof
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   367
          |> postprocess_remove_unreferenced_steps I
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52555
diff changeset
   368
          |> relabel_proof_canonically
54500
f625e0e79dd1 refactoring
blanchet
parents: 54499
diff changeset
   369
          |> `(proof_preplay_interface debug ctxt metis_type_enc metis_lam_trans do_preplay
53761
4d34e267fba9 use configuration mechanism for low-level tracing
blanchet
parents: 53586
diff changeset
   370
               preplay_timeout)
52626
79a4e7f8d758 cleaner preplay interface
smolkas
parents: 52611
diff changeset
   371
        val ((preplay_time, preplay_fail), isar_proof) =
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52555
diff changeset
   372
          isar_proof
54501
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
   373
          |> compress_proof (if isar_proofs = SOME true then isar_compress else 1000.0)
53762
06510d01a07b hard-coded an obscure option
blanchet
parents: 53761
diff changeset
   374
               preplay_interface
52632
23393c31c7fe added sledgehammer parameters isar_try0 and isar_minimize and their negative aliases
smolkas
parents: 52626
diff changeset
   375
          |> isar_try0 ? try0 preplay_timeout preplay_interface
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   376
          |> postprocess_remove_unreferenced_steps (isar_try0 ? min_deps_of_step preplay_interface)
52626
79a4e7f8d758 cleaner preplay interface
smolkas
parents: 52611
diff changeset
   377
          |> `overall_preplay_stats
79a4e7f8d758 cleaner preplay interface
smolkas
parents: 52611
diff changeset
   378
          ||> clean_up_labels_in_proof
54500
f625e0e79dd1 refactoring
blanchet
parents: 54499
diff changeset
   379
        val isar_text =
f625e0e79dd1 refactoring
blanchet
parents: 54499
diff changeset
   380
          string_of_proof ctxt metis_type_enc metis_lam_trans subgoal subgoal_count isar_proof
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   381
      in
49918
cf441f4a358b renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents: 49917
diff changeset
   382
        case isar_text of
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   383
          "" =>
51190
2654b3965c8d made "isar_proofs" a 3-way option, to provide a way to totally disable isar_proofs if desired
blanchet
parents: 51187
diff changeset
   384
          if isar_proofs = SOME true then
50671
blanchet
parents: 50670
diff changeset
   385
            "\nNo structured proof available (proof too simple)."
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   386
          else
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   387
            ""
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   388
        | _ =>
50670
eaa540986291 properly take the existential closure of skolems
blanchet
parents: 50557
diff changeset
   389
          let
eaa540986291 properly take the existential closure of skolems
blanchet
parents: 50557
diff changeset
   390
            val msg =
51203
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   391
              (if verbose then
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   392
                let
52592
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52556
diff changeset
   393
                  val num_steps = add_proof_steps (steps_of_proof isar_proof) 0
51203
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   394
                in [string_of_int num_steps ^ " step" ^ plural_s num_steps] end
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   395
               else
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   396
                 []) @
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52555
diff changeset
   397
              (if do_preplay then
50924
beb95bf66b21 changed type of preplay time; tuned preplaying
smolkas
parents: 50905
diff changeset
   398
                [(if preplay_fail then "may fail, " else "") ^
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52555
diff changeset
   399
                   string_of_preplay_time preplay_time]
50670
eaa540986291 properly take the existential closure of skolems
blanchet
parents: 50557
diff changeset
   400
               else
eaa540986291 properly take the existential closure of skolems
blanchet
parents: 50557
diff changeset
   401
                 [])
50277
e0a4d8404c76 tweaked calculation of sledgehammer messages
smolkas
parents: 50276
diff changeset
   402
          in
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   403
            "\n\nStructured proof" ^ (commas msg |> not (null msg) ? enclose " (" ")") ^ ":\n" ^
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   404
            Active.sendback_markup [Markup.padding_command] isar_text
50277
e0a4d8404c76 tweaked calculation of sledgehammer messages
smolkas
parents: 50276
diff changeset
   405
          end
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   406
      end
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   407
    val isar_proof =
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   408
      if debug then
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   409
        isar_proof_of ()
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   410
      else case try isar_proof_of () of
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   411
        SOME s => s
51190
2654b3965c8d made "isar_proofs" a 3-way option, to provide a way to totally disable isar_proofs if desired
blanchet
parents: 51187
diff changeset
   412
      | NONE => if isar_proofs = SOME true then
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   413
                  "\nWarning: The Isar proof construction failed."
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   414
                else
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   415
                  ""
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   416
  in one_line_proof ^ isar_proof end
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   417
51187
c344cf148e8f avoid using "smt" for minimization -- better use the prover itself, since then Sledgehammer gets to try metis again and gives the opportunity to output an Isar proof -- and show Isar proof as fallback for SMT proofs
blanchet
parents: 51179
diff changeset
   418
fun isar_proof_would_be_a_good_idea preplay =
c344cf148e8f avoid using "smt" for minimization -- better use the prover itself, since then Sledgehammer gets to try metis again and gives the opportunity to output an Isar proof -- and show Isar proof as fallback for SMT proofs
blanchet
parents: 51179
diff changeset
   419
  case preplay of
c344cf148e8f avoid using "smt" for minimization -- better use the prover itself, since then Sledgehammer gets to try metis again and gives the opportunity to output an Isar proof -- and show Isar proof as fallback for SMT proofs
blanchet
parents: 51179
diff changeset
   420
    Played (reconstr, _) => reconstr = SMT
54093
4e299e2c762d no isar proofs if preplay was not attempted
blanchet
parents: 53764
diff changeset
   421
  | Trust_Playable _ => false
51187
c344cf148e8f avoid using "smt" for minimization -- better use the prover itself, since then Sledgehammer gets to try metis again and gives the opportunity to output an Isar proof -- and show Isar proof as fallback for SMT proofs
blanchet
parents: 51179
diff changeset
   422
  | Failed_to_Play _ => true
c344cf148e8f avoid using "smt" for minimization -- better use the prover itself, since then Sledgehammer gets to try metis again and gives the opportunity to output an Isar proof -- and show Isar proof as fallback for SMT proofs
blanchet
parents: 51179
diff changeset
   423
53052
a0db255af8c5 sledgehammer sendback always uses Markup.padding_command: sensible default for most practical applications -- old-style in-line replacement is superseded by auto mode or panel;
wenzelm
parents: 53047
diff changeset
   424
fun proof_text ctxt isar_proofs isar_params num_chained
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   425
               (one_line_params as (preplay, _, _, _, _, _)) =
51190
2654b3965c8d made "isar_proofs" a 3-way option, to provide a way to totally disable isar_proofs if desired
blanchet
parents: 51187
diff changeset
   426
  (if isar_proofs = SOME true orelse
2654b3965c8d made "isar_proofs" a 3-way option, to provide a way to totally disable isar_proofs if desired
blanchet
parents: 51187
diff changeset
   427
      (isar_proofs = NONE andalso isar_proof_would_be_a_good_idea preplay) then
54500
f625e0e79dd1 refactoring
blanchet
parents: 54499
diff changeset
   428
     isar_proof_text ctxt isar_proofs (isar_params ())
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   429
   else
53052
a0db255af8c5 sledgehammer sendback always uses Markup.padding_command: sensible default for most practical applications -- old-style in-line replacement is superseded by auto mode or panel;
wenzelm
parents: 53047
diff changeset
   430
     one_line_proof_text num_chained) one_line_params
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   431
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   432
end;