src/HOL/Tools/Sledgehammer/sledgehammer_isar_preplay.ML
author blanchet
Mon, 03 Feb 2014 11:37:48 +0100
changeset 55279 df41d34d1324
parent 55278 73372494fd80
child 55280 f0187a12b8f2
permissions -rw-r--r--
tuned data 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
55223
3c593bad6b31 generalized preplaying infrastructure to store various results for various methods
blanchet
parents: 55221
diff changeset
    11
  type proof_method = Sledgehammer_Isar_Proof.proof_method
55212
blanchet
parents: 55202
diff changeset
    12
  type isar_step = Sledgehammer_Isar_Proof.isar_step
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    13
  type isar_proof = Sledgehammer_Isar_Proof.isar_proof
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    14
  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
    15
55212
blanchet
parents: 55202
diff changeset
    16
  val trace : bool Config.T
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
    17
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
    18
  type isar_preplay_data
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
    19
55256
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    20
  val enrich_context_with_local_facts : isar_proof -> Proof.context -> Proof.context
55278
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
    21
  val preplay_isar_step_for_method : Proof.context -> Time.time -> proof_method -> isar_step ->
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
    22
    play_outcome
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
    23
  val preplay_isar_step : Proof.context -> Time.time -> isar_step ->
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
    24
    (proof_method * play_outcome) list
55264
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
    25
  val set_preplay_outcomes_of_isar_step : Proof.context -> Time.time ->
55278
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
    26
    isar_preplay_data Unsynchronized.ref -> isar_step -> (proof_method * play_outcome) list -> unit
55272
blanchet
parents: 55269
diff changeset
    27
  val forced_intermediate_preplay_outcome_of_isar_step : isar_preplay_data -> label -> play_outcome
55266
d9d31354834e centralize more preplaying
blanchet
parents: 55264
diff changeset
    28
  val preplay_outcome_of_isar_step_for_method : isar_preplay_data -> label -> proof_method ->
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
    29
    play_outcome Lazy.lazy
55266
d9d31354834e centralize more preplaying
blanchet
parents: 55264
diff changeset
    30
  val fastest_method_of_isar_step : isar_preplay_data -> label -> proof_method
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
    31
  val preplay_outcome_of_isar_proof : isar_preplay_data -> isar_proof -> play_outcome
54504
blanchet
parents: 53761
diff changeset
    32
end;
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    33
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    34
structure Sledgehammer_Isar_Preplay : SLEDGEHAMMER_ISAR_PREPLAY =
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    35
struct
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    36
55257
abfd7b90bba2 rationalized threading of 'metis' arguments
blanchet
parents: 55256
diff changeset
    37
open ATP_Proof_Reconstruct
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    38
open Sledgehammer_Util
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    39
open Sledgehammer_Reconstructor
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
    40
open Sledgehammer_Isar_Proof
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    41
54763
blanchet
parents: 54761
diff changeset
    42
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
    43
55256
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    44
fun enrich_context_with_local_facts proof ctxt =
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    45
  let
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    46
    val thy = Proof_Context.theory_of ctxt
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    47
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    48
    fun enrich_with_fact l t =
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    49
      Proof_Context.put_thms false (string_of_label l, SOME [Skip_Proof.make_thm thy t])
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    50
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    51
    val enrich_with_assms = fold (uncurry enrich_with_fact)
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    52
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    53
    fun enrich_with_proof (Proof (_, assms, isar_steps)) =
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    54
      enrich_with_assms assms #> fold enrich_with_step isar_steps
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    55
    and enrich_with_step (Let _) = I
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    56
      | enrich_with_step (Prove (_, _, l, t, subproofs, _)) =
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    57
        enrich_with_fact l t #> fold enrich_with_proof subproofs
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    58
  in
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    59
    enrich_with_proof proof ctxt
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    60
  end
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
    61
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
    62
fun preplay_trace ctxt assmsp concl outcome =
51879
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    63
  let
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    64
    val ctxt = ctxt |> Config.put show_markup true
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    65
    val assms = op @ assmsp
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
    66
    val time = Pretty.str ("[" ^ string_of_play_outcome outcome ^ "]")
55251
85f5d7da4ab6 tuned code
blanchet
parents: 55244
diff changeset
    67
    val assms = Pretty.enum " and " "using " " shows " (map (Display.pretty_thm ctxt) assms)
85f5d7da4ab6 tuned code
blanchet
parents: 55244
diff changeset
    68
    val concl = Syntax.pretty_term ctxt concl
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    69
  in
55251
85f5d7da4ab6 tuned code
blanchet
parents: 55244
diff changeset
    70
    tracing (Pretty.string_of (Pretty.blk (2, Pretty.breaks [time, assms, concl])))
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    71
  end
51879
ee9562d31778 added preplay tracing
smolkas
parents: 51876
diff changeset
    72
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    73
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
    74
  let val timing = Timing.start () in
54828
b2271ad695db don't do 'isar_try0' if preplaying is off
blanchet
parents: 54827
diff changeset
    75
    (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
    76
    handle TimeLimit.TimeOut => Play_Timed_Out timeout
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    77
  end
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    78
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    79
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
    80
  (names
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    81
   |>> map string_of_label
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
    82
   |> 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
    83
  handle ERROR msg => error ("preplay error: " ^ msg)
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    84
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    85
fun thm_of_proof ctxt (Proof (fixed_frees, assms, steps)) =
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
    86
  let
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
    87
    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
    88
54700
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    89
    val concl = 
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    90
      (case try List.last steps of
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    91
        SOME (Prove (_, [], _, t, _, _)) => t
64177ce0a7bd adapted code for Z3 proof reconstruction
blanchet
parents: 54504
diff changeset
    92
      | _ => 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
    93
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
    94
    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
    95
    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
    96
    val subst = map (`var_of_free #> swap #> apfst Free) fixed_frees
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
    97
  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
    98
    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
    99
    |> subst_free subst
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   100
    |> Skip_Proof.make_thm thy
51178
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
   101
  end
06689dbfe072 simplified byline, isar_qualifier
smolkas
parents: 51155
diff changeset
   102
55257
abfd7b90bba2 rationalized threading of 'metis' arguments
blanchet
parents: 55256
diff changeset
   103
fun tac_of_method ctxt (local_facts, global_facts) meth =
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   104
  Method.insert_tac local_facts THEN'
54766
6ac273f176cd store alternative proof methods in Isar data structure
blanchet
parents: 54765
diff changeset
   105
  (case meth of
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   106
    Meson_Method => Meson.meson_tac ctxt global_facts
55257
abfd7b90bba2 rationalized threading of 'metis' arguments
blanchet
parents: 55256
diff changeset
   107
  | Metis_Method (type_enc_opt, lam_trans_opt) =>
abfd7b90bba2 rationalized threading of 'metis' arguments
blanchet
parents: 55256
diff changeset
   108
    Metis_Tactic.metis_tac [type_enc_opt |> the_default partial_type_enc]
abfd7b90bba2 rationalized threading of 'metis' arguments
blanchet
parents: 55256
diff changeset
   109
      (the_default default_metis_lam_trans lam_trans_opt) ctxt global_facts
52592
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52575
diff changeset
   110
  | _ =>
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   111
    Method.insert_tac global_facts THEN'
54766
6ac273f176cd store alternative proof methods in Isar data structure
blanchet
parents: 54765
diff changeset
   112
    (case meth of
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   113
      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
   114
    | Simp_Size_Method =>
16511f84913c reconstruct SPASS-Pirate steps of the form 'x ~= C x' (or more complicated)
blanchet
parents: 54831
diff changeset
   115
      Simplifier.asm_full_simp_tac (Simplifier.add_simp @{thm size_ne_size_imp_ne} ctxt)
54765
blanchet
parents: 54764
diff changeset
   116
    | Auto_Method => K (Clasimp.auto_tac ctxt)
blanchet
parents: 54764
diff changeset
   117
    | Fastforce_Method => Clasimp.fast_force_tac ctxt
blanchet
parents: 54764
diff changeset
   118
    | Force_Method => Clasimp.force_tac ctxt
blanchet
parents: 54764
diff changeset
   119
    | Arith_Method => Arith_Data.arith_tac ctxt
blanchet
parents: 54764
diff changeset
   120
    | Blast_Method => blast_tac ctxt
55219
6fe9fd75f9d7 added 'algebra' to the mix
blanchet
parents: 55213
diff changeset
   121
    | Algebra_Method => Groebner.algebra_tac [] [] ctxt
55202
824c48a539c9 renamed many Sledgehammer ML files to clarify structure
blanchet
parents: 55194
diff changeset
   122
    | _ => raise Fail "Sledgehammer_Isar_Preplay: tac_of_method"))
52592
8a25b17e3d79 optimize isar-proofs by trying different proof methods
smolkas
parents: 52575
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
(* main function for preplaying Isar steps; may throw exceptions *)
55278
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   125
fun raw_preplay_step_for_method ctxt timeout meth
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   126
    (Prove (_, xs, _, t, subproofs, (fact_names, _))) =
55258
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   127
  let
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   128
    val goal =
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   129
      (case xs of
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   130
        [] => t
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   131
      | _ =>
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   132
        (* proof obligation: !!thesis. (!!x. A x ==> thesis) ==> thesis
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   133
           (cf. "~~/src/Pure/Isar/obtain.ML") *)
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   134
        let
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   135
          (* FIXME: generate fresh name *)
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   136
          val thesis = Free ("thesis_preplay", HOLogic.boolT)
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   137
          val thesis_prop = HOLogic.mk_Trueprop thesis
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   138
          val frees = map Free xs
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   139
55258
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   140
          (* !!x1..xn. t ==> thesis (xs = [x1, .., xn]) *)
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   141
          val inner_prop = fold_rev Logic.all frees (Logic.mk_implies (t, thesis_prop))
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   142
        in
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   143
          (* !!thesis. (!!x1..xn. t ==> thesis) ==> thesis *)
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   144
          Logic.all thesis (Logic.mk_implies (inner_prop, thesis_prop))
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   145
        end)
54761
0ef52f40d419 use consistent condition for setting 'metis_new_skolem' (in preplaying and in output printing) + tuning
blanchet
parents: 54712
diff changeset
   146
55258
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   147
    val facts =
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   148
      resolve_fact_names ctxt fact_names
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   149
      |>> append (map (thm_of_proof ctxt) subproofs)
55194
daa64e603e70 got rid of one of two Metis variants
blanchet
parents: 55193
diff changeset
   150
55258
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   151
    fun prove () =
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   152
      Goal.prove ctxt [] [] goal (fn {context = ctxt, ...} =>
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   153
        HEADGOAL (tac_of_method ctxt facts meth))
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   154
      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
   155
55258
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   156
    val play_outcome = take_time timeout prove ()
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   157
  in
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   158
    (if Config.get ctxt trace then preplay_trace ctxt facts goal play_outcome else ();
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   159
     play_outcome)
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   160
  end
8cc42c1f9bb5 more data structure rationalization
blanchet
parents: 55257
diff changeset
   161
55278
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   162
fun preplay_isar_step_for_method ctxt timeout meth =
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   163
  try (raw_preplay_step_for_method ctxt timeout meth) #> the_default Play_Failed
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   164
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   165
fun preplay_isar_step ctxt timeout step =
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   166
  let
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   167
    fun try_method meth =
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   168
      (case preplay_isar_step_for_method ctxt timeout meth step of
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   169
        outcome as Played _ => SOME (meth, outcome)
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   170
      | _ => NONE)
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   171
55279
df41d34d1324 tuned data structure
blanchet
parents: 55278
diff changeset
   172
    val meths = proof_methods_of_isar_step step
55278
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   173
  in
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   174
    the_list (Par_List.get_some try_method meths)
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   175
  end
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   176
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   177
type isar_preplay_data = (proof_method * play_outcome Lazy.lazy) list Canonical_Label_Tab.table
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   178
55256
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
   179
fun time_of_play (Played time) = time
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
   180
  | time_of_play (Play_Timed_Out time) = time
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   181
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   182
fun add_preplay_outcomes Play_Failed _ = Play_Failed
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   183
  | add_preplay_outcomes _ Play_Failed = Play_Failed
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   184
  | add_preplay_outcomes (Played time1) (Played time2) = Played (Time.+ (time1, time2))
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   185
  | add_preplay_outcomes play1 play2 =
55256
6c317e374614 refactored data structure (step 3)
blanchet
parents: 55255
diff changeset
   186
    Play_Timed_Out (Time.+ (pairself time_of_play (play1, play2)))
54827
14e2c7616209 more data structure refactoring
blanchet
parents: 54826
diff changeset
   187
55264
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   188
fun set_preplay_outcomes_of_isar_step ctxt timeout preplay_data
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   189
      (step as Prove (_, _, l, _, _, (_, meths))) meths_outcomes0 =
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   190
    let
55278
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   191
      fun lazy_preplay meth =
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   192
        Lazy.lazy (fn () => preplay_isar_step_for_method ctxt timeout meth step)
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   193
      val meths_outcomes = meths_outcomes0
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   194
        |> map (apsnd Lazy.value)
73372494fd80 more flexible compression, choosing whichever proof method works
blanchet
parents: 55275
diff changeset
   195
        |> fold (fn meth => AList.default (op =) (meth, lazy_preplay meth)) meths
55264
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   196
    in
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   197
      preplay_data := Canonical_Label_Tab.map_default (l, [])
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   198
        (fold (AList.update (op =)) meths_outcomes) (!preplay_data)
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   199
    end
43473497fb65 centralize preplaying
blanchet
parents: 55260
diff changeset
   200
  | set_preplay_outcomes_of_isar_step _ _ _ _ _ = ()
52556
c8357085217c completely rewrote SH compress; added two parameters for experimentation/fine grained control
smolkas
parents: 52454
diff changeset
   201
55269
aae87746f412 more thorough, hybrid compression
blanchet
parents: 55268
diff changeset
   202
fun peek_at_outcome outcome = if Lazy.is_finished outcome then Lazy.force outcome else Not_Played
aae87746f412 more thorough, hybrid compression
blanchet
parents: 55268
diff changeset
   203
55275
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   204
fun get_best_method_outcome force =
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   205
  tap (List.app (K () o Lazy.future Future.default_params o snd)) (* optional parallelism *)
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   206
  #> map (apsnd force)
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   207
  #> sort (play_outcome_ord o pairself snd)
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   208
  #> hd
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   209
55272
blanchet
parents: 55269
diff changeset
   210
fun forced_intermediate_preplay_outcome_of_isar_step preplay_data l =
55269
aae87746f412 more thorough, hybrid compression
blanchet
parents: 55268
diff changeset
   211
  let
55275
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   212
    val meths_outcomes as (meth1, outcome1) :: _ = the (Canonical_Label_Tab.lookup preplay_data l)
55269
aae87746f412 more thorough, hybrid compression
blanchet
parents: 55268
diff changeset
   213
  in
55275
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   214
    if forall (not o Lazy.is_finished o snd) meths_outcomes then
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   215
      (case Lazy.force outcome1 of
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   216
        outcome as Played _ => outcome
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   217
      | _ => snd (get_best_method_outcome Lazy.force meths_outcomes))
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   218
    else
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   219
      (case get_best_method_outcome peek_at_outcome meths_outcomes of
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   220
        (_, Not_Played) => snd (get_best_method_outcome Lazy.force meths_outcomes)
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   221
      | (_, outcome) => outcome)
55269
aae87746f412 more thorough, hybrid compression
blanchet
parents: 55268
diff changeset
   222
  end
aae87746f412 more thorough, hybrid compression
blanchet
parents: 55268
diff changeset
   223
55268
blanchet
parents: 55266
diff changeset
   224
fun preplay_outcome_of_isar_step_for_method preplay_data l =
blanchet
parents: 55266
diff changeset
   225
  the o AList.lookup (op =) (the (Canonical_Label_Tab.lookup preplay_data l))
55252
0dc4993b4f56 refactor data structure (step 1)
blanchet
parents: 55251
diff changeset
   226
55268
blanchet
parents: 55266
diff changeset
   227
fun fastest_method_of_isar_step preplay_data =
55269
aae87746f412 more thorough, hybrid compression
blanchet
parents: 55268
diff changeset
   228
  the o Canonical_Label_Tab.lookup preplay_data
55275
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   229
  #> get_best_method_outcome Lazy.force
e1bf9f0c5420 less aggressive evaluation
blanchet
parents: 55272
diff changeset
   230
  #> fst
55266
d9d31354834e centralize more preplaying
blanchet
parents: 55264
diff changeset
   231
d9d31354834e centralize more preplaying
blanchet
parents: 55264
diff changeset
   232
fun forced_outcome_of_step preplay_data (Prove (_, _, l, _, _, (_, meths))) =
d9d31354834e centralize more preplaying
blanchet
parents: 55264
diff changeset
   233
    Lazy.force (preplay_outcome_of_isar_step_for_method preplay_data l (the_single meths))
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   234
  | forced_outcome_of_step _ _ = Played Time.zeroTime
55252
0dc4993b4f56 refactor data structure (step 1)
blanchet
parents: 55251
diff changeset
   235
55260
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   236
fun preplay_outcome_of_isar_proof preplay_data (Proof (_, _, steps)) =
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   237
  fold_isar_steps (add_preplay_outcomes o forced_outcome_of_step preplay_data) steps
ada3ae6458d4 more data structure rationalization
blanchet
parents: 55258
diff changeset
   238
    (Played Time.zeroTime)
50923
141d8f575f6f move preplaying to own structure
smolkas
parents:
diff changeset
   239
54504
blanchet
parents: 53761
diff changeset
   240
end;