src/HOL/Tools/Sledgehammer/sledgehammer_isar_preplay.ML
author blanchet
Fri, 31 Jan 2014 10:23:32 +0100
changeset 55202 824c48a539c9
parent 55194 src/HOL/Tools/Sledgehammer/sledgehammer_preplay.ML@daa64e603e70
child 55212 5832470d956e
permissions -rw-r--r--
renamed many Sledgehammer ML files to clarify structure
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_preplay.ML
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
     2
    Author:     Steffen Juilf Smolka, TU Muenchen
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
     3
    Author:     Jasmin Blanchette, TU Muenchen
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
     4
54763
blanchet
parents: 54761
diff changeset
     5
Preplaying of Isar proofs.
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
     6
*)
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
     7
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
     8
signature SLEDGEHAMMER_ISAR_PREPLAY =
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
     9
sig
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    10
  type play_outcome = Sledgehammer_Reconstructor.play_outcome
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    11
  type isar_proof = Sledgehammer_Isar_Proof.isar_proof
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    12
  type isar_step = Sledgehammer_Isar_Proof.isar_step
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    13
  type label = Sledgehammer_Isar_Proof.label
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
    14
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    15
  val trace: bool Config.T
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
    16
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
    17
  type preplay_interface =
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    18
    {get_preplay_outcome: label -> play_outcome,
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    19
     set_preplay_outcome: label -> play_outcome -> unit,
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    20
     preplay_quietly: Time.time -> isar_step -> play_outcome,
54831
blanchet
parents: 54828
diff changeset
    21
     overall_preplay_outcome: isar_proof -> play_outcome}
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
    22
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    23
  val proof_preplay_interface: bool -> Proof.context -> string -> string -> bool -> Time.time ->
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    24
    isar_proof -> preplay_interface
54504
blanchet
parents: 53761
diff changeset
    25
end;
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    26
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    27
structure Sledgehammer_Isar_Preplay : SLEDGEHAMMER_ISAR_PREPLAY =
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    28
struct
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    29
54763
blanchet
parents: 54761
diff changeset
    30
open ATP_Util
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    31
open Sledgehammer_Util
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    32
open Sledgehammer_Reconstructor
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    33
open Sledgehammer_Isar_Proof
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    34
54763
blanchet
parents: 54761
diff changeset
    35
val trace = Attrib.setup_config_bool @{binding sledgehammer_preplay_trace} (K false)
50924
beb95bf66b21 changed type of preplay time; tuned preplaying
smolkas
parents: 50923
diff changeset
    36
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    37
fun preplay_trace ctxt assmsp concl result =
51879
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    38
  let
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    39
    val ctxt = ctxt |> Config.put show_markup true
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    40
    val assms = op @ assmsp
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    41
    val time = "[" ^ string_of_play_outcome result ^ "]" |> Pretty.str
51879
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    42
    val nr_of_assms = length assms
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    43
    val assms = assms
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    44
      |> map (Display.pretty_thm ctxt)
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    45
      |> (fn [] => Pretty.str ""
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    46
           | [a] => a
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    47
           | assms => Pretty.enum ";" "\<lbrakk>" "\<rbrakk>" assms)  (* Syntax.pretty_term!? *)
51879
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    48
    val concl = concl |> Syntax.pretty_term ctxt
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    49
    val trace_list = []
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    50
      |> cons concl
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    51
      |> nr_of_assms > 0 ? cons (Pretty.str "\<Longrightarrow>")
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    52
      |> cons assms
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    53
      |> cons time
53761
4d34e267fba9 use configuration mechanism for low-level tracing
blanchet
parents: 53664
diff changeset
    54
    val pretty_trace = Pretty.blk (2, Pretty.breaks trace_list)
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    55
  in
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    56
    tracing (Pretty.string_of pretty_trace)
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    57
  end
51879
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    58
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    59
fun take_time timeout tac arg =
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    60
  let val timing = Timing.start () in
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    61
    (TimeLimit.timeLimit timeout tac arg; Played (#cpu (Timing.result timing)))
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    62
    handle TimeLimit.TimeOut => Play_Timed_Out timeout
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    63
  end
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    64
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    65
fun resolve_fact_names ctxt names =
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
    66
  (names
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    67
   |>> map string_of_label
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    68
   |> pairself (maps (thms_of_name ctxt)))
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
    69
  handle ERROR msg => error ("preplay error: " ^ msg)
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    70
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    71
fun thm_of_proof ctxt (Proof (fixed_frees, assms, steps)) =
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    72
  let
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    73
    val thy = Proof_Context.theory_of ctxt
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    74
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    75
    val concl = 
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    76
      (case try List.last steps of
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    77
        SOME (Prove (_, [], _, t, _, _)) => t
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    78
      | _ => raise Fail "preplay error: malformed subproof")
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    79
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
    80
    val var_idx = maxidx_of_term concl + 1
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    81
    fun var_of_free (x, T) = Var ((x, var_idx), T)
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    82
    val subst = map (`var_of_free #> swap #> apfst Free) fixed_frees
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
    83
  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
    84
    Logic.list_implies (assms |> map snd, concl)
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    85
    |> subst_free subst
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    86
    |> Skip_Proof.make_thm thy
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
    87
  end
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
    88
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    89
fun tac_of_method meth type_enc lam_trans ctxt (local_facts, global_facts) =
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    90
  Method.insert_tac local_facts THEN'
54766
6ac273f176cd store alternative proof methods in Isar data structure
blanchet
parents: 54765
diff changeset
    91
  (case meth of
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    92
    Meson_Method => Meson.meson_tac ctxt global_facts
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    93
  | Metis_Method => Metis_Tactic.metis_tac [type_enc] lam_trans ctxt global_facts
52592
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52575
diff changeset
    94
  | _ =>
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    95
    Method.insert_tac global_facts THEN'
54766
6ac273f176cd store alternative proof methods in Isar data structure
blanchet
parents: 54765
diff changeset
    96
    (case meth of
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    97
      Simp_Method => Simplifier.asm_full_simp_tac ctxt
54838
16511f84913c reconstruct SPASS-Pirate steps of the form 'x ~= C x' (or more complicated)
blanchet
parents: 54831
diff changeset
    98
    | Simp_Size_Method =>
16511f84913c reconstruct SPASS-Pirate steps of the form 'x ~= C x' (or more complicated)
blanchet
parents: 54831
diff changeset
    99
      Simplifier.asm_full_simp_tac (Simplifier.add_simp @{thm size_ne_size_imp_ne} ctxt)
54765
blanchet
parents: 54764
diff changeset
   100
    | Auto_Method => K (Clasimp.auto_tac ctxt)
blanchet
parents: 54764
diff changeset
   101
    | Fastforce_Method => Clasimp.fast_force_tac ctxt
blanchet
parents: 54764
diff changeset
   102
    | Force_Method => Clasimp.force_tac ctxt
blanchet
parents: 54764
diff changeset
   103
    | Arith_Method => Arith_Data.arith_tac ctxt
blanchet
parents: 54764
diff changeset
   104
    | Blast_Method => blast_tac ctxt
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
   105
    | _ => raise Fail "Sledgehammer_Isar_Preplay: tac_of_method"))
52592
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52575
diff changeset
   106
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   107
(* main function for preplaying Isar steps; may throw exceptions *)
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   108
fun preplay_raw _ _ _ _ _ (Let _) = Played Time.zeroTime
53761
4d34e267fba9 use configuration mechanism for low-level tracing
blanchet
parents: 53664
diff changeset
   109
  | preplay_raw debug type_enc lam_trans ctxt timeout
54799
blanchet
parents: 54767
diff changeset
   110
      (Prove (_, xs, _, t, subproofs, (fact_names, (meth :: _) :: _))) =
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   111
    let
54763
blanchet
parents: 54761
diff changeset
   112
      val goal =
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   113
        (case xs of
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   114
          [] => t
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   115
        | _ =>
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   116
          (* proof obligation: !!thesis. (!!x. A x ==> thesis) ==> thesis
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   117
             (cf. "~~/src/Pure/Isar/obtain.ML") *)
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   118
          let
54813
blanchet
parents: 54799
diff changeset
   119
            (* FIXME: generate fresh name *)
blanchet
parents: 54799
diff changeset
   120
            val thesis = Free ("thesis", HOLogic.boolT)
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   121
            val thesis_prop = thesis |> HOLogic.mk_Trueprop
54813
blanchet
parents: 54799
diff changeset
   122
            val frees = map Free xs
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   123
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   124
            (* !!x1..xn. t ==> thesis (xs = [x1, .., xn]) *)
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   125
            val inner_prop = fold_rev Logic.all frees (Logic.mk_implies (t, thesis_prop))
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   126
          in
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   127
            (* !!thesis. (!!x1..xn. t ==> thesis) ==> thesis *)
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   128
            Logic.all thesis (Logic.mk_implies (inner_prop, thesis_prop))
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   129
          end)
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   130
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   131
      val facts =
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   132
        resolve_fact_names ctxt fact_names
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   133
        |>> append (map (thm_of_proof ctxt) subproofs)
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   134
55170
cdb9435e3cae silenced reconstructors in Sledgehammer
blanchet
parents: 54838
diff changeset
   135
      val ctxt' = ctxt |> silence_reconstructors debug
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   136
54817
e1da23db35a9 made SML/NJ-friendlier (hopefully)
blanchet
parents: 54813
diff changeset
   137
      fun prove () =
e1da23db35a9 made SML/NJ-friendlier (hopefully)
blanchet
parents: 54813
diff changeset
   138
        Goal.prove ctxt' [] [] goal (fn {context = ctxt, ...} =>
e1da23db35a9 made SML/NJ-friendlier (hopefully)
blanchet
parents: 54813
diff changeset
   139
          HEADGOAL (tac_of_method meth type_enc lam_trans ctxt facts))
e1da23db35a9 made SML/NJ-friendlier (hopefully)
blanchet
parents: 54813
diff changeset
   140
        handle ERROR msg => error ("Preplay error: " ^ msg)
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   141
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   142
      val play_outcome = take_time timeout prove ()
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   143
    in
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   144
      (if Config.get ctxt trace then preplay_trace ctxt facts goal play_outcome else ();
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   145
       play_outcome)
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   146
    end
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   147
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   148
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   149
(*** proof preplay interface ***)
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   150
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   151
type preplay_interface =
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   152
  {get_preplay_outcome: label -> play_outcome,
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   153
   set_preplay_outcome: label -> play_outcome -> unit,
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   154
   preplay_quietly: Time.time -> isar_step -> play_outcome,
54831
blanchet
parents: 54828
diff changeset
   155
   overall_preplay_outcome: isar_proof -> play_outcome}
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   156
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   157
fun enrich_context_with_local_facts proof ctxt =
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   158
  let
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   159
    val thy = Proof_Context.theory_of ctxt
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   160
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   161
    fun enrich_with_fact l t =
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   162
      Proof_Context.put_thms false (string_of_label l, SOME [Skip_Proof.make_thm thy t])
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   163
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   164
    val enrich_with_assms = fold (uncurry enrich_with_fact)
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   165
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
   166
    fun enrich_with_proof (Proof (_, assms, isar_steps)) =
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   167
      enrich_with_assms assms #> fold enrich_with_step isar_steps
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   168
    and enrich_with_step (Let _) = I
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   169
      | enrich_with_step (Prove (_, _, l, t, subproofs, _)) =
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   170
        enrich_with_fact l t #> fold enrich_with_proof subproofs
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   171
  in
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   172
    enrich_with_proof proof ctxt
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   173
  end
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   174
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   175
fun merge_preplay_outcomes _ Play_Failed = Play_Failed
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   176
  | merge_preplay_outcomes Play_Failed _ = Play_Failed
54831
blanchet
parents: 54828
diff changeset
   177
  | merge_preplay_outcomes (Play_Timed_Out t1) (Play_Timed_Out t2) =
blanchet
parents: 54828
diff changeset
   178
    Play_Timed_Out (Time.+ (t1, t2))
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   179
  | merge_preplay_outcomes (Played t1) (Play_Timed_Out t2) = Play_Timed_Out (Time.+ (t1, t2))
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   180
  | merge_preplay_outcomes (Play_Timed_Out t1) (Played t2) = Play_Timed_Out (Time.+ (t1, t2))
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   181
  | merge_preplay_outcomes (Played t1) (Played t2) = Played (Time.+ (t1, t2))
54827
14e2c7616209 more data structure refactoring
blanchet
parents: 54826
diff changeset
   182
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   183
(* Given a proof, produces an imperative preplay interface with a shared table mapping from labels
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   184
   to preplay results. The preplay results are caluclated lazyly and cached to avoid repeated
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   185
   calculation.
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   186
54763
blanchet
parents: 54761
diff changeset
   187
   Precondition: The proof must be labeled canonically; cf.
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   188
   "Slegehammer_Proof.relabel_proof_canonically". *)
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   189
fun proof_preplay_interface debug ctxt type_enc lam_trans do_preplay preplay_timeout proof =
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   190
  if not do_preplay then
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   191
    (* the "dont_preplay" option pretends that everything works just fine *)
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   192
    {get_preplay_outcome = K (Played Time.zeroTime),
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   193
     set_preplay_outcome = K (K ()),
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   194
     preplay_quietly = K (K (Played Time.zeroTime)),
54831
blanchet
parents: 54828
diff changeset
   195
     overall_preplay_outcome = K (Played Time.zeroTime)} : preplay_interface
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   196
  else
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   197
    let
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   198
      val ctxt = enrich_context_with_local_facts proof ctxt
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   199
52627
smolkas
parents: 52626
diff changeset
   200
      fun preplay quietly timeout step =
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   201
        preplay_raw debug type_enc lam_trans ctxt timeout step
52626
79a4e7f8d758 cleaner preplay interface
smolkas
parents: 52613
diff changeset
   202
        handle exn =>
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   203
               if Exn.is_interrupt exn then
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   204
                 reraise exn
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   205
               else
54825
blanchet
parents: 54817
diff changeset
   206
                (if not quietly andalso debug then
blanchet
parents: 54817
diff changeset
   207
                   warning ("Preplay failure:\n  " ^ @{make_string} step ^ "\n  " ^
blanchet
parents: 54817
diff changeset
   208
                     @{make_string} exn)
blanchet
parents: 54817
diff changeset
   209
                 else
blanchet
parents: 54817
diff changeset
   210
                   ();
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   211
                 Play_Failed)
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   212
52626
79a4e7f8d758 cleaner preplay interface
smolkas
parents: 52613
diff changeset
   213
      (* preplay steps treating exceptions like timeouts *)
54827
14e2c7616209 more data structure refactoring
blanchet
parents: 54826
diff changeset
   214
      fun preplay_quietly timeout = preplay true timeout
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   215
52626
79a4e7f8d758 cleaner preplay interface
smolkas
parents: 52613
diff changeset
   216
      val preplay_tab =
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   217
        let
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   218
          fun add_step_to_tab step tab =
54763
blanchet
parents: 54761
diff changeset
   219
            (case label_of_step step of
54831
blanchet
parents: 54828
diff changeset
   220
              NONE => tab
blanchet
parents: 54828
diff changeset
   221
            | SOME l =>
blanchet
parents: 54828
diff changeset
   222
              Canonical_Lbl_Tab.update_new
blanchet
parents: 54828
diff changeset
   223
                (l, (fn () => preplay false preplay_timeout step) |> Lazy.lazy) tab)
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
   224
            handle Canonical_Lbl_Tab.DUP _ =>
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
   225
              raise Fail "Sledgehammer_Isar_Preplay: preplay time table"
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   226
        in
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   227
          Canonical_Lbl_Tab.empty
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   228
          |> fold_isar_steps add_step_to_tab (steps_of_proof proof)
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   229
          |> Unsynchronized.ref
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   230
        end
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   231
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   232
      fun get_preplay_outcome l =
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   233
        Canonical_Lbl_Tab.lookup (!preplay_tab) l |> the |> Lazy.force
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
   234
        handle Option.Option => raise Fail "Sledgehammer_Isar_Preplay: preplay time table"
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   235
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   236
      fun set_preplay_outcome l result =
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   237
        preplay_tab := Canonical_Lbl_Tab.update (l, Lazy.value result) (!preplay_tab)
52626
79a4e7f8d758 cleaner preplay interface
smolkas
parents: 52613
diff changeset
   238
54763
blanchet
parents: 54761
diff changeset
   239
      val result_of_step =
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   240
        try (label_of_step #> the #> get_preplay_outcome)
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   241
        #> the_default (Played Time.zeroTime)
54763
blanchet
parents: 54761
diff changeset
   242
54831
blanchet
parents: 54828
diff changeset
   243
      fun overall_preplay_outcome (Proof (_, _, steps)) =
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   244
        fold_isar_steps (merge_preplay_outcomes o result_of_step) steps (Played Time.zeroTime)
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   245
    in
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   246
      {get_preplay_outcome = get_preplay_outcome,
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
   247
       set_preplay_outcome = set_preplay_outcome,
54712
cbebe2cf77f1 more work on Z3 Isar proofs
blanchet
parents: 54700
diff changeset
   248
       preplay_quietly = preplay_quietly,
54831
blanchet
parents: 54828
diff changeset
   249
       overall_preplay_outcome = overall_preplay_outcome}
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   250
    end
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   251
54504
blanchet
parents: 53761
diff changeset
   252
end;