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