src/HOL/Tools/Sledgehammer/sledgehammer_isar.ML
author fleury
Mon, 02 Jun 2014 15:10:18 +0200
changeset 58496 f0eff6393a32
parent 58398 8b2283566f6e
child 58587 f6bf6d5341ee
permissions -rw-r--r--
basic setup for zipperposition prover
blanchet@56544
     1
(*  Title:      HOL/Tools/Sledgehammer/sledgehammer_isar.ML
blanchet@50898
     2
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@50898
     3
    Author:     Steffen Juilf Smolka, TU Muenchen
blanchet@50898
     4
blanchet@50929
     5
Isar proof reconstruction from ATP proofs.
blanchet@50898
     6
*)
blanchet@50898
     7
blanchet@56544
     8
signature SLEDGEHAMMER_ISAR =
blanchet@50898
     9
sig
blanchet@56113
    10
  type atp_step_name = ATP_Proof.atp_step_name
blanchet@55868
    11
  type ('a, 'b) atp_step = ('a, 'b) ATP_Proof.atp_step
blanchet@54723
    12
  type 'a atp_proof = 'a ATP_Proof.atp_proof
blanchet@50929
    13
  type stature = ATP_Problem_Generate.stature
blanchet@56629
    14
  type one_line_params = Sledgehammer_Proof_Methods.one_line_params
blanchet@50929
    15
blanchet@56564
    16
  val trace : bool Config.T
blanchet@56564
    17
blanchet@50929
    18
  type isar_params =
blanchet@56638
    19
    bool * (string option * string option) * Time.time * real * bool * bool
blanchet@56630
    20
    * (term, string) atp_step list * thm
blanchet@50929
    21
blanchet@56638
    22
  val proof_text : Proof.context -> bool -> bool option -> bool option -> (unit -> isar_params) ->
blanchet@56638
    23
    int -> one_line_params -> string
blanchet@50898
    24
end;
blanchet@50898
    25
blanchet@56544
    26
structure Sledgehammer_Isar : SLEDGEHAMMER_ISAR =
blanchet@50898
    27
struct
blanchet@50898
    28
blanchet@50898
    29
open ATP_Util
blanchet@50929
    30
open ATP_Problem
blanchet@50898
    31
open ATP_Proof
blanchet@50898
    32
open ATP_Proof_Reconstruct
blanchet@50933
    33
open Sledgehammer_Util
blanchet@56629
    34
open Sledgehammer_Proof_Methods
blanchet@56544
    35
open Sledgehammer_Isar_Proof
blanchet@56544
    36
open Sledgehammer_Isar_Preplay
blanchet@56544
    37
open Sledgehammer_Isar_Compress
blanchet@56544
    38
open Sledgehammer_Isar_Minimize
blanchet@50929
    39
blanchet@50929
    40
structure String_Redirect = ATP_Proof_Redirect(
blanchet@54723
    41
  type key = atp_step_name
blanchet@50929
    42
  val ord = fn ((s, _ : string list), (s', _)) => fast_string_ord (s, s')
blanchet@50929
    43
  val string_of = fst)
blanchet@50929
    44
blanchet@50898
    45
open String_Redirect
blanchet@50898
    46
blanchet@56564
    47
val trace = Attrib.setup_config_bool @{binding sledgehammer_isar_trace} (K false)
blanchet@56564
    48
blanchet@56111
    49
val e_skolemize_rules = ["skolemize", "shift_quantors"]
blanchet@56178
    50
val spass_pirate_datatype_rule = "DT"
blanchet@56088
    51
val vampire_skolemisation_rule = "skolemisation"
blanchet@56088
    52
(* TODO: Use "Z3_Proof.string_of_rule" once it is moved to Isabelle *)
blanchet@56093
    53
val z3_skolemize_rule = "sk"
blanchet@56095
    54
val z3_th_lemma_rule = "th-lemma"
blanchet@56088
    55
blanchet@56114
    56
val skolemize_rules =
blanchet@56114
    57
  e_skolemize_rules @ [spass_skolemize_rule, vampire_skolemisation_rule, z3_skolemize_rule]
blanchet@56088
    58
blanchet@56111
    59
val is_skolemize_rule = member (op =) skolemize_rules
blanchet@56097
    60
val is_arith_rule = String.isPrefix z3_th_lemma_rule
blanchet@56178
    61
val is_datatype_rule = String.isPrefix spass_pirate_datatype_rule
blanchet@56097
    62
blanchet@55874
    63
fun raw_label_of_num num = (num, 0)
blanchet@50929
    64
blanchet@55874
    65
fun label_of_clause [(num, _)] = raw_label_of_num num
blanchet@55874
    66
  | label_of_clause c = (space_implode "___" (map (fst o raw_label_of_num o fst) c), 0)
blanchet@51020
    67
blanchet@55878
    68
fun add_fact_of_dependencies [(_, ss as _ :: _)] = apsnd (union (op =) ss)
blanchet@55878
    69
  | add_fact_of_dependencies names = apfst (insert (op =) (label_of_clause names))
blanchet@50929
    70
blanchet@57468
    71
fun is_True_prop t = t aconv @{prop True}
blanchet@56100
    72
blanchet@56141
    73
fun add_line_pass1 (line as (name, role, t, rule, [])) lines =
blanchet@56112
    74
    (* No dependencies: lemma (for Z3), fact, conjecture, or (for Vampire) internal facts or
blanchet@56112
    75
       definitions. *)
blanchet@58398
    76
    if role = Conjecture orelse role = Negated_Conjecture then line :: lines
blanchet@58398
    77
    else if is_True_prop t then map (replace_dependencies_in_line (name, [])) lines
blanchet@58398
    78
    else if role = Lemma orelse role = Hypothesis orelse is_arith_rule rule then line :: lines
blanchet@58398
    79
    else if role = Axiom then lines (* axioms (facts) need no proof lines *)
blanchet@58398
    80
    else map (replace_dependencies_in_line (name, [])) lines
blanchet@56097
    81
  | add_line_pass1 line lines = line :: lines
blanchet@50929
    82
blanchet@57472
    83
fun add_lines_pass2 res _ [] = rev res
blanchet@57472
    84
  | add_lines_pass2 res prev_t ((line as (name, role, t, rule, deps)) :: lines) =
blanchet@56526
    85
    let
blanchet@56526
    86
      val is_last_line = null lines
blanchet@56526
    87
blanchet@56526
    88
      fun looks_interesting () =
blanchet@57472
    89
        not (is_True_prop t) andalso not (t aconv prev_t) andalso null (Term.add_tvars t []) andalso
blanchet@57472
    90
        length deps >= 2 andalso not (can the_single lines)
blanchet@56526
    91
blanchet@56526
    92
      fun is_skolemizing_line (_, _, _, rule', deps') =
blanchet@56526
    93
        is_skolemize_rule rule' andalso member (op =) deps' name
blanchet@56526
    94
      fun is_before_skolemize_rule () = exists is_skolemizing_line lines
blanchet@56526
    95
    in
blanchet@56526
    96
      if role <> Plain orelse is_skolemize_rule rule orelse is_arith_rule rule orelse
blanchet@56526
    97
         is_datatype_rule rule orelse is_last_line orelse looks_interesting () orelse
blanchet@56526
    98
         is_before_skolemize_rule () then
blanchet@57472
    99
        add_lines_pass2 (line :: res) t lines
blanchet@56526
   100
      else
blanchet@57472
   101
        add_lines_pass2 res t (map (replace_dependencies_in_line (name, deps)) lines)
blanchet@56526
   102
    end
blanchet@50929
   103
blanchet@50929
   104
type isar_params =
blanchet@56638
   105
  bool * (string option * string option) * Time.time * real * bool * bool
blanchet@56630
   106
  * (term, string) atp_step list * thm
blanchet@50929
   107
blanchet@58194
   108
val basic_systematic_methods = [Metis_Method (NONE, NONE), Meson_Method, Blast_Method, SATx_Method]
blanchet@57439
   109
val simp_based_methods = [Auto_Method, Simp_Method, Fastforce_Method, Force_Method]
blanchet@56665
   110
val basic_arith_methods = [Linarith_Method, Presburger_Method, Algebra_Method]
blanchet@56653
   111
blanchet@56653
   112
val arith_methods = basic_arith_methods @ simp_based_methods @ basic_systematic_methods
blanchet@56653
   113
val datatype_methods = [Simp_Method, Simp_Size_Method]
blanchet@56653
   114
val systematic_methods0 = basic_systematic_methods @ basic_arith_methods @ simp_based_methods @
blanchet@56653
   115
  [Metis_Method (SOME no_typesN, NONE)]
blanchet@56653
   116
val rewrite_methods = simp_based_methods @ basic_systematic_methods @ basic_arith_methods
blanchet@56653
   117
val skolem_methods = basic_systematic_methods
blanchet@56108
   118
blanchet@56639
   119
fun isar_proof_text ctxt debug isar_proofs smt_proofs isar_params
blanchet@50933
   120
    (one_line_params as (_, _, _, _, subgoal, subgoal_count)) =
blanchet@50898
   121
  let
blanchet@57439
   122
    val _ = if debug then Output.urgent_message "Constructing Isar proof..." else ()
blanchet@57439
   123
blanchet@50898
   124
    fun isar_proof_of () =
blanchet@50898
   125
      let
fleury@58496
   126
        val (verbose, alt_metis_args, preplay_timeout, compress_isar, try0_isar, minimize,
fleury@58496
   127
          atp_proof, goal) = isar_params ()
blanchet@56599
   128
blanchet@56653
   129
        val systematic_methods = insert (op =) (Metis_Method alt_metis_args) systematic_methods0
blanchet@56510
   130
blanchet@56653
   131
        fun massage_methods (meths as meth :: _) =
blanchet@56639
   132
          if not try0_isar then [meth]
blanchet@57423
   133
          else if smt_proofs = SOME true then SMT2_Method :: meths
blanchet@56639
   134
          else meths
blanchet@56615
   135
blanchet@56510
   136
        val (params, _, concl_t) = strip_subgoal goal subgoal ctxt
blanchet@56606
   137
        val fixes = map (fn (s, T) => (Binding.name s, SOME T, NoSyn)) params
blanchet@56606
   138
        val ctxt = ctxt |> Variable.set_body false |> Proof_Context.add_fixes fixes |> snd
blanchet@56510
   139
blanchet@56510
   140
        val do_preplay = preplay_timeout <> Time.zeroTime
blanchet@56595
   141
        val compress_isar = if isar_proofs = NONE andalso do_preplay then 1000.0 else compress_isar
blanchet@56510
   142
wenzelm@57290
   143
        val is_fixed = Variable.is_declared ctxt orf Name.is_skolem
blanchet@56510
   144
        fun skolems_of t = Term.add_frees t [] |> filter_out (is_fixed o fst) |> rev
blanchet@56510
   145
blanchet@56510
   146
        fun get_role keep_role ((num, _), role, t, rule, _) =
blanchet@56510
   147
          if keep_role role then SOME ((raw_label_of_num num, t), rule) else NONE
blanchet@56510
   148
blanchet@50898
   149
        val atp_proof =
blanchet@50898
   150
          atp_proof
blanchet@56097
   151
          |> rpair [] |-> fold_rev add_line_pass1
blanchet@57472
   152
          |> add_lines_pass2 [] Term.dummy
blanchet@56042
   153
blanchet@55908
   154
        val conjs =
blanchet@56042
   155
          map_filter (fn (name, role, _, _, _) =>
blanchet@56042
   156
              if member (op =) [Conjecture, Negated_Conjecture] role then SOME name else NONE)
blanchet@56042
   157
            atp_proof
blanchet@56093
   158
        val assms = map_filter (Option.map fst o get_role (curry (op =) Hypothesis)) atp_proof
blanchet@56042
   159
        val lems =
blanchet@56042
   160
          map_filter (get_role (curry (op =) Lemma)) atp_proof
blanchet@56093
   161
          |> map (fn ((l, t), rule) =>
blanchet@56095
   162
            let
blanchet@56586
   163
              val (skos, meths) =
blanchet@56615
   164
                (if is_skolemize_rule rule then (skolems_of t, skolem_methods)
blanchet@56615
   165
                 else if is_arith_rule rule then ([], arith_methods)
blanchet@56615
   166
                 else ([], rewrite_methods))
blanchet@56653
   167
                ||> massage_methods
blanchet@56095
   168
            in
blanchet@56641
   169
              Prove ([], skos, l, t, [], ([], []), meths, "")
blanchet@56095
   170
            end)
blanchet@56042
   171
blanchet@52349
   172
        val bot = atp_proof |> List.last |> #1
blanchet@56042
   173
blanchet@52282
   174
        val refute_graph =
blanchet@52349
   175
          atp_proof
blanchet@52349
   176
          |> map (fn (name, _, _, _, from) => (from, name))
blanchet@52349
   177
          |> make_refute_graph bot
blanchet@52349
   178
          |> fold (Atom_Graph.default_node o rpair ()) conjs
blanchet@56042
   179
blanchet@52282
   180
        val axioms = axioms_of_refute_graph refute_graph conjs
blanchet@56042
   181
blanchet@52282
   182
        val tainted = tainted_atoms_of_refute_graph refute_graph conjs
blanchet@52293
   183
        val is_clause_tainted = exists (member (op =) tainted)
blanchet@51691
   184
        val steps =
blanchet@50898
   185
          Symtab.empty
blanchet@52338
   186
          |> fold (fn (name as (s, _), role, t, rule, _) =>
blanchet@56100
   187
              Symtab.update_new (s, (rule, t
blanchet@56100
   188
                |> (if is_clause_tainted [name] then
blanchet@56110
   189
                      HOLogic.dest_Trueprop
blanchet@56110
   190
                      #> role <> Conjecture ? s_not
blanchet@56100
   191
                      #> fold exists_of (map Var (Term.add_vars t []))
blanchet@56110
   192
                      #> HOLogic.mk_Trueprop
blanchet@56100
   193
                    else
blanchet@56100
   194
                      I))))
blanchet@56100
   195
            atp_proof
blanchet@56042
   196
blanchet@56097
   197
        val rule_of_clause_id = fst o the o Symtab.lookup steps o fst
blanchet@56042
   198
blanchet@56099
   199
        fun prop_of_clause [(num, _)] = Symtab.lookup steps num |> the |> snd |> close_form
blanchet@51031
   200
          | prop_of_clause names =
blanchet@51691
   201
            let
blanchet@56100
   202
              val lits = map (HOLogic.dest_Trueprop o snd)
blanchet@56100
   203
                (map_filter (Symtab.lookup steps o fst) names)
blanchet@51691
   204
            in
blanchet@56096
   205
              (case List.partition (can HOLogic.dest_not) lits of
blanchet@51033
   206
                (negs as _ :: _, pos as _ :: _) =>
blanchet@55880
   207
                s_imp (Library.foldr1 s_conj (map HOLogic.dest_not negs), Library.foldr1 s_disj pos)
blanchet@56096
   208
              | _ => fold (curry s_disj) lits @{term False})
blanchet@51033
   209
            end
blanchet@51031
   210
            |> HOLogic.mk_Trueprop |> close_form
blanchet@56042
   211
blanchet@56511
   212
        fun maybe_show outer c = (outer andalso eq_set (op =) (c, conjs)) ? cons Show
blanchet@56042
   213
blanchet@56042
   214
        fun isar_steps outer predecessor accum [] =
blanchet@56042
   215
            accum
blanchet@56042
   216
            |> (if tainted = [] then
blanchet@56042
   217
                  cons (Prove (if outer then [Show] else [], [], no_label, concl_t, [],
blanchet@56653
   218
                    (the_list predecessor, []), massage_methods systematic_methods, ""))
blanchet@56042
   219
                else
blanchet@56042
   220
                  I)
blanchet@56042
   221
            |> rev
blanchet@56097
   222
          | isar_steps outer _ accum (Have (id, (gamma, c)) :: infs) =
blanchet@56042
   223
            let
blanchet@56042
   224
              val l = label_of_clause c
blanchet@56042
   225
              val t = prop_of_clause c
blanchet@56097
   226
              val rule = rule_of_clause_id id
blanchet@56097
   227
              val skolem = is_skolemize_rule rule
blanchet@56097
   228
blanchet@56621
   229
              val deps = fold add_fact_of_dependencies gamma ([], [])
blanchet@56586
   230
              val meths =
blanchet@56615
   231
                (if skolem then skolem_methods
blanchet@56615
   232
                 else if is_arith_rule rule then arith_methods
blanchet@56615
   233
                 else if is_datatype_rule rule then datatype_methods
blanchet@56653
   234
                 else systematic_methods)
blanchet@56653
   235
                |> massage_methods
blanchet@56622
   236
blanchet@56641
   237
              fun prove sub facts = Prove (maybe_show outer c [], [], l, t, sub, facts, meths, "")
blanchet@56622
   238
              fun steps_of_rest step = isar_steps outer (SOME l) (step :: accum) infs
blanchet@56042
   239
            in
blanchet@56042
   240
              if is_clause_tainted c then
blanchet@56054
   241
                (case gamma of
blanchet@56042
   242
                  [g] =>
blanchet@56097
   243
                  if skolem andalso is_clause_tainted g then
blanchet@56093
   244
                    let val subproof = Proof (skolems_of (prop_of_clause g), [], rev accum) in
blanchet@56622
   245
                      isar_steps outer (SOME l) [prove [subproof] ([], [])] infs
blanchet@56042
   246
                    end
blanchet@52285
   247
                  else
blanchet@56622
   248
                    steps_of_rest (prove [] deps)
blanchet@56622
   249
                | _ => steps_of_rest (prove [] deps))
blanchet@56042
   250
              else
blanchet@56641
   251
                steps_of_rest (if skolem then Prove ([], skolems_of t, l, t, [], deps, meths, "")
blanchet@56622
   252
                  else prove [] deps)
blanchet@56042
   253
            end
blanchet@56042
   254
          | isar_steps outer predecessor accum (Cases cases :: infs) =
blanchet@56042
   255
            let
blanchet@56528
   256
              fun isar_case (c, subinfs) =
blanchet@56528
   257
                isar_proof false [] [(label_of_clause c, prop_of_clause c)] [] subinfs
blanchet@56042
   258
              val c = succedent_of_cases cases
blanchet@56042
   259
              val l = label_of_clause c
blanchet@56042
   260
              val t = prop_of_clause c
blanchet@56042
   261
              val step =
blanchet@56102
   262
                Prove (maybe_show outer c [], [], l, t,
blanchet@56102
   263
                  map isar_case (filter_out (null o snd) cases),
blanchet@56653
   264
                  (the_list predecessor, []), massage_methods systematic_methods, "")
blanchet@56042
   265
            in
blanchet@56042
   266
              isar_steps outer (SOME l) (step :: accum) infs
blanchet@56042
   267
            end
blanchet@56042
   268
        and isar_proof outer fix assms lems infs =
blanchet@56042
   269
          Proof (fix, assms, lems @ isar_steps outer NONE [] infs)
blanchet@56042
   270
blanchet@56564
   271
        val trace = Config.get ctxt trace
blanchet@56556
   272
blanchet@56598
   273
        val canonical_isar_proof =
blanchet@52282
   274
          refute_graph
blanchet@56556
   275
          |> trace ? tap (tracing o prefix "Refute graph: " o string_of_refute_graph)
blanchet@52213
   276
          |> redirect_graph axioms tainted bot
blanchet@56556
   277
          |> trace ? tap (tracing o prefix "Direct proof: " o string_of_direct_proof)
blanchet@56096
   278
          |> isar_proof true params assms lems
blanchet@56555
   279
          |> postprocess_isar_proof_remove_unreferenced_steps I
blanchet@56555
   280
          |> relabel_isar_proof_canonically
blanchet@56556
   281
blanchet@56628
   282
        val ctxt = ctxt |> enrich_context_with_local_facts canonical_isar_proof
blanchet@56598
   283
blanchet@56602
   284
        val preplay_data = Unsynchronized.ref Canonical_Label_Tab.empty
blanchet@56602
   285
blanchet@56606
   286
        val _ = fold_isar_steps (fn meth =>
blanchet@58396
   287
            K (set_preplay_outcomes_of_isar_step ctxt preplay_timeout preplay_data meth []))
blanchet@56602
   288
          (steps_of_isar_proof canonical_isar_proof) ()
blanchet@56556
   289
blanchet@56565
   290
        fun str_of_preplay_outcome outcome =
blanchet@56565
   291
          if Lazy.is_finished outcome then string_of_play_outcome (Lazy.force outcome) else "?"
blanchet@56565
   292
        fun str_of_meth l meth =
blanchet@58327
   293
          string_of_proof_method ctxt [] meth ^ " " ^
blanchet@56608
   294
          str_of_preplay_outcome (preplay_outcome_of_isar_step_for_method (!preplay_data) l meth)
blanchet@56586
   295
        fun comment_of l = map (str_of_meth l) #> commas
blanchet@56564
   296
blanchet@56556
   297
        fun trace_isar_proof label proof =
blanchet@56556
   298
          if trace then
blanchet@56641
   299
            tracing (timestamp () ^ "\n" ^ label ^ ":\n\n" ^
blanchet@57439
   300
              string_of_isar_proof ctxt subgoal subgoal_count
blanchet@57439
   301
                (comment_isar_proof comment_of proof) ^ "\n")
blanchet@56556
   302
          else
blanchet@56556
   303
            ()
blanchet@56096
   304
blanchet@56641
   305
        fun comment_of l (meth :: _) =
blanchet@56641
   306
          (case (verbose,
blanchet@56641
   307
              Lazy.force (preplay_outcome_of_isar_step_for_method (!preplay_data) l meth)) of
blanchet@56641
   308
            (false, Played _) => ""
blanchet@56641
   309
          | (_, outcome) => string_of_play_outcome outcome)
blanchet@56641
   310
blanchet@56170
   311
        val (play_outcome, isar_proof) =
blanchet@56598
   312
          canonical_isar_proof
blanchet@56556
   313
          |> tap (trace_isar_proof "Original")
blanchet@58396
   314
          |> compress_isar_proof ctxt compress_isar preplay_timeout preplay_data
blanchet@56556
   315
          |> tap (trace_isar_proof "Compressed")
blanchet@56555
   316
          |> postprocess_isar_proof_remove_unreferenced_steps
blanchet@56608
   317
               (keep_fastest_method_of_isar_step (!preplay_data)
blanchet@58396
   318
                #> minimize ? minimize_isar_step_dependencies ctxt preplay_data)
blanchet@56556
   319
          |> tap (trace_isar_proof "Minimized")
blanchet@56671
   320
          (* It's not clear whether this is worth the trouble (and if so, "isar_compress" has an
blanchet@56671
   321
             unnatural semantics): *)
blanchet@56671
   322
(*
blanchet@56669
   323
          |> minimize
blanchet@56671
   324
               ? (compress_isar_proof ctxt compress_isar preplay_timeout preplay_data
blanchet@56669
   325
                  #> tap (trace_isar_proof "Compressed again"))
blanchet@56671
   326
*)
blanchet@56602
   327
          |> `(preplay_outcome_of_isar_proof (!preplay_data))
blanchet@56667
   328
          ||> (comment_isar_proof comment_of
blanchet@56667
   329
               #> chain_isar_proof
blanchet@56667
   330
               #> kill_useless_labels_in_isar_proof
blanchet@56667
   331
               #> relabel_isar_proof_nicely)
blanchet@50898
   332
      in
blanchet@57439
   333
        (case string_of_isar_proof ctxt subgoal subgoal_count isar_proof of
blanchet@50898
   334
          "" =>
blanchet@56555
   335
          if isar_proofs = SOME true then "\nNo structured proof available (proof too simple)."
blanchet@56555
   336
          else ""
blanchet@56556
   337
        | isar_text =>
blanchet@51685
   338
          let
blanchet@51685
   339
            val msg =
blanchet@52340
   340
              (if verbose then
blanchet@56602
   341
                 let val num_steps = add_isar_steps (steps_of_isar_proof isar_proof) 0 in
blanchet@56555
   342
                   [string_of_int num_steps ^ " step" ^ plural_s num_steps]
blanchet@56555
   343
                 end
blanchet@52340
   344
               else
blanchet@52340
   345
                 []) @
blanchet@56170
   346
              (if do_preplay then [string_of_play_outcome play_outcome] else [])
smolkas@51292
   347
          in
blanchet@55880
   348
            "\n\nStructured proof" ^ (commas msg |> not (null msg) ? enclose " (" ")") ^ ":\n" ^
blanchet@55880
   349
            Active.sendback_markup [Markup.padding_command] isar_text
blanchet@56096
   350
          end)
blanchet@50898
   351
      end
blanchet@56102
   352
blanchet@58327
   353
    val one_line_proof = one_line_proof_text ctxt 0 one_line_params
blanchet@50898
   354
    val isar_proof =
blanchet@50898
   355
      if debug then
blanchet@50898
   356
        isar_proof_of ()
blanchet@56096
   357
      else
blanchet@56096
   358
        (case try isar_proof_of () of
blanchet@56096
   359
          SOME s => s
blanchet@56096
   360
        | NONE =>
blanchet@57439
   361
          if isar_proofs = SOME true then "\nWarning: Isar proof construction failed." else "")
blanchet@58398
   362
  in
blanchet@58398
   363
    one_line_proof ^ isar_proof
blanchet@58398
   364
  end
blanchet@50898
   365
blanchet@56639
   366
fun isar_proof_would_be_a_good_idea smt_proofs (meth, play) =
blanchet@56166
   367
  (case play of
blanchet@57423
   368
    Played _ => meth = SMT2_Method andalso smt_proofs <> SOME true
blanchet@57435
   369
  | Play_Timed_Out time => Time.> (time, Time.zeroTime)
blanchet@57435
   370
  | Play_Failed => true)
blanchet@52324
   371
blanchet@56639
   372
fun proof_text ctxt debug isar_proofs smt_proofs isar_params num_chained
blanchet@56598
   373
    (one_line_params as (preplay, _, _, _, _, _)) =
blanchet@52327
   374
  (if isar_proofs = SOME true orelse
blanchet@56639
   375
      (isar_proofs = NONE andalso isar_proof_would_be_a_good_idea smt_proofs preplay) then
blanchet@56639
   376
     isar_proof_text ctxt debug isar_proofs smt_proofs isar_params
blanchet@50898
   377
   else
blanchet@58327
   378
     one_line_proof_text ctxt num_chained) one_line_params
blanchet@50898
   379
blanchet@50898
   380
end;