src/HOL/Tools/Sledgehammer/sledgehammer_isar.ML
author blanchet
Fri, 31 Jan 2014 18:43:16 +0100
changeset 55218 ed495a5088c6
parent 55214 48a347b40629
child 55219 6fe9fd75f9d7
permissions -rw-r--r--
more informative trace
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
     1
(*  Title:      HOL/Tools/Sledgehammer/sledgehammer_isar.ML
49883
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
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
     8
signature SLEDGEHAMMER_ISAR =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
     9
sig
54771
85879aa61334 move some Z3 specifics out (and into private repository with the rest of the Z3-specific code)
blanchet
parents: 54770
diff changeset
    10
  type atp_step_name = ATP_Proof.atp_step_name
54495
237d5be57277 refactored
blanchet
parents: 54093
diff changeset
    11
  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
    12
  type 'a atp_proof = 'a ATP_Proof.atp_proof
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    13
  type stature = ATP_Problem_Generate.stature
54495
237d5be57277 refactored
blanchet
parents: 54093
diff changeset
    14
  type one_line_params = Sledgehammer_Reconstructor.one_line_params
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    15
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    16
  type isar_params =
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
    17
    bool * string * string * Time.time * real * bool * (term, string) atp_step list * thm
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    18
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
    19
  val proof_text : Proof.context -> bool -> bool option -> (unit -> isar_params) -> int ->
54760
a1ac3eaa0d11 generate proper succedent for cases with trivial branches
blanchet
parents: 54759
diff changeset
    20
    one_line_params -> string
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    21
end;
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    22
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    23
structure Sledgehammer_Isar : SLEDGEHAMMER_ISAR =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    24
struct
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    25
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    26
open ATP_Util
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    27
open ATP_Problem
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    28
open ATP_Proof
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    29
open ATP_Proof_Reconstruct
49918
cf441f4a358b renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents: 49917
diff changeset
    30
open Sledgehammer_Util
52555
6811291d1869 moved code -> easier debugging
smolkas
parents: 52454
diff changeset
    31
open Sledgehammer_Reconstructor
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    32
open Sledgehammer_Isar_Proof
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    33
open Sledgehammer_Isar_Preplay
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    34
open Sledgehammer_Isar_Compress
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    35
open Sledgehammer_Isar_Try0
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    36
open Sledgehammer_Isar_Minimize
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    37
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    38
structure String_Redirect = ATP_Proof_Redirect(
53586
bd5fa6425993 prefixed types and some functions with "atp_" for disambiguation
blanchet
parents: 53052
diff changeset
    39
  type key = atp_step_name
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    40
  val ord = fn ((s, _ : string list), (s', _)) => fast_string_ord (s, s')
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    41
  val string_of = fst)
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    42
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    43
open String_Redirect
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
    44
54769
3d6ac2f68bf3 correcly recognize E skolemization steps that are wrapped in a 'shift_quantors' inference
blanchet
parents: 54768
diff changeset
    45
val e_skolemize_rules = ["skolemize", "shift_quantors"]
54836
47857a79bdad recognize datatype reasoning in SPASS-Pirate
blanchet
parents: 54831
diff changeset
    46
val spass_pirate_datatype_rule = "DT"
54746
6db5fbc02436 better handling of Z3 proof blocks
blanchet
parents: 54716
diff changeset
    47
val vampire_skolemisation_rule = "skolemisation"
6db5fbc02436 better handling of Z3 proof blocks
blanchet
parents: 54716
diff changeset
    48
(* TODO: Use "Z3_Proof.string_of_rule" once it is moved to Isabelle *)
54753
688da3388b2d use simplifier for rewrite
blanchet
parents: 54751
diff changeset
    49
val z3_skolemize_rule = "sk"
688da3388b2d use simplifier for rewrite
blanchet
parents: 54751
diff changeset
    50
val z3_th_lemma_rule = "th-lemma"
54746
6db5fbc02436 better handling of Z3 proof blocks
blanchet
parents: 54716
diff changeset
    51
54772
f5fd4a34b0e8 handle Skolems gracefully for SPASS as well
blanchet
parents: 54771
diff changeset
    52
val skolemize_rules =
f5fd4a34b0e8 handle Skolems gracefully for SPASS as well
blanchet
parents: 54771
diff changeset
    53
  e_skolemize_rules @ [spass_skolemize_rule, vampire_skolemisation_rule, z3_skolemize_rule]
54746
6db5fbc02436 better handling of Z3 proof blocks
blanchet
parents: 54716
diff changeset
    54
54769
3d6ac2f68bf3 correcly recognize E skolemization steps that are wrapped in a 'shift_quantors' inference
blanchet
parents: 54768
diff changeset
    55
val is_skolemize_rule = member (op =) skolemize_rules
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
    56
val is_arith_rule = String.isPrefix z3_th_lemma_rule
54836
47857a79bdad recognize datatype reasoning in SPASS-Pirate
blanchet
parents: 54831
diff changeset
    57
val is_datatype_rule = String.isPrefix spass_pirate_datatype_rule
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
    58
54501
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
    59
fun raw_label_of_num num = (num, 0)
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    60
54501
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
    61
fun label_of_clause [(num, _)] = raw_label_of_num num
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
    62
  | 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
    63
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    64
fun add_fact_of_dependencies [(_, ss as _ :: _)] = apsnd (union (op =) ss)
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    65
  | add_fact_of_dependencies names = apfst (insert (op =) (label_of_clause names))
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    66
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
    67
(* No "real" literals means only type information (tfree_tcs, clsrel, or clsarity). *)
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
    68
fun is_only_type_information t = t aconv @{prop True}
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
    69
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
    70
(* Discard facts; consolidate adjacent lines that prove the same formula, since they differ only in
54759
blanchet
parents: 54758
diff changeset
    71
   type information. *)
54799
blanchet
parents: 54772
diff changeset
    72
fun add_line_pass1 (line as (name, role, t, rule, [])) lines =
54770
0e354ef1b167 reverse Skolem function arguments
blanchet
parents: 54769
diff changeset
    73
    (* No dependencies: lemma (for Z3), fact, conjecture, or (for Vampire) internal facts or
0e354ef1b167 reverse Skolem function arguments
blanchet
parents: 54769
diff changeset
    74
       definitions. *)
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
    75
    if role = Lemma orelse role = Conjecture orelse role = Negated_Conjecture orelse
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
    76
       role = Hypothesis orelse is_arith_rule rule then
54746
6db5fbc02436 better handling of Z3 proof blocks
blanchet
parents: 54716
diff changeset
    77
      line :: lines
54505
d023838eb252 more refactoring to accommodate SMT proofs
blanchet
parents: 54503
diff changeset
    78
    else if role = Axiom then
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    79
      (* Facts are not proof lines. *)
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
    80
      lines |> is_only_type_information t ? map (replace_dependencies_in_line (name, []))
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    81
    else
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    82
      map (replace_dependencies_in_line (name, [])) lines
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
    83
  | add_line_pass1 line lines = line :: lines
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
    84
55191
f127ab7368cf killed needless pass
blanchet
parents: 55186
diff changeset
    85
fun add_lines_pass2 res [] = rev res
f127ab7368cf killed needless pass
blanchet
parents: 55186
diff changeset
    86
  | add_lines_pass2 res ((name, role, t, rule, deps) :: lines) =
55184
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    87
    let
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    88
      val is_last_line = null lines
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    89
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    90
      fun looks_interesting () =
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    91
        not (is_only_type_information t) andalso null (Term.add_tvars t [])
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    92
        andalso length deps >= 2 andalso not (can the_single lines)
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    93
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    94
      fun is_skolemizing_line (_, _, _, rule', deps') =
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    95
        is_skolemize_rule rule' andalso member (op =) deps' name
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    96
      fun is_before_skolemize_rule () = exists is_skolemizing_line lines
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    97
    in
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    98
      if role <> Plain orelse is_skolemize_rule rule orelse is_arith_rule rule orelse
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
    99
         is_datatype_rule rule orelse is_last_line orelse looks_interesting () orelse
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
   100
         is_before_skolemize_rule () then
55191
f127ab7368cf killed needless pass
blanchet
parents: 55186
diff changeset
   101
        add_lines_pass2 ((name, role, t, rule, deps) :: res) lines
55184
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
   102
      else
55191
f127ab7368cf killed needless pass
blanchet
parents: 55186
diff changeset
   103
        add_lines_pass2 res (map (replace_dependencies_in_line (name, deps)) lines)
55184
6e2295db4cf8 keep formula right before skolemization, because the universal variables might be different (or differently ordered) as in the original axiom or negated conjecture from which it was skolemized
blanchet
parents: 55183
diff changeset
   104
    end
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   105
52454
b528a975b256 tuned: cleaned up data structure
smolkas
parents: 52453
diff changeset
   106
val add_labels_of_proof =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   107
  steps_of_proof
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   108
  #> fold_isar_steps (byline_of_step #> (fn SOME ((ls, _), _) => union (op =) ls | _ => I))
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   109
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   110
fun kill_useless_labels_in_proof proof =
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   111
  let
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51165
diff changeset
   112
    val used_ls = add_labels_of_proof proof []
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   113
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   114
    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
   115
    fun kill_assms assms = map (apfst kill_label) assms
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   116
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   117
    fun kill_step (Prove (qs, xs, l, t, subproofs, by)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   118
        Prove (qs, xs, kill_label l, t, map kill_proof subproofs, by)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   119
      | kill_step step = step
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   120
    and kill_proof (Proof (fix, assms, steps)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   121
      Proof (fix, kill_assms assms, map kill_step steps)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   122
  in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   123
    kill_proof proof
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   124
  end
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   125
54501
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
   126
val assume_prefix = "a"
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
   127
val have_prefix = "f"
77c9460e01b0 simplified old code
blanchet
parents: 54500
diff changeset
   128
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   129
val relabel_proof =
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   130
  let
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   131
    fun fresh_label depth prefix (accum as (l, subst, next)) =
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   132
      if l = no_label then
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   133
        accum
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   134
      else
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   135
        let val l' = (replicate_string (depth + 1) 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
   136
          (l', (l, l') :: subst, next + 1)
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   137
        end
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   138
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   139
    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
   140
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   141
    fun relabel_assm depth (l, t) (subst, next) =
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   142
      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
   143
        ((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
   144
      end
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   145
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   146
    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
   147
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   148
    fun relabel_steps _ _ _ [] = []
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   149
      | 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
   150
        let
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   151
          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
   152
          val sub = relabel_proofs subst depth sub
54759
blanchet
parents: 54758
diff changeset
   153
          val by = apfst (relabel_facts subst) by
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   154
        in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   155
          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
   156
        end
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   157
      | relabel_steps subst depth next (step :: steps) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   158
        step :: relabel_steps subst depth next steps
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   159
    and relabel_proof subst depth (Proof (fix, assms, steps)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   160
      let val (assms, subst) = relabel_assms subst depth assms in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   161
        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
   162
      end
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   163
    and relabel_proofs subst depth = map (relabel_proof subst (depth + 1))
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   164
  in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   165
    relabel_proof [] 0
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   166
  end
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   167
50004
c96e8e40d789 several improvements to Isar proof reconstruction, by Steffen Smolka (step merging in case splits, time measurements, etc.)
blanchet
parents: 49994
diff changeset
   168
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
   169
  let
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   170
    fun chain_qs_lfs NONE lfs = ([], lfs)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   171
      | chain_qs_lfs (SOME l0) lfs =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   172
        if member (op =) lfs l0 then ([Then], lfs |> remove (op =) l0) else ([], lfs)
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   173
    fun chain_step lbl (Prove (qs, xs, l, t, subproofs, ((lfs, gfs), methss))) =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   174
        let val (qs', lfs) = chain_qs_lfs lbl lfs in
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   175
          Prove (qs' @ qs, xs, l, t, chain_proofs subproofs, ((lfs, gfs), methss))
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   176
        end
50672
ab5b8b5c9cbe added "obtain" to Isar proof construction data structure
blanchet
parents: 50671
diff changeset
   177
      | 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
   178
    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
   179
      | 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
   180
        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
   181
      | 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
   182
    and chain_proof (Proof (fix, assms, steps)) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   183
      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
   184
    and chain_proofs proofs = map (chain_proof) proofs
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   185
  in
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   186
    chain_proof
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   187
  end
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   188
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   189
type isar_params =
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   190
  bool * string * string * Time.time * real * bool * (term, string) atp_step list * thm
49914
23e36a4d28f1 refactor code
blanchet
parents: 49913
diff changeset
   191
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   192
val arith_methodss =
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   193
  [[Arith_Method, Simp_Method, Auto_Method, Fastforce_Method, Blast_Method, Force_Method,
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   194
    Metis_Method], [Meson_Method]]
54838
16511f84913c reconstruct SPASS-Pirate steps of the form 'x ~= C x' (or more complicated)
blanchet
parents: 54836
diff changeset
   195
val datatype_methodss = [[Simp_Size_Method, Simp_Method]]
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   196
val metislike_methodss =
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   197
  [[Metis_Method, Simp_Method, Auto_Method, Arith_Method, Blast_Method, Fastforce_Method,
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   198
    Force_Method], [Meson_Method]]
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   199
val rewrite_methodss =
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   200
  [[Auto_Method, Simp_Method, Fastforce_Method, Force_Method, Metis_Method], [Meson_Method]]
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   201
val skolem_methodss = [[Metis_Method, Blast_Method], [Meson_Method]]
54766
6ac273f176cd store alternative proof methods in Isar data structure
blanchet
parents: 54765
diff changeset
   202
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   203
fun isar_proof_text ctxt debug isar_proofs isar_params
49918
cf441f4a358b renamed Isar-proof related options + changed semantics of Isar shrinking
blanchet
parents: 49917
diff changeset
   204
    (one_line_params as (_, _, _, _, subgoal, subgoal_count)) =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   205
  let
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   206
    fun isar_proof_of () =
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   207
      let
55183
17ec4a29ef71 renamed Sledgehammer options for symmetry between positive and negative versions
blanchet
parents: 55169
diff changeset
   208
        val SOME (verbose, metis_type_enc, metis_lam_trans, preplay_timeout, compress_isar,
17ec4a29ef71 renamed Sledgehammer options for symmetry between positive and negative versions
blanchet
parents: 55169
diff changeset
   209
          try0_isar, atp_proof, goal) = try isar_params ()
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   210
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   211
        val (params, _, concl_t) = strip_subgoal goal subgoal ctxt
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   212
        val (_, ctxt) =
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   213
          params
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   214
          |> map (fn (s, T) => (Binding.name s, SOME T, NoSyn))
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   215
          |> (fn fixes => ctxt |> Variable.set_body false |> Proof_Context.add_fixes fixes)
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   216
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   217
        val do_preplay = preplay_timeout <> Time.zeroTime
55183
17ec4a29ef71 renamed Sledgehammer options for symmetry between positive and negative versions
blanchet
parents: 55169
diff changeset
   218
        val try0_isar = try0_isar andalso do_preplay
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   219
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   220
        val is_fixed = Variable.is_declared ctxt orf can Name.dest_skolem
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   221
        fun skolems_of t = Term.add_frees t [] |> filter_out (is_fixed o fst) |> rev
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   222
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   223
        fun get_role keep_role ((num, _), role, t, rule, _) =
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   224
          if keep_role role then SOME ((raw_label_of_num num, t), rule) else NONE
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   225
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   226
        val atp_proof =
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   227
          atp_proof
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   228
          |> rpair [] |-> fold_rev add_line_pass1
55191
f127ab7368cf killed needless pass
blanchet
parents: 55186
diff changeset
   229
          |> add_lines_pass2 []
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   230
54535
59737a43e044 support Negated_Conjecture as a TPTP role as well (e.g. for SMT proofs)
blanchet
parents: 54507
diff changeset
   231
        val conjs =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   232
          map_filter (fn (name, role, _, _, _) =>
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   233
              if member (op =) [Conjecture, Negated_Conjecture] role then SOME name else NONE)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   234
            atp_proof
54751
9b93f9117f8b implemented Z3 skolemization
blanchet
parents: 54750
diff changeset
   235
        val assms = map_filter (Option.map fst o get_role (curry (op =) Hypothesis)) atp_proof
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   236
        val lems =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   237
          map_filter (get_role (curry (op =) Lemma)) atp_proof
54751
9b93f9117f8b implemented Z3 skolemization
blanchet
parents: 54750
diff changeset
   238
          |> map (fn ((l, t), rule) =>
54753
688da3388b2d use simplifier for rewrite
blanchet
parents: 54751
diff changeset
   239
            let
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   240
              val (skos, methss) =
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   241
                if is_skolemize_rule rule then (skolems_of t, skolem_methodss)
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   242
                else if is_arith_rule rule then ([], arith_methodss)
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   243
                else ([], rewrite_methodss)
54753
688da3388b2d use simplifier for rewrite
blanchet
parents: 54751
diff changeset
   244
            in
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   245
              Prove ([], skos, l, t, [], (([], []), methss))
54753
688da3388b2d use simplifier for rewrite
blanchet
parents: 54751
diff changeset
   246
            end)
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   247
51212
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   248
        val bot = atp_proof |> List.last |> #1
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   249
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   250
        val refute_graph =
51212
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   251
          atp_proof
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   252
          |> map (fn (name, _, _, _, from) => (from, name))
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   253
          |> make_refute_graph bot
2bbcc9cc12b4 ensure all conjecture clauses are in the graph -- to prevent exceptions later
blanchet
parents: 51208
diff changeset
   254
          |> fold (Atom_Graph.default_node o rpair ()) conjs
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   255
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   256
        val axioms = axioms_of_refute_graph refute_graph conjs
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   257
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   258
        val tainted = tainted_atoms_of_refute_graph refute_graph conjs
51156
cbb640c3d203 made check for conjecture skolemization sound
blanchet
parents: 51149
diff changeset
   259
        val is_clause_tainted = exists (member (op =) tainted)
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   260
        val steps =
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   261
          Symtab.empty
51201
f176855a1ee2 tuning (removed redundant datatype)
blanchet
parents: 51200
diff changeset
   262
          |> fold (fn (name as (s, _), role, t, rule, _) =>
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   263
              Symtab.update_new (s, (rule, t
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   264
                |> (if is_clause_tainted [name] then
54768
ee0881a54c72 fixed confusion between 'prop' and 'bool' introduced in 4960647932ec
blanchet
parents: 54767
diff changeset
   265
                      HOLogic.dest_Trueprop
ee0881a54c72 fixed confusion between 'prop' and 'bool' introduced in 4960647932ec
blanchet
parents: 54767
diff changeset
   266
                      #> role <> Conjecture ? s_not
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   267
                      #> fold exists_of (map Var (Term.add_vars t []))
54768
ee0881a54c72 fixed confusion between 'prop' and 'bool' introduced in 4960647932ec
blanchet
parents: 54767
diff changeset
   268
                      #> HOLogic.mk_Trueprop
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   269
                    else
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   270
                      I))))
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   271
            atp_proof
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   272
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   273
        val rule_of_clause_id = fst o the o Symtab.lookup steps o fst
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   274
54757
4960647932ec use 'prop' rather than 'bool' systematically in Isar reconstruction code
blanchet
parents: 54756
diff changeset
   275
        fun prop_of_clause [(num, _)] = Symtab.lookup steps num |> the |> snd |> close_form
50016
0ae5328ded8c fixed more "Trueprop" issues
blanchet
parents: 50015
diff changeset
   276
          | prop_of_clause names =
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   277
            let
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   278
              val lits = map (HOLogic.dest_Trueprop o snd)
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   279
                (map_filter (Symtab.lookup steps o fst) names)
50676
83b8a5a39709 generate "obtain" steps corresponding to skolemization inferences
blanchet
parents: 50675
diff changeset
   280
            in
54754
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   281
              (case List.partition (can HOLogic.dest_not) lits of
50018
4ea26c74d7ea use implications rather than disjunctions to improve readability
blanchet
parents: 50017
diff changeset
   282
                (negs as _ :: _, pos as _ :: _) =>
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   283
                s_imp (Library.foldr1 s_conj (map HOLogic.dest_not negs), Library.foldr1 s_disj pos)
54754
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   284
              | _ => fold (curry s_disj) lits @{term False})
50018
4ea26c74d7ea use implications rather than disjunctions to improve readability
blanchet
parents: 50017
diff changeset
   285
            end
50016
0ae5328ded8c fixed more "Trueprop" issues
blanchet
parents: 50015
diff changeset
   286
            |> HOLogic.mk_Trueprop |> close_form
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   287
55169
fda77499eef5 proper 'show' detection
blanchet
parents: 55168
diff changeset
   288
        fun maybe_show outer c = (outer andalso eq_set (op =) (c, conjs)) ? cons Show
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   289
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   290
        fun isar_steps outer predecessor accum [] =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   291
            accum
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   292
            |> (if tainted = [] then
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   293
                  cons (Prove (if outer then [Show] else [], [], no_label, concl_t, [],
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   294
                               ((the_list predecessor, []), metislike_methodss)))
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   295
                else
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   296
                  I)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   297
            |> rev
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   298
          | isar_steps outer _ accum (Have (id, (gamma, c)) :: infs) =
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   299
            let
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   300
              val l = label_of_clause c
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   301
              val t = prop_of_clause c
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   302
              val rule = rule_of_clause_id id
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   303
              val skolem = is_skolemize_rule rule
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   304
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   305
              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
   306
              fun do_rest l step = isar_steps outer (SOME l) (step :: accum) infs
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   307
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   308
              val deps = fold add_fact_of_dependencies gamma no_facts
54836
47857a79bdad recognize datatype reasoning in SPASS-Pirate
blanchet
parents: 54831
diff changeset
   309
              val methss =
47857a79bdad recognize datatype reasoning in SPASS-Pirate
blanchet
parents: 54831
diff changeset
   310
                if is_arith_rule rule then arith_methodss
47857a79bdad recognize datatype reasoning in SPASS-Pirate
blanchet
parents: 54831
diff changeset
   311
                else if is_datatype_rule rule then datatype_methodss
47857a79bdad recognize datatype reasoning in SPASS-Pirate
blanchet
parents: 54831
diff changeset
   312
                else metislike_methodss
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   313
              val by = (deps, methss)
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   314
            in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   315
              if is_clause_tainted c then
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   316
                (case gamma of
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   317
                  [g] =>
54755
2eb43ddde491 use 'arith' when appropriate in Z3 proofs
blanchet
parents: 54754
diff changeset
   318
                  if skolem andalso is_clause_tainted g then
54751
9b93f9117f8b implemented Z3 skolemization
blanchet
parents: 54750
diff changeset
   319
                    let val subproof = Proof (skolems_of (prop_of_clause g), [], rev accum) in
55186
fafdf2424c57 don't forget the last inference(s) after conjecture skolemization
blanchet
parents: 55184
diff changeset
   320
                      isar_steps outer (SOME l) [prove [subproof] (no_facts, skolem_methodss)] infs
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   321
                    end
51148
2246a2e17f92 tuning -- refactoring in preparation for handling skolemization of conjecture
blanchet
parents: 51147
diff changeset
   322
                  else
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   323
                    do_rest l (prove [] by)
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   324
                | _ => do_rest l (prove [] by))
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   325
              else
54765
blanchet
parents: 54763
diff changeset
   326
                do_rest l (if skolem then Prove ([], skolems_of t, l, t, [], by) else prove [] by)
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   327
            end
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   328
          | isar_steps outer predecessor accum (Cases cases :: infs) =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   329
            let
55186
fafdf2424c57 don't forget the last inference(s) after conjecture skolemization
blanchet
parents: 55184
diff changeset
   330
              fun isar_case (c, subinfs) =
fafdf2424c57 don't forget the last inference(s) after conjecture skolemization
blanchet
parents: 55184
diff changeset
   331
                isar_proof false [] [(label_of_clause c, prop_of_clause c)] [] subinfs
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   332
              val c = succedent_of_cases cases
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   333
              val l = label_of_clause c
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   334
              val t = prop_of_clause c
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   335
              val step =
54760
a1ac3eaa0d11 generate proper succedent for cases with trivial branches
blanchet
parents: 54759
diff changeset
   336
                Prove (maybe_show outer c [], [], l, t,
a1ac3eaa0d11 generate proper succedent for cases with trivial branches
blanchet
parents: 54759
diff changeset
   337
                  map isar_case (filter_out (null o snd) cases),
54767
81290fe85890 generalize method list further to list of list (clustering preferred methods together)
blanchet
parents: 54766
diff changeset
   338
                  ((the_list predecessor, []), metislike_methodss))
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   339
            in
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   340
              isar_steps outer (SOME l) (step :: accum) infs
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   341
            end
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   342
        and isar_proof outer fix assms lems infs =
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   343
          Proof (fix, assms, lems @ isar_steps outer NONE [] infs)
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54699
diff changeset
   344
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   345
        val string_of_isar_proof =
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   346
          string_of_isar_proof ctxt metis_type_enc metis_lam_trans subgoal subgoal_count
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   347
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   348
        val trace = false
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   349
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   350
        val isar_proof =
51145
280ece22765b tuned code
blanchet
parents: 51130
diff changeset
   351
          refute_graph
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   352
          |> trace ? tap (tracing o prefix "Refute graph: " o string_of_refute_graph)
51031
63d71b247323 more robustness in Isar proof reconstruction (cf. bug report by Ondrej)
blanchet
parents: 51026
diff changeset
   353
          |> redirect_graph axioms tainted bot
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   354
          |> trace ? tap (tracing o prefix "Direct proof: " o string_of_direct_proof)
54754
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   355
          |> isar_proof true params assms lems
55213
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   356
          |> postprocess_isar_proof_remove_unreferenced_steps I
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   357
          |> relabel_isar_proof_canonically
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   358
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   359
        val preplay_data as {overall_preplay_outcome, ...} =
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   360
          preplay_data_of_isar_proof debug ctxt metis_type_enc metis_lam_trans do_preplay
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   361
            preplay_timeout isar_proof
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   362
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   363
        fun trace_isar_proof label proof =
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   364
          if trace then
55218
ed495a5088c6 more informative trace
blanchet
parents: 55214
diff changeset
   365
            tracing (timestamp () ^ "\n" ^ label ^ ":\n\n" ^ string_of_isar_proof true proof ^ "\n")
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   366
          else
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   367
            ()
54754
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   368
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   369
        val (play_outcome, isar_proof) =
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52555
diff changeset
   370
          isar_proof
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   371
          |> tap (trace_isar_proof "Original")
55213
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   372
          |> compress_isar_proof (if isar_proofs = SOME true then compress_isar else 1000.0)
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   373
               preplay_data
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   374
          |> tap (trace_isar_proof "Compressed")
55212
blanchet
parents: 55211
diff changeset
   375
          |> try0_isar ? try0_isar_proof preplay_timeout preplay_data
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   376
          |> tap (trace_isar_proof "Tried0")
55213
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   377
          |> postprocess_isar_proof_remove_unreferenced_steps
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   378
               (try0_isar ? minimize_isar_step_dependencies preplay_data)
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   379
          |> tap (trace_isar_proof "Minimized")
54831
blanchet
parents: 54828
diff changeset
   380
          |> `overall_preplay_outcome
54758
ba488d89614a simplify generated propositions
blanchet
parents: 54757
diff changeset
   381
          ||> (chain_direct_proof #> kill_useless_labels_in_proof #> relabel_proof)
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   382
      in
55218
ed495a5088c6 more informative trace
blanchet
parents: 55214
diff changeset
   383
        (case string_of_isar_proof false isar_proof of
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   384
          "" =>
55213
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   385
          if isar_proofs = SOME true then "\nNo structured proof available (proof too simple)."
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   386
          else ""
55214
48a347b40629 better tracing + syntactically correct 'metis' calls
blanchet
parents: 55213
diff changeset
   387
        | isar_text =>
50670
eaa540986291 properly take the existential closure of skolems
blanchet
parents: 50557
diff changeset
   388
          let
eaa540986291 properly take the existential closure of skolems
blanchet
parents: 50557
diff changeset
   389
            val msg =
51203
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   390
              (if verbose then
55213
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   391
                 let val num_steps = add_isar_steps (steps_of_proof isar_proof) 0 in
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   392
                   [string_of_int num_steps ^ " step" ^ plural_s num_steps]
dcb36a2540bc tuned ML function names
blanchet
parents: 55212
diff changeset
   393
                 end
51203
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   394
               else
4c6ae305462e trust preplayed proof in Mirabelle
blanchet
parents: 51202
diff changeset
   395
                 []) @
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   396
              (if do_preplay then [string_of_play_outcome play_outcome] else [])
50277
e0a4d8404c76 tweaked calculation of sledgehammer messages
smolkas
parents: 50276
diff changeset
   397
          in
54507
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   398
            "\n\nStructured proof" ^ (commas msg |> not (null msg) ? enclose " (" ")") ^ ":\n" ^
d983a020489d whitespace tuning
blanchet
parents: 54505
diff changeset
   399
            Active.sendback_markup [Markup.padding_command] isar_text
54754
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   400
          end)
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   401
      end
54760
a1ac3eaa0d11 generate proper succedent for cases with trivial branches
blanchet
parents: 54759
diff changeset
   402
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   403
    val one_line_proof = one_line_proof_text 0 one_line_params
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   404
    val isar_proof =
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   405
      if debug then
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   406
        isar_proof_of ()
54754
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   407
      else
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   408
        (case try isar_proof_of () of
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   409
          SOME s => s
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   410
        | NONE =>
6b0ca7f79e93 robustness in degenerate case + tuning
blanchet
parents: 54753
diff changeset
   411
          if isar_proofs = SOME true then "\nWarning: The Isar proof construction failed." else "")
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   412
  in one_line_proof ^ isar_proof end
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   413
54824
4e58a38b330b refactored preplaying outcome data structure
blanchet
parents: 54823
diff changeset
   414
fun isar_proof_would_be_a_good_idea (reconstr, play) =
4e58a38b330b refactored preplaying outcome data structure
blanchet
parents: 54823
diff changeset
   415
  (case play of
4e58a38b330b refactored preplaying outcome data structure
blanchet
parents: 54823
diff changeset
   416
    Played _ => reconstr = SMT
54823
a510fc40559c distinguish not preplayed & timed out
blanchet
parents: 54816
diff changeset
   417
  | Play_Timed_Out _ => true
54824
4e58a38b330b refactored preplaying outcome data structure
blanchet
parents: 54823
diff changeset
   418
  | Play_Failed => true
4e58a38b330b refactored preplaying outcome data structure
blanchet
parents: 54823
diff changeset
   419
  | Not_Played => 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
   420
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   421
fun proof_text ctxt debug isar_proofs isar_params num_chained
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   422
               (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
   423
  (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
   424
      (isar_proofs = NONE andalso isar_proof_would_be_a_good_idea preplay) then
55168
948e8b7ea82f correctly handle exceptions arising from (experimental) Isar proof code
blanchet
parents: 54838
diff changeset
   425
     isar_proof_text ctxt debug isar_proofs isar_params
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   426
   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
   427
     one_line_proof_text num_chained) one_line_params
49883
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   428
a6ebdaf8e267 added missing file
blanchet
parents:
diff changeset
   429
end;