src/HOL/Tools/Sledgehammer/sledgehammer_mash.ML
author blanchet
Thu, 24 Jul 2014 18:53:14 +0200
changeset 59003 1586d0479f2c
parent 59002 86b853448f08
child 59004 cffd1d6ae1e5
permissions -rw-r--r--
eliminated source of 'DUP's in MaSh
     1 (*  Title:      HOL/Tools/Sledgehammer/sledgehammer_mash.ML
     2     Author:     Jasmin Blanchette, TU Muenchen
     3     Author:     Cezary Kaliszyk, University of Innsbruck
     4 
     5 Sledgehammer's machine-learning-based relevance filter (MaSh).
     6 *)
     7 
     8 signature SLEDGEHAMMER_MASH =
     9 sig
    10   type stature = ATP_Problem_Generate.stature
    11   type raw_fact = Sledgehammer_Fact.raw_fact
    12   type fact = Sledgehammer_Fact.fact
    13   type fact_override = Sledgehammer_Fact.fact_override
    14   type params = Sledgehammer_Prover.params
    15   type prover_result = Sledgehammer_Prover.prover_result
    16 
    17   val trace : bool Config.T
    18   val duplicates : bool Config.T
    19   val MePoN : string
    20   val MaShN : string
    21   val MeShN : string
    22   val mepoN : string
    23   val mashN : string
    24   val meshN : string
    25   val unlearnN : string
    26   val learn_isarN : string
    27   val learn_proverN : string
    28   val relearn_isarN : string
    29   val relearn_proverN : string
    30   val fact_filters : string list
    31   val encode_str : string -> string
    32   val encode_strs : string list -> string
    33   val decode_str : string -> string
    34   val decode_strs : string -> string list
    35 
    36   datatype mash_algorithm =
    37     MaSh_NB
    38   | MaSh_kNN
    39   | MaSh_NB_kNN
    40   | MaSh_NB_Ext
    41   | MaSh_kNN_Ext
    42 
    43   val is_mash_enabled : unit -> bool
    44   val the_mash_algorithm : unit -> mash_algorithm
    45   val str_of_mash_algorithm : mash_algorithm -> string
    46 
    47   val mesh_facts : ('a * 'a -> bool) -> int -> (real * (('a * real) list * 'a list)) list -> 'a list
    48   val nickname_of_thm : thm -> string
    49   val find_suggested_facts : Proof.context -> ('b * thm) list -> string list -> ('b * thm) list
    50   val crude_thm_ord : thm * thm -> order
    51   val thm_less : thm * thm -> bool
    52   val goal_of_thm : theory -> thm -> thm
    53   val run_prover_for_mash : Proof.context -> params -> string -> string -> fact list -> thm ->
    54     prover_result
    55   val features_of : Proof.context -> theory -> stature -> term list -> string list
    56   val trim_dependencies : string list -> string list option
    57   val isar_dependencies_of : string Symtab.table * string Symtab.table -> thm -> string list option
    58   val prover_dependencies_of : Proof.context -> params -> string -> int -> raw_fact list ->
    59     string Symtab.table * string Symtab.table -> thm -> bool * string list
    60   val attach_parents_to_facts : ('a * thm) list -> ('a * thm) list ->
    61     (string list * ('a * thm)) list
    62   val num_extra_feature_facts : int
    63   val extra_feature_factor : real
    64   val weight_facts_smoothly : 'a list -> ('a * real) list
    65   val weight_facts_steeply : 'a list -> ('a * real) list
    66   val find_mash_suggestions : Proof.context -> int -> string list -> ('a * thm) list ->
    67     ('a * thm) list -> ('a * thm) list -> ('a * thm) list * ('a * thm) list
    68   val mash_suggested_facts : Proof.context -> theory -> params -> int -> term list -> term ->
    69     raw_fact list -> fact list * fact list
    70 
    71   val mash_unlearn : unit -> unit
    72   val mash_learn_proof : Proof.context -> params -> term -> ('a * thm) list -> thm list -> unit
    73   val mash_learn_facts : Proof.context -> params -> string -> int -> bool -> Time.time ->
    74     raw_fact list -> string
    75   val mash_learn : Proof.context -> params -> fact_override -> thm list -> bool -> unit
    76   val mash_can_suggest_facts : Proof.context -> bool
    77 
    78   val generous_max_suggestions : int -> int
    79   val mepo_weight : real
    80   val mash_weight : real
    81   val relevant_facts : Proof.context -> params -> string -> int -> fact_override -> term list ->
    82     term -> raw_fact list -> (string * fact list) list
    83   val kill_learners : unit -> unit
    84   val running_learners : unit -> unit
    85 end;
    86 
    87 structure Sledgehammer_MaSh : SLEDGEHAMMER_MASH =
    88 struct
    89 
    90 open ATP_Util
    91 open ATP_Problem_Generate
    92 open Sledgehammer_Util
    93 open Sledgehammer_Fact
    94 open Sledgehammer_Prover
    95 open Sledgehammer_Prover_Minimize
    96 open Sledgehammer_MePo
    97 
    98 val trace = Attrib.setup_config_bool @{binding sledgehammer_mash_trace} (K false)
    99 val duplicates = Attrib.setup_config_bool @{binding sledgehammer_fact_duplicates} (K false)
   100 
   101 fun trace_msg ctxt msg = if Config.get ctxt trace then tracing (msg ()) else ()
   102 
   103 fun gen_eq_thm ctxt = if Config.get ctxt duplicates then Thm.eq_thm_strict else Thm.eq_thm_prop
   104 
   105 val MePoN = "MePo"
   106 val MaShN = "MaSh"
   107 val MeShN = "MeSh"
   108 
   109 val mepoN = "mepo"
   110 val mashN = "mash"
   111 val meshN = "mesh"
   112 
   113 val fact_filters = [meshN, mepoN, mashN]
   114 
   115 val unlearnN = "unlearn"
   116 val learn_isarN = "learn_isar"
   117 val learn_proverN = "learn_prover"
   118 val relearn_isarN = "relearn_isar"
   119 val relearn_proverN = "relearn_prover"
   120 
   121 fun map_array_at ary f i = Array.update (ary, i, f (Array.sub (ary, i)))
   122 
   123 type xtab = int * int Symtab.table
   124 
   125 val empty_xtab = (0, Symtab.empty)
   126 
   127 fun add_to_xtab key (next, tab) = (next + 1, Symtab.update_new (key, next) tab)
   128 fun maybe_add_to_xtab key = perhaps (try (add_to_xtab key))
   129 
   130 fun state_file () = Path.expand (Path.explode "$ISABELLE_HOME_USER/mash_state")
   131 val remove_state_file = try File.rm o state_file
   132 
   133 datatype mash_algorithm =
   134   MaSh_NB
   135 | MaSh_kNN
   136 | MaSh_NB_kNN
   137 | MaSh_NB_Ext
   138 | MaSh_kNN_Ext
   139 
   140 (* TODO: eliminate "MASH" environment variable after Isabelle2014 release *)
   141 fun mash_algorithm () =
   142   let val flag1 = Options.default_string @{system_option MaSh} in
   143     (case if flag1 <> "none" (* default *) then flag1 else getenv "MASH" of
   144       "yes" => SOME MaSh_NB_kNN
   145     | "sml" => SOME MaSh_NB_kNN
   146     | "nb" => SOME MaSh_NB
   147     | "knn" => SOME MaSh_kNN
   148     | "nb_knn" => SOME MaSh_NB_kNN
   149     | "nb_ext" => SOME MaSh_NB_Ext
   150     | "knn_ext" => SOME MaSh_kNN_Ext
   151     | "" => NONE
   152     | algorithm => (warning ("Unknown MaSh algorithm: " ^ quote algorithm ^ "."); NONE))
   153   end
   154 
   155 val is_mash_enabled = is_some o mash_algorithm
   156 val the_mash_algorithm = the_default MaSh_NB_kNN o mash_algorithm
   157 
   158 fun str_of_mash_algorithm MaSh_NB = "nb"
   159   | str_of_mash_algorithm MaSh_kNN = "knn"
   160   | str_of_mash_algorithm MaSh_NB_kNN = "nb_knn"
   161   | str_of_mash_algorithm MaSh_NB_Ext = "nb_ext"
   162   | str_of_mash_algorithm MaSh_kNN_Ext = "knn_ext"
   163 
   164 fun scaled_avg [] = 0
   165   | scaled_avg xs = Real.ceil (100000000.0 * fold (curry (op +)) xs 0.0) div length xs
   166 
   167 fun avg [] = 0.0
   168   | avg xs = fold (curry (op +)) xs 0.0 / Real.fromInt (length xs)
   169 
   170 fun normalize_scores _ [] = []
   171   | normalize_scores max_facts xs =
   172     map (apsnd (curry Real.* (1.0 / avg (map snd (take max_facts xs))))) xs
   173 
   174 fun mesh_facts fact_eq max_facts [(_, (sels, unks))] =
   175     distinct fact_eq (map fst (take max_facts sels) @ take (max_facts - length sels) unks)
   176   | mesh_facts fact_eq max_facts mess =
   177     let
   178       val mess = mess |> map (apsnd (apfst (normalize_scores max_facts)))
   179 
   180       fun score_in fact (global_weight, (sels, unks)) =
   181         let val score_at = try (nth sels) #> Option.map (fn (_, score) => global_weight * score) in
   182           (case find_index (curry fact_eq fact o fst) sels of
   183             ~1 => if member fact_eq unks fact then NONE else SOME 0.0
   184           | rank => score_at rank)
   185         end
   186 
   187       fun weight_of fact = mess |> map_filter (score_in fact) |> scaled_avg
   188     in
   189       fold (union fact_eq o map fst o take max_facts o fst o snd) mess []
   190       |> map (`weight_of) |> sort (int_ord o pairself fst o swap)
   191       |> map snd |> take max_facts
   192     end
   193 
   194 fun smooth_weight_of_fact rank = Math.pow (1.3, 15.5 - 0.2 * Real.fromInt rank) + 15.0 (* FUDGE *)
   195 fun steep_weight_of_fact rank = Math.pow (0.62, log2 (Real.fromInt (rank + 1))) (* FUDGE *)
   196 
   197 fun weight_facts_smoothly facts = facts ~~ map smooth_weight_of_fact (0 upto length facts - 1)
   198 fun weight_facts_steeply facts = facts ~~ map steep_weight_of_fact (0 upto length facts - 1)
   199 
   200 fun sort_array_suffix cmp needed a =
   201   let
   202     exception BOTTOM of int
   203 
   204     val al = Array.length a
   205 
   206     fun maxson l i =
   207       let val i31 = i + i + i + 1 in
   208         if i31 + 2 < l then
   209           let val x = Unsynchronized.ref i31 in
   210             if cmp (Array.sub (a, i31), Array.sub (a, i31 + 1)) = LESS then x := i31 + 1 else ();
   211             if cmp (Array.sub (a, !x), Array.sub (a, i31 + 2)) = LESS then x := i31 + 2 else ();
   212             !x
   213           end
   214         else
   215           if i31 + 1 < l andalso cmp (Array.sub (a, i31), Array.sub (a, i31 + 1)) = LESS
   216           then i31 + 1 else if i31 < l then i31 else raise BOTTOM i
   217       end
   218 
   219     fun trickledown l i e =
   220       let val j = maxson l i in
   221         if cmp (Array.sub (a, j), e) = GREATER then
   222           (Array.update (a, i, Array.sub (a, j)); trickledown l j e)
   223         else
   224           Array.update (a, i, e)
   225       end
   226 
   227     fun trickle l i e = trickledown l i e handle BOTTOM i => Array.update (a, i, e)
   228 
   229     fun bubbledown l i =
   230       let val j = maxson l i in
   231         Array.update (a, i, Array.sub (a, j));
   232         bubbledown l j
   233       end
   234 
   235     fun bubble l i = bubbledown l i handle BOTTOM i => i
   236 
   237     fun trickleup i e =
   238       let val father = (i - 1) div 3 in
   239         if cmp (Array.sub (a, father), e) = LESS then
   240           (Array.update (a, i, Array.sub (a, father));
   241            if father > 0 then trickleup father e else Array.update (a, 0, e))
   242         else
   243           Array.update (a, i, e)
   244       end
   245 
   246     fun for i = if i < 0 then () else (trickle al i (Array.sub (a, i)); for (i - 1))
   247 
   248     fun for2 i =
   249       if i < Integer.max 2 (al - needed) then
   250         ()
   251       else
   252         let val e = Array.sub (a, i) in
   253           Array.update (a, i, Array.sub (a, 0));
   254           trickleup (bubble i 0) e;
   255           for2 (i - 1)
   256         end
   257   in
   258     for (((al + 1) div 3) - 1);
   259     for2 (al - 1);
   260     if al > 1 then
   261       let val e = Array.sub (a, 1) in
   262         Array.update (a, 1, Array.sub (a, 0));
   263         Array.update (a, 0, e)
   264       end
   265     else
   266       ()
   267   end
   268 
   269 fun rev_sort_list_prefix cmp needed xs =
   270   let val ary = Array.fromList xs in
   271     sort_array_suffix cmp needed ary;
   272     Array.foldl (op ::) [] ary
   273   end
   274 
   275 
   276 (*** Isabelle-agnostic machine learning ***)
   277 
   278 structure MaSh =
   279 struct
   280 
   281 fun select_visible_facts (big_number : real) recommends =
   282   List.app (fn at =>
   283     let val (j, ov) = Array.sub (recommends, at) in
   284       Array.update (recommends, at, (j, big_number + ov))
   285     end)
   286 
   287 fun wider_array_of_vector init vec =
   288   let val ary = Array.array init in
   289     Array.copyVec {src = vec, dst = ary, di = 0};
   290     ary
   291   end
   292 
   293 val nb_def_prior_weight = 1000 (* FUDGE *)
   294 
   295 fun learn_facts (tfreq0, sfreq0, dffreq0) num_facts0 num_facts num_feats depss featss =
   296   let
   297     val tfreq = wider_array_of_vector (num_facts, 0) tfreq0
   298     val sfreq = wider_array_of_vector (num_facts, Inttab.empty) sfreq0
   299     val dffreq = wider_array_of_vector (num_feats, 0) dffreq0
   300 
   301     fun learn_one th feats deps =
   302       let
   303         fun add_th weight t =
   304           let
   305             val im = Array.sub (sfreq, t)
   306             fun fold_fn s = Inttab.map_default (s, 0) (Integer.add weight)
   307           in
   308             map_array_at tfreq (Integer.add weight) t;
   309             Array.update (sfreq, t, fold fold_fn feats im)
   310           end
   311 
   312         val add_sym = map_array_at dffreq (Integer.add 1)
   313       in
   314         add_th nb_def_prior_weight th;
   315         List.app (add_th 1) deps;
   316         List.app add_sym feats
   317       end
   318 
   319     fun for i =
   320       if i = num_facts then ()
   321       else (learn_one i (Vector.sub (featss, i)) (Vector.sub (depss, i)); for (i + 1))
   322   in
   323     for num_facts0;
   324     (Array.vector tfreq, Array.vector sfreq, Array.vector dffreq)
   325   end
   326 
   327 fun naive_bayes (tfreq, sfreq, dffreq) num_facts max_suggs visible_facts goal_feats =
   328   let
   329     val tau = 0.2 (* FUDGE *)
   330     val pos_weight = 5.0 (* FUDGE *)
   331     val def_val = ~18.0 (* FUDGE *)
   332     val init_val = 30.0 (* FUDGE *)
   333 
   334     val ln_afreq = Math.ln (Real.fromInt num_facts)
   335     val idf = Vector.map (fn i => ln_afreq - Math.ln (Real.fromInt i)) dffreq
   336 
   337     fun tfidf feat = Vector.sub (idf, feat)
   338 
   339     fun log_posterior i =
   340       let
   341         val tfreq = Real.fromInt (Vector.sub (tfreq, i))
   342 
   343         fun add_feat (f, fw0) (res, sfh) =
   344           (case Inttab.lookup sfh f of
   345             SOME sf =>
   346             (res + fw0 * tfidf f * Math.ln (pos_weight * Real.fromInt sf / tfreq),
   347              Inttab.delete f sfh)
   348           | NONE => (res + fw0 * tfidf f * def_val, sfh))
   349 
   350         val (res, sfh) = fold add_feat goal_feats (init_val * Math.ln tfreq, Vector.sub (sfreq, i))
   351 
   352         fun fold_sfh (f, sf) sow =
   353           sow + tfidf f * Math.ln (1.0 + (1.0 - Real.fromInt sf) / tfreq)
   354 
   355         val sum_of_weights = Inttab.fold fold_sfh sfh 0.0
   356       in
   357         res + tau * sum_of_weights
   358       end
   359 
   360     val posterior = Array.tabulate (num_facts, (fn j => (j, log_posterior j)))
   361 
   362     fun ret at acc =
   363       if at = num_facts then acc else ret (at + 1) (Array.sub (posterior, at) :: acc)
   364   in
   365     select_visible_facts 100000.0 posterior visible_facts;
   366     sort_array_suffix (Real.compare o pairself snd) max_suggs posterior;
   367     ret (Integer.max 0 (num_facts - max_suggs)) []
   368   end
   369 
   370 val initial_number_of_nearest_neighbors = 1
   371 
   372 fun k_nearest_neighbors dffreq num_facts num_feats depss featss max_suggs visible_facts goal_feats =
   373   let
   374     exception EXIT of unit
   375 
   376     val ln_afreq = Math.ln (Real.fromInt num_facts)
   377     fun tfidf feat = ln_afreq - Math.ln (Real.fromInt (Vector.sub (dffreq, feat)))
   378 
   379     val overlaps_sqr = Array.tabulate (num_facts, rpair 0.0)
   380 
   381     val feat_facts = Array.array (num_feats, [])
   382     val _ = Vector.foldl (fn (feats, fact) =>
   383       (List.app (map_array_at feat_facts (cons fact)) feats; fact + 1)) 0 featss
   384 
   385     fun do_feat (s, sw0) =
   386       let
   387         val sw = sw0 * tfidf s
   388         val w6 = Math.pow (sw, 6.0)
   389 
   390         fun inc_overlap j =
   391           let val (_, ov) = Array.sub (overlaps_sqr, j) in
   392             Array.update (overlaps_sqr, j, (j, w6 + ov))
   393           end
   394       in
   395         List.app inc_overlap (Array.sub (feat_facts, s))
   396       end
   397 
   398     val _ = List.app do_feat goal_feats
   399     val _ = sort_array_suffix (Real.compare o pairself snd) num_facts overlaps_sqr
   400     val no_recommends = Unsynchronized.ref 0
   401     val recommends = Array.tabulate (num_facts, rpair 0.0)
   402     val age = Unsynchronized.ref 500000000.0
   403 
   404     fun inc_recommend v j =
   405       let val (_, ov) = Array.sub (recommends, j) in
   406         if ov <= 0.0 then
   407           (no_recommends := !no_recommends + 1; Array.update (recommends, j, (j, !age + ov)))
   408         else Array.update (recommends, j, (j, v + ov))
   409       end
   410 
   411     val k = Unsynchronized.ref 0
   412     fun do_k k =
   413       if k >= num_facts then
   414         raise EXIT ()
   415       else
   416         let
   417           val deps_factor = 2.7 (* FUDGE *)
   418           val (j, o2) = Array.sub (overlaps_sqr, num_facts - k - 1)
   419           val _ = inc_recommend o2 j
   420           val ds = Vector.sub (depss, j)
   421           val l = Real.fromInt (length ds)
   422         in
   423           List.app (inc_recommend (deps_factor * o2 / l)) ds
   424         end
   425 
   426     fun while1 () =
   427       if !k = initial_number_of_nearest_neighbors then () else (do_k (!k); k := !k + 1; while1 ())
   428       handle EXIT () => ()
   429 
   430     fun while2 () =
   431       if !no_recommends >= max_suggs then ()
   432       else (do_k (!k); k := !k + 1; age := !age - 10000.0; while2 ())
   433       handle EXIT () => ()
   434 
   435     fun ret acc at =
   436       if at = num_facts then acc else ret (Array.sub (recommends, at) :: acc) (at + 1)
   437   in
   438     while1 ();
   439     while2 ();
   440     select_visible_facts 1000000000.0 recommends visible_facts;
   441     sort_array_suffix (Real.compare o pairself snd) max_suggs recommends;
   442     ret [] (Integer.max 0 (num_facts - max_suggs))
   443   end
   444 
   445 (* experimental *)
   446 fun external_tool tool max_suggs learns goal_feats =
   447   let
   448     val ser = string_of_int (serial ()) (* poor person's attempt at thread-safety *)
   449     val ocs = TextIO.openOut ("adv_syms" ^ ser)
   450     val ocd = TextIO.openOut ("adv_deps" ^ ser)
   451     val ocq = TextIO.openOut ("adv_seq" ^ ser)
   452     val occ = TextIO.openOut ("adv_conj" ^ ser)
   453 
   454     fun os oc s = TextIO.output (oc, s)
   455 
   456     fun ol _ _ _ [] = ()
   457       | ol _ f _ [e] = f e
   458       | ol oc f sep (h :: t) = (f h; os oc sep; ol oc f sep t)
   459 
   460     fun do_learn (name, feats, deps) =
   461       (os ocs name; os ocs ":"; ol ocs (os ocs o quote) ", " feats; os ocs "\n";
   462        os ocd name; os ocd ":"; ol ocd (os ocd) " " deps; os ocd "\n"; os ocq name; os ocq "\n")
   463 
   464     fun forkexec no =
   465       let
   466         val cmd =
   467           "~/misc/" ^ tool ^ " adv_syms" ^ ser ^ " adv_deps" ^ ser ^ " " ^ string_of_int no ^
   468           " adv_seq" ^ ser ^ " < adv_conj" ^ ser
   469       in
   470         fst (Isabelle_System.bash_output cmd)
   471         |> space_explode " "
   472         |> filter_out (curry (op =) "")
   473       end
   474   in
   475     (List.app do_learn learns; ol occ (os occ o quote) ", " (map fst goal_feats);
   476      TextIO.closeOut ocs; TextIO.closeOut ocd; TextIO.closeOut ocq; TextIO.closeOut occ;
   477      forkexec max_suggs)
   478   end
   479 
   480 fun k_nearest_neighbors_ext max_suggs =
   481   external_tool ("newknn/knn" ^ " " ^ string_of_int initial_number_of_nearest_neighbors) max_suggs
   482 fun naive_bayes_ext max_suggs = external_tool "predict/nbayes" max_suggs
   483 
   484 fun query_external ctxt algorithm max_suggs learns goal_feats =
   485   (trace_msg ctxt (fn () => "MaSh query external " ^ commas (map fst goal_feats));
   486    (case algorithm of
   487      MaSh_NB_Ext => naive_bayes_ext max_suggs learns goal_feats
   488    | MaSh_kNN_Ext => k_nearest_neighbors_ext max_suggs learns goal_feats))
   489 
   490 fun query_internal ctxt algorithm num_facts num_feats (fact_names, featss, depss)
   491     (freqs as (_, _, dffreq)) visible_facts max_suggs goal_feats int_goal_feats =
   492   let
   493     fun nb () =
   494       naive_bayes freqs num_facts max_suggs visible_facts int_goal_feats
   495       |> map fst
   496     fun knn () =
   497       k_nearest_neighbors dffreq num_facts num_feats depss featss max_suggs visible_facts
   498         int_goal_feats
   499       |> map fst
   500   in
   501     (trace_msg ctxt (fn () => "MaSh query internal " ^ commas (map fst goal_feats) ^ " from {" ^
   502        elide_string 1000 (space_implode " " (Vector.foldr (op ::) [] fact_names)) ^ "}");
   503      (case algorithm of
   504        MaSh_NB => nb ()
   505      | MaSh_kNN => knn ()
   506      | MaSh_NB_kNN =>
   507        mesh_facts (op =) max_suggs
   508          [(0.5 (* FUDGE *), (weight_facts_steeply (nb ()), [])),
   509           (0.5 (* FUDGE *), (weight_facts_steeply (knn ()), []))])
   510      |> map (curry Vector.sub fact_names))
   511    end
   512 
   513 end;
   514 
   515 
   516 (*** Persistent, stringly-typed state ***)
   517 
   518 fun meta_char c =
   519   if Char.isAlphaNum c orelse c = #"_" orelse c = #"." orelse c = #"(" orelse c = #")" orelse
   520      c = #"," then
   521     String.str c
   522   else
   523     (* fixed width, in case more digits follow *)
   524     "%" ^ stringN_of_int 3 (Char.ord c)
   525 
   526 fun unmeta_chars accum [] = String.implode (rev accum)
   527   | unmeta_chars accum (#"%" :: d1 :: d2 :: d3 :: cs) =
   528     (case Int.fromString (String.implode [d1, d2, d3]) of
   529       SOME n => unmeta_chars (Char.chr n :: accum) cs
   530     | NONE => "" (* error *))
   531   | unmeta_chars _ (#"%" :: _) = "" (* error *)
   532   | unmeta_chars accum (c :: cs) = unmeta_chars (c :: accum) cs
   533 
   534 val encode_str = String.translate meta_char
   535 val decode_str = String.explode #> unmeta_chars []
   536 
   537 val encode_strs = map encode_str #> space_implode " "
   538 val decode_strs = space_explode " " #> map decode_str
   539 
   540 datatype proof_kind = Isar_Proof | Automatic_Proof | Isar_Proof_wegen_Prover_Flop
   541 
   542 fun str_of_proof_kind Isar_Proof = "i"
   543   | str_of_proof_kind Automatic_Proof = "a"
   544   | str_of_proof_kind Isar_Proof_wegen_Prover_Flop = "x"
   545 
   546 fun proof_kind_of_str "a" = Automatic_Proof
   547   | proof_kind_of_str "x" = Isar_Proof_wegen_Prover_Flop
   548   | proof_kind_of_str _ (* "i" *) = Isar_Proof
   549 
   550 fun add_edge_to name parent =
   551   Graph.default_node (parent, (Isar_Proof, [], []))
   552   #> Graph.add_edge (parent, name)
   553 
   554 fun add_node kind name parents feats deps (accum as (access_G, (fact_xtab, feat_xtab), learns)) =
   555   let val fact_xtab' = add_to_xtab name fact_xtab in
   556     ((Graph.new_node (name, (kind, feats, deps)) access_G
   557       handle Graph.DUP _ => Graph.map_node name (K (kind, feats, deps)) access_G)
   558      |> fold (add_edge_to name) parents,
   559      (fact_xtab', fold maybe_add_to_xtab feats feat_xtab),
   560      (name, feats, deps) :: learns)
   561   end
   562   handle Symtab.DUP _ => accum (* robustness (in case the state file violates the invariant) *)
   563 
   564 fun try_graph ctxt when def f =
   565   f ()
   566   handle
   567     Graph.CYCLES (cycle :: _) =>
   568     (trace_msg ctxt (fn () => "Cycle involving " ^ commas cycle ^ " when " ^ when); def)
   569   | Graph.DUP name =>
   570     (trace_msg ctxt (fn () => "Duplicate fact " ^ quote name ^ " when " ^ when); def)
   571   | Graph.UNDEF name =>
   572     (trace_msg ctxt (fn () => "Unknown fact " ^ quote name ^ " when " ^ when); def)
   573   | exn =>
   574     if Exn.is_interrupt exn then
   575       reraise exn
   576     else
   577       (trace_msg ctxt (fn () => "Internal error when " ^ when ^ ":\n" ^ Runtime.exn_message exn);
   578        def)
   579 
   580 fun graph_info G =
   581   string_of_int (length (Graph.keys G)) ^ " node(s), " ^
   582   string_of_int (fold (Integer.add o length o snd) (Graph.dest G) 0) ^ " edge(s), " ^
   583   string_of_int (length (Graph.maximals G)) ^ " maximal"
   584 
   585 type ffds = string vector * int list vector * int list vector
   586 type freqs = int vector * int Inttab.table vector * int vector
   587 
   588 type mash_state =
   589   {access_G : (proof_kind * string list * string list) Graph.T,
   590    xtabs : xtab * xtab,
   591    ffds : ffds,
   592    freqs : freqs,
   593    dirty_facts : string list option}
   594 
   595 val empty_xtabs = (empty_xtab, empty_xtab)
   596 val empty_ffds = (Vector.fromList [], Vector.fromList [], Vector.fromList []) : ffds
   597 val empty_freqs = (Vector.fromList [], Vector.fromList [], Vector.fromList []) : freqs
   598 
   599 val empty_state =
   600   {access_G = Graph.empty,
   601    xtabs = empty_xtabs,
   602    ffds = empty_ffds,
   603    freqs = empty_freqs,
   604    dirty_facts = SOME []} : mash_state
   605 
   606 fun recompute_ffds_freqs_from_learns (learns : (string * string list * string list) list)
   607     ((num_facts, fact_tab), (num_feats, feat_tab)) num_facts0 (fact_names0, featss0, depss0) freqs0 =
   608   let
   609     val fact_names = Vector.concat [fact_names0, Vector.fromList (map #1 learns)]
   610     val featss = Vector.concat [featss0,
   611       Vector.fromList (map (map_filter (Symtab.lookup feat_tab) o #2) learns)]
   612     val depss = Vector.concat [depss0,
   613       Vector.fromList (map (map_filter (Symtab.lookup fact_tab) o #3) learns)]
   614   in
   615     ((fact_names, featss, depss),
   616      MaSh.learn_facts freqs0 num_facts0 num_facts num_feats depss featss)
   617   end
   618 
   619 fun reorder_learns (num_facts, fact_tab) learns =
   620   let val ary = Array.array (num_facts, ("", [], [])) in
   621     List.app (fn learn as (fact, _, _) =>
   622         Array.update (ary, the (Symtab.lookup fact_tab fact), learn))
   623       learns;
   624     Array.foldr (op ::) [] ary
   625   end
   626 
   627 fun recompute_ffds_freqs_from_access_G access_G (xtabs as (fact_xtab, _)) =
   628   let
   629     val learns =
   630       Graph.schedule (fn _ => fn (fact, (_, feats, deps)) => (fact, feats, deps)) access_G
   631       |> reorder_learns fact_xtab
   632   in
   633     recompute_ffds_freqs_from_learns learns xtabs 0 empty_ffds empty_freqs
   634   end
   635 
   636 local
   637 
   638 val version = "*** MaSh version 20140625 ***"
   639 
   640 exception FILE_VERSION_TOO_NEW of unit
   641 
   642 fun extract_node line =
   643   (case space_explode ":" line of
   644     [head, tail] =>
   645     (case (space_explode " " head, map (unprefix " ") (space_explode ";" tail)) of
   646       ([kind, name], [parents, feats, deps]) =>
   647       SOME (proof_kind_of_str kind, decode_str name, decode_strs parents, decode_strs feats,
   648         decode_strs deps)
   649     | _ => NONE)
   650   | _ => NONE)
   651 
   652 fun load_state ctxt (time_state as (memory_time, _)) =
   653   let val path = state_file () in
   654     (case try OS.FileSys.modTime (Path.implode path) of
   655       NONE => time_state
   656     | SOME disk_time =>
   657       if Time.>= (memory_time, disk_time) then
   658         time_state
   659       else
   660         (disk_time,
   661          (case try File.read_lines path of
   662            SOME (version' :: node_lines) =>
   663            let
   664              fun extract_line_and_add_node line =
   665                (case extract_node line of
   666                  NONE => I (* should not happen *)
   667                | SOME (kind, name, parents, feats, deps) => add_node kind name parents feats deps)
   668 
   669              val empty_G_etc = (Graph.empty, empty_xtabs, [])
   670 
   671              val (access_G, xtabs, rev_learns) =
   672                (case string_ord (version', version) of
   673                  EQUAL =>
   674                  try_graph ctxt "loading state" empty_G_etc
   675                    (fn () => fold extract_line_and_add_node node_lines empty_G_etc)
   676                | LESS => (remove_state_file (); empty_G_etc) (* cannot parse old file *)
   677                | GREATER => raise FILE_VERSION_TOO_NEW ())
   678 
   679              val (ffds, freqs) =
   680                recompute_ffds_freqs_from_learns (rev rev_learns) xtabs 0 empty_ffds empty_freqs
   681            in
   682              trace_msg ctxt (fn () => "Loaded fact graph (" ^ graph_info access_G ^ ")");
   683              {access_G = access_G, xtabs = xtabs, ffds = ffds, freqs = freqs, dirty_facts = SOME []}
   684            end
   685          | _ => empty_state)))
   686   end
   687 
   688 fun str_of_entry (kind, name, parents, feats, deps) =
   689   str_of_proof_kind kind ^ " " ^ encode_str name ^ ": " ^ encode_strs parents ^ "; " ^
   690   encode_strs feats ^ "; " ^ encode_strs deps ^ "\n"
   691 
   692 fun save_state _ (time_state as (_, {dirty_facts = SOME [], ...})) = time_state
   693   | save_state ctxt (memory_time, {access_G, xtabs, ffds, freqs, dirty_facts}) =
   694     let
   695       fun append_entry (name, ((kind, feats, deps), (parents, _))) =
   696         cons (kind, name, Graph.Keys.dest parents, feats, deps)
   697 
   698       val path = state_file ()
   699       val dirty_facts' =
   700         (case try OS.FileSys.modTime (Path.implode path) of
   701           NONE => NONE
   702         | SOME disk_time => if Time.< (disk_time, memory_time) then dirty_facts else NONE)
   703       val (banner, entries) =
   704         (case dirty_facts' of
   705           SOME names => (NONE, fold (append_entry o Graph.get_entry access_G) names [])
   706         | NONE => (SOME (version ^ "\n"), Graph.fold append_entry access_G []))
   707     in
   708       (case banner of SOME s => File.write path s | NONE => ();
   709        entries |> chunk_list 500 |> List.app (File.append path o implode o map str_of_entry))
   710       handle IO.Io _ => ();
   711       trace_msg ctxt (fn () =>
   712         "Saved fact graph (" ^ graph_info access_G ^
   713         (case dirty_facts of
   714           SOME dirty_facts => "; " ^ string_of_int (length dirty_facts) ^ " dirty fact(s)"
   715         | _ => "") ^  ")");
   716       (Time.now (),
   717        {access_G = access_G, xtabs = xtabs, ffds = ffds, freqs = freqs, dirty_facts = SOME []})
   718     end
   719 
   720 val global_state = Synchronized.var "Sledgehammer_MaSh.global_state" (Time.zeroTime, empty_state)
   721 
   722 in
   723 
   724 fun map_state ctxt f =
   725   Synchronized.change global_state (load_state ctxt ##> f #> save_state ctxt)
   726   handle FILE_VERSION_TOO_NEW () => ()
   727 
   728 fun peek_state ctxt =
   729   Synchronized.change_result global_state (perhaps (try (load_state ctxt)) #> `snd)
   730 
   731 fun clear_state () =
   732   Synchronized.change global_state (fn _ => (remove_state_file (); (Time.zeroTime, empty_state)))
   733 
   734 end
   735 
   736 
   737 (*** Isabelle helpers ***)
   738 
   739 val local_prefix = "local" ^ Long_Name.separator
   740 
   741 fun elided_backquote_thm threshold th =
   742   elide_string threshold (backquote_thm (Proof_Context.init_global (Thm.theory_of_thm th)) th)
   743 
   744 val thy_name_of_thm = Context.theory_name o Thm.theory_of_thm
   745 
   746 fun nickname_of_thm th =
   747   if Thm.has_name_hint th then
   748     let val hint = Thm.get_name_hint th in
   749       (* There must be a better way to detect local facts. *)
   750       (case try (unprefix local_prefix) hint of
   751         SOME suf =>
   752         thy_name_of_thm th ^ Long_Name.separator ^ suf ^ Long_Name.separator ^
   753         elided_backquote_thm 50 th
   754       | NONE => hint)
   755     end
   756   else
   757     elided_backquote_thm 200 th
   758 
   759 fun find_suggested_facts ctxt facts =
   760   let
   761     fun add (fact as (_, th)) = Symtab.default (nickname_of_thm th, fact)
   762     val tab = fold add facts Symtab.empty
   763     fun lookup nick =
   764       Symtab.lookup tab nick
   765       |> tap (fn NONE => trace_msg ctxt (fn () => "Cannot find " ^ quote nick) | _ => ())
   766   in map_filter lookup end
   767 
   768 fun free_feature_of s = "f" ^ s
   769 fun thy_feature_of s = "y" ^ s
   770 fun type_feature_of s = "t" ^ s
   771 fun class_feature_of s = "s" ^ s
   772 val local_feature = "local"
   773 
   774 fun crude_theory_ord p =
   775   if Theory.subthy p then
   776     if Theory.eq_thy p then EQUAL else LESS
   777   else if Theory.subthy (swap p) then
   778     GREATER
   779   else
   780     (case int_ord (pairself (length o Theory.ancestors_of) p) of
   781       EQUAL => string_ord (pairself Context.theory_name p)
   782     | order => order)
   783 
   784 fun crude_thm_ord p =
   785   (case crude_theory_ord (pairself theory_of_thm p) of
   786     EQUAL =>
   787     (* The hack below is necessary because of odd dependencies that are not reflected in the theory
   788        comparison. *)
   789     let val q = pairself nickname_of_thm p in
   790       (* Hack to put "xxx_def" before "xxxI" and "xxxE" *)
   791       (case bool_ord (pairself (String.isSuffix "_def") (swap q)) of
   792         EQUAL => string_ord q
   793       | ord => ord)
   794     end
   795   | ord => ord)
   796 
   797 val thm_less_eq = Theory.subthy o pairself theory_of_thm
   798 fun thm_less p = thm_less_eq p andalso not (thm_less_eq (swap p))
   799 
   800 val freezeT = Type.legacy_freeze_type
   801 
   802 fun freeze (t $ u) = freeze t $ freeze u
   803   | freeze (Abs (s, T, t)) = Abs (s, freezeT T, freeze t)
   804   | freeze (Var ((s, _), T)) = Free (s, freezeT T)
   805   | freeze (Const (s, T)) = Const (s, freezeT T)
   806   | freeze (Free (s, T)) = Free (s, freezeT T)
   807   | freeze t = t
   808 
   809 fun goal_of_thm thy = prop_of #> freeze #> cterm_of thy #> Goal.init
   810 
   811 fun run_prover_for_mash ctxt params prover goal_name facts goal =
   812   let
   813     val problem =
   814       {comment = "Goal: " ^ goal_name, state = Proof.init ctxt, goal = goal, subgoal = 1,
   815        subgoal_count = 1, factss = [("", facts)]}
   816   in
   817     get_minimizing_prover ctxt MaSh (K ()) prover params (K (K (K ""))) problem
   818   end
   819 
   820 val bad_types = [@{type_name prop}, @{type_name bool}, @{type_name fun}]
   821 
   822 val pat_tvar_prefix = "_"
   823 val pat_var_prefix = "_"
   824 
   825 (* try "Long_Name.base_name" for shorter names *)
   826 fun massage_long_name s = s
   827 
   828 val crude_str_of_sort = space_implode ":" o map massage_long_name o subtract (op =) @{sort type}
   829 
   830 fun crude_str_of_typ (Type (s, [])) = massage_long_name s
   831   | crude_str_of_typ (Type (s, Ts)) = massage_long_name s ^ implode (map crude_str_of_typ Ts)
   832   | crude_str_of_typ (TFree (_, S)) = crude_str_of_sort S
   833   | crude_str_of_typ (TVar (_, S)) = crude_str_of_sort S
   834 
   835 fun maybe_singleton_str _ "" = []
   836   | maybe_singleton_str pref s = [pref ^ s]
   837 
   838 val max_pat_breadth = 10 (* FUDGE *)
   839 
   840 fun term_features_of ctxt thy_name term_max_depth type_max_depth ts =
   841   let
   842     val thy = Proof_Context.theory_of ctxt
   843 
   844     val fixes = map snd (Variable.dest_fixes ctxt)
   845     val classes = Sign.classes_of thy
   846 
   847     fun add_classes @{sort type} = I
   848       | add_classes S =
   849         fold (`(Sorts.super_classes classes)
   850           #> swap #> op ::
   851           #> subtract (op =) @{sort type} #> map massage_long_name
   852           #> map class_feature_of
   853           #> union (op =)) S
   854 
   855     fun pattify_type 0 _ = []
   856       | pattify_type _ (Type (s, [])) =
   857         if member (op =) bad_types s then [] else [massage_long_name s]
   858       | pattify_type depth (Type (s, U :: Ts)) =
   859         let
   860           val T = Type (s, Ts)
   861           val ps = take max_pat_breadth (pattify_type depth T)
   862           val qs = take max_pat_breadth ("" :: pattify_type (depth - 1) U)
   863         in
   864           map_product (fn p => fn "" => p | q => p ^ "(" ^ q ^ ")") ps qs
   865         end
   866       | pattify_type _ (TFree (_, S)) = maybe_singleton_str pat_tvar_prefix (crude_str_of_sort S)
   867       | pattify_type _ (TVar (_, S)) = maybe_singleton_str pat_tvar_prefix (crude_str_of_sort S)
   868 
   869     fun add_type_pat depth T =
   870       union (op =) (map type_feature_of (pattify_type depth T))
   871 
   872     fun add_type_pats 0 _ = I
   873       | add_type_pats depth t = add_type_pat depth t #> add_type_pats (depth - 1) t
   874 
   875     fun add_type T =
   876       add_type_pats type_max_depth T
   877       #> fold_atyps_sorts (add_classes o snd) T
   878 
   879     fun add_subtypes (T as Type (_, Ts)) = add_type T #> fold add_subtypes Ts
   880       | add_subtypes T = add_type T
   881 
   882     fun pattify_term _ 0 _ = []
   883       | pattify_term _ _ (Const (s, _)) =
   884         if is_widely_irrelevant_const s then [] else [massage_long_name s]
   885       | pattify_term _ _ (Free (s, T)) =
   886         maybe_singleton_str pat_var_prefix (crude_str_of_typ T)
   887         |> (if member (op =) fixes s then
   888               cons (free_feature_of (massage_long_name (thy_name ^ Long_Name.separator ^ s)))
   889             else
   890               I)
   891       | pattify_term _ _ (Var (_, T)) = maybe_singleton_str pat_var_prefix (crude_str_of_typ T)
   892       | pattify_term Ts _ (Bound j) =
   893         maybe_singleton_str pat_var_prefix (crude_str_of_typ (nth Ts j))
   894       | pattify_term Ts depth (t $ u) =
   895         let
   896           val ps = take max_pat_breadth (pattify_term Ts depth t)
   897           val qs = take max_pat_breadth ("" :: pattify_term Ts (depth - 1) u)
   898         in
   899           map_product (fn p => fn "" => p | q => p ^ "(" ^ q ^ ")") ps qs
   900         end
   901       | pattify_term _ _ _ = []
   902 
   903     fun add_term_pat Ts = union (op =) oo pattify_term Ts
   904 
   905     fun add_term_pats _ 0 _ = I
   906       | add_term_pats Ts depth t = add_term_pat Ts depth t #> add_term_pats Ts (depth - 1) t
   907 
   908     fun add_term Ts = add_term_pats Ts term_max_depth
   909 
   910     fun add_subterms Ts t =
   911       (case strip_comb t of
   912         (Const (s, T), args) =>
   913         (not (is_widely_irrelevant_const s) ? add_term Ts t)
   914         #> add_subtypes T #> fold (add_subterms Ts) args
   915       | (head, args) =>
   916         (case head of
   917            Free (_, T) => add_term Ts t #> add_subtypes T
   918          | Var (_, T) => add_subtypes T
   919          | Abs (_, T, body) => add_subtypes T #> add_subterms (T :: Ts) body
   920          | _ => I)
   921         #> fold (add_subterms Ts) args)
   922   in
   923     fold (add_subterms []) ts []
   924   end
   925 
   926 val term_max_depth = 2
   927 val type_max_depth = 1
   928 
   929 (* TODO: Generate type classes for types? *)
   930 fun features_of ctxt thy (scope, _) ts =
   931   let val thy_name = Context.theory_name thy in
   932     thy_feature_of thy_name ::
   933     term_features_of ctxt thy_name term_max_depth type_max_depth ts
   934     |> scope <> Global ? cons local_feature
   935   end
   936 
   937 (* Too many dependencies is a sign that a decision procedure is at work. There is not much to learn
   938    from such proofs. *)
   939 val max_dependencies = 20
   940 
   941 val prover_default_max_facts = 25
   942 
   943 (* "type_definition_xxx" facts are characterized by their use of "CollectI". *)
   944 val typedef_dep = nickname_of_thm @{thm CollectI}
   945 (* Mysterious parts of the class machinery create lots of proofs that refer exclusively to
   946    "someI_ex" (and to some internal constructions). *)
   947 val class_some_dep = nickname_of_thm @{thm someI_ex}
   948 
   949 val fundef_ths =
   950   @{thms fundef_ex1_existence fundef_ex1_uniqueness fundef_ex1_iff fundef_default_value}
   951   |> map nickname_of_thm
   952 
   953 (* "Rep_xxx_inject", "Abs_xxx_inverse", etc., are derived using these facts. *)
   954 val typedef_ths =
   955   @{thms type_definition.Abs_inverse type_definition.Rep_inverse type_definition.Rep
   956       type_definition.Rep_inject type_definition.Abs_inject type_definition.Rep_cases
   957       type_definition.Abs_cases type_definition.Rep_induct type_definition.Abs_induct
   958       type_definition.Rep_range type_definition.Abs_image}
   959   |> map nickname_of_thm
   960 
   961 fun is_size_def [dep] th =
   962     (case first_field ".rec" dep of
   963       SOME (pref, _) =>
   964       (case first_field ".size" (nickname_of_thm th) of
   965         SOME (pref', _) => pref = pref'
   966       | NONE => false)
   967     | NONE => false)
   968   | is_size_def _ _ = false
   969 
   970 fun trim_dependencies deps =
   971   if length deps > max_dependencies then NONE else SOME deps
   972 
   973 fun isar_dependencies_of name_tabs th =
   974   thms_in_proof max_dependencies (SOME name_tabs) th
   975   |> Option.map (fn deps =>
   976     if deps = [typedef_dep] orelse deps = [class_some_dep] orelse
   977        exists (member (op =) fundef_ths) deps orelse exists (member (op =) typedef_ths) deps orelse
   978        is_size_def deps th then
   979       []
   980     else
   981       deps)
   982 
   983 fun prover_dependencies_of ctxt (params as {verbose, max_facts, ...}) prover auto_level facts
   984     name_tabs th =
   985   (case isar_dependencies_of name_tabs th of
   986     SOME [] => (false, [])
   987   | isar_deps0 =>
   988     let
   989       val isar_deps = these isar_deps0
   990       val thy = Proof_Context.theory_of ctxt
   991       val goal = goal_of_thm thy th
   992       val name = nickname_of_thm th
   993       val (_, hyp_ts, concl_t) = ATP_Util.strip_subgoal goal 1 ctxt
   994       val facts = facts |> filter (fn (_, th') => thm_less (th', th))
   995 
   996       fun nickify ((_, stature), th) = ((nickname_of_thm th, stature), th)
   997 
   998       fun is_dep dep (_, th) = nickname_of_thm th = dep
   999 
  1000       fun add_isar_dep facts dep accum =
  1001         if exists (is_dep dep) accum then
  1002           accum
  1003         else
  1004           (case find_first (is_dep dep) facts of
  1005             SOME ((_, status), th) => accum @ [(("", status), th)]
  1006           | NONE => accum (* should not happen *))
  1007 
  1008       val mepo_facts =
  1009         facts
  1010         |> mepo_suggested_facts ctxt params (max_facts |> the_default prover_default_max_facts) NONE
  1011              hyp_ts concl_t
  1012       val facts =
  1013         mepo_facts
  1014         |> fold (add_isar_dep facts) isar_deps
  1015         |> map nickify
  1016       val num_isar_deps = length isar_deps
  1017     in
  1018       if verbose andalso auto_level = 0 then
  1019         Output.urgent_message ("MaSh: " ^ quote prover ^ " on " ^ quote name ^ " with " ^
  1020           string_of_int num_isar_deps ^ " + " ^ string_of_int (length facts - num_isar_deps) ^
  1021           " facts.")
  1022       else
  1023         ();
  1024       (case run_prover_for_mash ctxt params prover name facts goal of
  1025         {outcome = NONE, used_facts, ...} =>
  1026         (if verbose andalso auto_level = 0 then
  1027            let val num_facts = length used_facts in
  1028              Output.urgent_message ("Found proof with " ^ string_of_int num_facts ^ " fact" ^
  1029                plural_s num_facts ^ ".")
  1030            end
  1031          else
  1032            ();
  1033          (true, map fst used_facts))
  1034       | _ => (false, isar_deps))
  1035     end)
  1036 
  1037 
  1038 (*** High-level communication with MaSh ***)
  1039 
  1040 (* In the following functions, chunks are risers w.r.t. "thm_less_eq". *)
  1041 
  1042 fun chunks_and_parents_for chunks th =
  1043   let
  1044     fun insert_parent new parents =
  1045       let val parents = parents |> filter_out (fn p => thm_less_eq (p, new)) in
  1046         parents |> forall (fn p => not (thm_less_eq (new, p))) parents ? cons new
  1047       end
  1048 
  1049     fun rechunk seen (rest as th' :: ths) =
  1050       if thm_less_eq (th', th) then (rev seen, rest)
  1051       else rechunk (th' :: seen) ths
  1052 
  1053     fun do_chunk [] accum = accum
  1054       | do_chunk (chunk as hd_chunk :: _) (chunks, parents) =
  1055         if thm_less_eq (hd_chunk, th) then
  1056           (chunk :: chunks, insert_parent hd_chunk parents)
  1057         else if thm_less_eq (List.last chunk, th) then
  1058           let val (front, back as hd_back :: _) = rechunk [] chunk in
  1059             (front :: back :: chunks, insert_parent hd_back parents)
  1060           end
  1061         else
  1062           (chunk :: chunks, parents)
  1063   in
  1064     fold_rev do_chunk chunks ([], [])
  1065     |>> cons []
  1066     ||> map nickname_of_thm
  1067   end
  1068 
  1069 fun attach_parents_to_facts _ [] = []
  1070   | attach_parents_to_facts old_facts (facts as (_, th) :: _) =
  1071     let
  1072       fun do_facts _ [] = []
  1073         | do_facts (_, parents) [fact] = [(parents, fact)]
  1074         | do_facts (chunks, parents)
  1075                    ((fact as (_, th)) :: (facts as (_, th') :: _)) =
  1076           let
  1077             val chunks = app_hd (cons th) chunks
  1078             val chunks_and_parents' =
  1079               if thm_less_eq (th, th') andalso thy_name_of_thm th = thy_name_of_thm th' then
  1080                 (chunks, [nickname_of_thm th])
  1081               else
  1082                 chunks_and_parents_for chunks th'
  1083           in
  1084             (parents, fact) :: do_facts chunks_and_parents' facts
  1085           end
  1086     in
  1087       old_facts @ facts
  1088       |> do_facts (chunks_and_parents_for [[]] th)
  1089       |> drop (length old_facts)
  1090     end
  1091 
  1092 fun maximal_wrt_graph G keys =
  1093   let
  1094     val tab = Symtab.empty |> fold (fn name => Symtab.default (name, ())) keys
  1095 
  1096     fun insert_new seen name = not (Symtab.defined seen name) ? insert (op =) name
  1097 
  1098     fun num_keys keys = Graph.Keys.fold (K (Integer.add 1)) keys 0
  1099 
  1100     fun find_maxes _ (maxs, []) = map snd maxs
  1101       | find_maxes seen (maxs, new :: news) =
  1102         find_maxes (seen |> num_keys (Graph.imm_succs G new) > 1 ? Symtab.default (new, ()))
  1103           (if Symtab.defined tab new then
  1104              let
  1105                val newp = Graph.all_preds G [new]
  1106                fun is_ancestor x yp = member (op =) yp x
  1107                val maxs = maxs |> filter (fn (_, max) => not (is_ancestor max newp))
  1108              in
  1109                if exists (is_ancestor new o fst) maxs then (maxs, news)
  1110                else ((newp, new) :: filter_out (fn (_, max) => is_ancestor max newp) maxs, news)
  1111              end
  1112            else
  1113              (maxs, Graph.Keys.fold (insert_new seen) (Graph.imm_preds G new) news))
  1114   in
  1115     find_maxes Symtab.empty ([], Graph.maximals G)
  1116   end
  1117 
  1118 fun maximal_wrt_access_graph _ [] = []
  1119   | maximal_wrt_access_graph access_G ((fact as (_, th)) :: facts) =
  1120     let val thy = theory_of_thm th in
  1121       fact :: filter_out (fn (_, th') => Theory.subthy (theory_of_thm th', thy)) facts
  1122       |> map (nickname_of_thm o snd)
  1123       |> maximal_wrt_graph access_G
  1124     end
  1125 
  1126 fun is_fact_in_graph access_G = can (Graph.get_node access_G) o nickname_of_thm
  1127 
  1128 val chained_feature_factor = 0.5 (* FUDGE *)
  1129 val extra_feature_factor = 0.1 (* FUDGE *)
  1130 val num_extra_feature_facts = 10 (* FUDGE *)
  1131 
  1132 val max_proximity_facts = 100 (* FUDGE *)
  1133 
  1134 fun find_mash_suggestions ctxt max_facts suggs facts chained raw_unknown =
  1135   let
  1136     val inter_fact = inter (eq_snd Thm.eq_thm_prop)
  1137     val raw_mash = find_suggested_facts ctxt facts suggs
  1138     val proximate = take max_proximity_facts facts
  1139     val unknown_chained = inter_fact raw_unknown chained
  1140     val unknown_proximate = inter_fact raw_unknown proximate
  1141     val mess =
  1142       [(0.9 (* FUDGE *), (map (rpair 1.0) unknown_chained, [])),
  1143        (0.4 (* FUDGE *), (weight_facts_smoothly unknown_proximate, [])),
  1144        (0.1 (* FUDGE *), (weight_facts_steeply raw_mash, raw_unknown))]
  1145     val unknown = raw_unknown
  1146       |> fold (subtract (eq_snd Thm.eq_thm_prop)) [unknown_chained, unknown_proximate]
  1147   in
  1148     (mesh_facts (eq_snd (gen_eq_thm ctxt)) max_facts mess, unknown)
  1149   end
  1150 
  1151 fun mash_suggested_facts ctxt thy ({debug, ...} : params) max_suggs hyp_ts concl_t facts =
  1152   let
  1153     val thy_name = Context.theory_name thy
  1154     val algorithm = the_mash_algorithm ()
  1155 
  1156     val facts = facts
  1157       |> rev_sort_list_prefix (crude_thm_ord o pairself snd)
  1158         (Int.max (num_extra_feature_facts, max_proximity_facts))
  1159 
  1160     val chained = filter (fn ((_, (scope, _)), _) => scope = Chained) facts
  1161 
  1162     fun fact_has_right_theory (_, th) =
  1163       thy_name = Context.theory_name (theory_of_thm th)
  1164 
  1165     fun chained_or_extra_features_of factor (((_, stature), th), weight) =
  1166       [prop_of th]
  1167       |> features_of ctxt (theory_of_thm th) stature
  1168       |> map (rpair (weight * factor))
  1169 
  1170     val {access_G, xtabs = ((num_facts, fact_tab), (num_feats, feat_tab)), ffds, freqs, ...} =
  1171       peek_state ctxt
  1172 
  1173     val goal_feats0 = features_of ctxt thy (Local, General) (concl_t :: hyp_ts)
  1174     val chained_feats = chained
  1175       |> map (rpair 1.0)
  1176       |> map (chained_or_extra_features_of chained_feature_factor)
  1177       |> rpair [] |-> fold (union (eq_fst (op =)))
  1178     val extra_feats = facts
  1179       |> take (Int.max (0, num_extra_feature_facts - length chained))
  1180       |> filter fact_has_right_theory
  1181       |> weight_facts_steeply
  1182       |> map (chained_or_extra_features_of extra_feature_factor)
  1183       |> rpair [] |-> fold (union (eq_fst (op =)))
  1184 
  1185     val goal_feats =
  1186       fold (union (eq_fst (op =))) [chained_feats, extra_feats] (map (rpair 1.0) goal_feats0)
  1187       |> debug ? sort (Real.compare o swap o pairself snd)
  1188 
  1189     val parents = maximal_wrt_access_graph access_G facts
  1190     val visible_facts = map_filter (Symtab.lookup fact_tab) (Graph.all_preds access_G parents)
  1191 
  1192     val suggs =
  1193       if algorithm = MaSh_NB_Ext orelse algorithm = MaSh_kNN_Ext then
  1194         let
  1195           val learns =
  1196             Graph.schedule (fn _ => fn (fact, (_, feats, deps)) => (fact, feats, deps)) access_G
  1197         in
  1198           MaSh.query_external ctxt algorithm max_suggs learns goal_feats
  1199         end
  1200       else
  1201         let
  1202           val int_goal_feats =
  1203             map_filter (fn (s, w) => Option.map (rpair w) (Symtab.lookup feat_tab s)) goal_feats
  1204         in
  1205           MaSh.query_internal ctxt algorithm num_facts num_feats ffds freqs visible_facts max_suggs
  1206             goal_feats int_goal_feats
  1207         end
  1208 
  1209     val unknown = filter_out (is_fact_in_graph access_G o snd) facts
  1210   in
  1211     find_mash_suggestions ctxt max_suggs suggs facts chained unknown
  1212     |> pairself (map fact_of_raw_fact)
  1213   end
  1214 
  1215 fun mash_unlearn () = (clear_state (); Output.urgent_message "Reset MaSh.")
  1216 
  1217 fun learn_wrt_access_graph ctxt (name, parents, feats, deps)
  1218     (accum as (access_G, (fact_xtab, feat_xtab))) =
  1219   let
  1220     fun maybe_learn_from from (accum as (parents, access_G)) =
  1221       try_graph ctxt "updating graph" accum (fn () =>
  1222         (from :: parents, Graph.add_edge_acyclic (from, name) access_G))
  1223 
  1224     val access_G = access_G |> Graph.default_node (name, (Isar_Proof, feats, deps))
  1225     val (parents, access_G) = ([], access_G) |> fold maybe_learn_from parents
  1226     val (deps, _) = ([], access_G) |> fold maybe_learn_from deps
  1227 
  1228     val fact_xtab = add_to_xtab name fact_xtab
  1229     val feat_xtab = fold maybe_add_to_xtab feats feat_xtab
  1230   in
  1231     (SOME (name, parents, feats, deps), (access_G, (fact_xtab, feat_xtab)))
  1232   end
  1233   handle Symtab.DUP _ => (NONE, accum) (* facts sometimes have the same name, confusingly *)
  1234 
  1235 fun relearn_wrt_access_graph ctxt (name, deps) access_G =
  1236   let
  1237     fun maybe_relearn_from from (accum as (parents, access_G)) =
  1238       try_graph ctxt "updating graph" accum (fn () =>
  1239         (from :: parents, Graph.add_edge_acyclic (from, name) access_G))
  1240     val access_G =
  1241       access_G |> Graph.map_node name (fn (_, feats, _) => (Automatic_Proof, feats, deps))
  1242     val (deps, _) = ([], access_G) |> fold maybe_relearn_from deps
  1243   in
  1244     ((name, deps), access_G)
  1245   end
  1246 
  1247 fun flop_wrt_access_graph name =
  1248   Graph.map_node name (fn (_, feats, deps) => (Isar_Proof_wegen_Prover_Flop, feats, deps))
  1249 
  1250 val learn_timeout_slack = 20.0
  1251 
  1252 fun launch_thread timeout task =
  1253   let
  1254     val hard_timeout = time_mult learn_timeout_slack timeout
  1255     val birth_time = Time.now ()
  1256     val death_time = Time.+ (birth_time, hard_timeout)
  1257     val desc = ("Machine learner for Sledgehammer", "")
  1258   in
  1259     Async_Manager.thread MaShN birth_time death_time desc task
  1260   end
  1261 
  1262 fun learned_proof_name () =
  1263   Date.fmt ".%Y%m%d.%H%M%S." (Date.fromTimeLocal (Time.now ())) ^ serial_string ()
  1264 
  1265 fun mash_learn_proof ctxt ({timeout, ...} : params) t facts used_ths =
  1266   if not (null used_ths) andalso is_mash_enabled () then
  1267     launch_thread timeout (fn () =>
  1268       let
  1269         val thy = Proof_Context.theory_of ctxt
  1270         val feats = features_of ctxt thy (Local, General) [t]
  1271         val facts = rev_sort_list_prefix (crude_thm_ord o pairself snd) 1 facts
  1272       in
  1273         map_state ctxt
  1274           (fn {access_G, xtabs as ((num_facts0, _), _), ffds, freqs, dirty_facts} =>
  1275              let
  1276                val parents = maximal_wrt_access_graph access_G facts
  1277                val deps = used_ths
  1278                  |> filter (is_fact_in_graph access_G)
  1279                  |> map nickname_of_thm
  1280 
  1281                val name = learned_proof_name ()
  1282                val (access_G', xtabs', rev_learns) =
  1283                  add_node Automatic_Proof name parents feats deps (access_G, xtabs, [])
  1284 
  1285                val (ffds', freqs') =
  1286                  recompute_ffds_freqs_from_learns (rev rev_learns) xtabs' num_facts0 ffds freqs
  1287              in
  1288                {access_G = access_G', xtabs = xtabs', ffds = ffds', freqs = freqs',
  1289                 dirty_facts = Option.map (cons name) dirty_facts}
  1290              end);
  1291         (true, "")
  1292       end)
  1293   else
  1294     ()
  1295 
  1296 fun sendback sub = Active.sendback_markup [Markup.padding_command] (sledgehammerN ^ " " ^ sub)
  1297 
  1298 val commit_timeout = seconds 30.0
  1299 
  1300 (* The timeout is understood in a very relaxed fashion. *)
  1301 fun mash_learn_facts ctxt (params as {debug, verbose, ...}) prover auto_level run_prover
  1302     learn_timeout facts =
  1303   let
  1304     val timer = Timer.startRealTimer ()
  1305     fun next_commit_time () = Time.+ (Timer.checkRealTimer timer, commit_timeout)
  1306 
  1307     val {access_G, ...} = peek_state ctxt
  1308     val is_in_access_G = is_fact_in_graph access_G o snd
  1309     val no_new_facts = forall is_in_access_G facts
  1310   in
  1311     if no_new_facts andalso not run_prover then
  1312       if auto_level < 2 then
  1313         "No new " ^ (if run_prover then "automatic" else "Isar") ^ " proofs to learn." ^
  1314         (if auto_level = 0 andalso not run_prover then
  1315            "\n\nHint: Try " ^ sendback learn_proverN ^ " to learn from an automatic prover."
  1316          else
  1317            "")
  1318       else
  1319         ""
  1320     else
  1321       let
  1322         val name_tabs = build_name_tables nickname_of_thm facts
  1323 
  1324         fun deps_of status th =
  1325           if status = Non_Rec_Def orelse status = Rec_Def then
  1326             SOME []
  1327           else if run_prover then
  1328             prover_dependencies_of ctxt params prover auto_level facts name_tabs th
  1329             |> (fn (false, _) => NONE | (true, deps) => trim_dependencies deps)
  1330           else
  1331             isar_dependencies_of name_tabs th
  1332 
  1333         fun do_commit [] [] [] state = state
  1334           | do_commit learns relearns flops
  1335               {access_G, xtabs as ((num_facts0, _), _), ffds, freqs, dirty_facts} =
  1336             let
  1337               val was_empty = Graph.is_empty access_G
  1338 
  1339               val (learns, (access_G', xtabs')) =
  1340                 fold_map (learn_wrt_access_graph ctxt) learns (access_G, xtabs)
  1341                 |>> map_filter I
  1342               val (relearns, access_G'') =
  1343                 fold_map (relearn_wrt_access_graph ctxt) relearns access_G'
  1344 
  1345               val access_G''' = access_G'' |> fold flop_wrt_access_graph flops
  1346               val dirty_facts' =
  1347                 (case (was_empty, dirty_facts) of
  1348                   (false, SOME names) => SOME (map #1 learns @ map #1 relearns @ names)
  1349                 | _ => NONE)
  1350 
  1351               val (ffds', freqs') =
  1352                 if null relearns then
  1353                   recompute_ffds_freqs_from_learns
  1354                     (map (fn (name, _, feats, deps) => (name, feats, deps)) learns) xtabs' num_facts0
  1355                     ffds freqs
  1356                 else
  1357                   recompute_ffds_freqs_from_access_G access_G''' xtabs'
  1358             in
  1359               {access_G = access_G''', xtabs = xtabs', ffds = ffds', freqs = freqs',
  1360                dirty_facts = dirty_facts'}
  1361             end
  1362 
  1363         fun commit last learns relearns flops =
  1364           (if debug andalso auto_level = 0 then Output.urgent_message "Committing..." else ();
  1365            map_state ctxt (do_commit (rev learns) relearns flops);
  1366            if not last andalso auto_level = 0 then
  1367              let val num_proofs = length learns + length relearns in
  1368                Output.urgent_message ("Learned " ^ string_of_int num_proofs ^ " " ^
  1369                  (if run_prover then "automatic" else "Isar") ^ " proof" ^
  1370                  plural_s num_proofs ^ " in the last " ^ string_of_time commit_timeout ^ ".")
  1371              end
  1372            else
  1373              ())
  1374 
  1375         fun learn_new_fact _ (accum as (_, (_, _, true))) = accum
  1376           | learn_new_fact (parents, ((_, stature as (_, status)), th))
  1377               (learns, (num_nontrivial, next_commit, _)) =
  1378             let
  1379               val name = nickname_of_thm th
  1380               val feats = features_of ctxt (theory_of_thm th) stature [prop_of th]
  1381               val deps = deps_of status th |> these
  1382               val num_nontrivial = num_nontrivial |> not (null deps) ? Integer.add 1
  1383               val learns = (name, parents, feats, deps) :: learns
  1384               val (learns, next_commit) =
  1385                 if Time.> (Timer.checkRealTimer timer, next_commit) then
  1386                   (commit false learns [] []; ([], next_commit_time ()))
  1387                 else
  1388                   (learns, next_commit)
  1389               val timed_out = Time.> (Timer.checkRealTimer timer, learn_timeout)
  1390             in
  1391               (learns, (num_nontrivial, next_commit, timed_out))
  1392             end
  1393 
  1394         val (num_new_facts, num_nontrivial) =
  1395           if no_new_facts then
  1396             (0, 0)
  1397           else
  1398             let
  1399               val new_facts = facts
  1400                 |> sort (crude_thm_ord o pairself snd)
  1401                 |> attach_parents_to_facts []
  1402                 |> filter_out (is_in_access_G o snd)
  1403               val (learns, (num_nontrivial, _, _)) =
  1404                 ([], (0, next_commit_time (), false))
  1405                 |> fold learn_new_fact new_facts
  1406             in
  1407               commit true learns [] []; (length new_facts, num_nontrivial)
  1408             end
  1409 
  1410         fun relearn_old_fact _ (accum as (_, (_, _, true))) = accum
  1411           | relearn_old_fact ((_, (_, status)), th)
  1412               ((relearns, flops), (num_nontrivial, next_commit, _)) =
  1413             let
  1414               val name = nickname_of_thm th
  1415               val (num_nontrivial, relearns, flops) =
  1416                 (case deps_of status th of
  1417                   SOME deps => (num_nontrivial + 1, (name, deps) :: relearns, flops)
  1418                 | NONE => (num_nontrivial, relearns, name :: flops))
  1419               val (relearns, flops, next_commit) =
  1420                 if Time.> (Timer.checkRealTimer timer, next_commit) then
  1421                   (commit false [] relearns flops; ([], [], next_commit_time ()))
  1422                 else
  1423                   (relearns, flops, next_commit)
  1424               val timed_out = Time.> (Timer.checkRealTimer timer, learn_timeout)
  1425             in
  1426               ((relearns, flops), (num_nontrivial, next_commit, timed_out))
  1427             end
  1428 
  1429         val num_nontrivial =
  1430           if not run_prover then
  1431             num_nontrivial
  1432           else
  1433             let
  1434               val max_isar = 1000 * max_dependencies
  1435 
  1436               fun priority_of th =
  1437                 random_range 0 max_isar +
  1438                 (case try (Graph.get_node access_G) (nickname_of_thm th) of
  1439                   SOME (Isar_Proof, _, deps) => ~100 * length deps
  1440                 | SOME (Automatic_Proof, _, _) => 2 * max_isar
  1441                 | SOME (Isar_Proof_wegen_Prover_Flop, _, _) => max_isar
  1442                 | NONE => 0)
  1443 
  1444               val old_facts = facts
  1445                 |> filter is_in_access_G
  1446                 |> map (`(priority_of o snd))
  1447                 |> sort (int_ord o pairself fst)
  1448                 |> map snd
  1449               val ((relearns, flops), (num_nontrivial, _, _)) =
  1450                 (([], []), (num_nontrivial, next_commit_time (), false))
  1451                 |> fold relearn_old_fact old_facts
  1452             in
  1453               commit true [] relearns flops; num_nontrivial
  1454             end
  1455       in
  1456         if verbose orelse auto_level < 2 then
  1457           "Learned " ^ string_of_int num_new_facts ^ " fact" ^ plural_s num_new_facts ^ " and " ^
  1458           string_of_int num_nontrivial ^ " nontrivial " ^
  1459           (if run_prover then "automatic and " else "") ^ "Isar proof" ^ plural_s num_nontrivial ^
  1460           (if verbose then " in " ^ string_of_time (Timer.checkRealTimer timer) else "") ^ "."
  1461         else
  1462           ""
  1463       end
  1464   end
  1465 
  1466 fun mash_learn ctxt (params as {provers, timeout, ...}) fact_override chained run_prover =
  1467   let
  1468     val css = Sledgehammer_Fact.clasimpset_rule_table_of ctxt
  1469     val ctxt = ctxt |> Config.put instantiate_inducts false
  1470     val facts = nearly_all_facts ctxt false fact_override Symtab.empty css chained [] @{prop True}
  1471       |> sort (crude_thm_ord o pairself snd o swap)
  1472     val num_facts = length facts
  1473     val prover = hd provers
  1474 
  1475     fun learn auto_level run_prover =
  1476       mash_learn_facts ctxt params prover auto_level run_prover one_year facts
  1477       |> Output.urgent_message
  1478   in
  1479     if run_prover then
  1480       (Output.urgent_message ("MaShing through " ^ string_of_int num_facts ^ " fact" ^
  1481          plural_s num_facts ^ " for automatic proofs (" ^ quote prover ^ " timeout: " ^
  1482          string_of_time timeout ^ ").\n\nCollecting Isar proofs first...");
  1483        learn 1 false;
  1484        Output.urgent_message "Now collecting automatic proofs. This may take several hours. You \
  1485          \can safely stop the learning process at any point.";
  1486        learn 0 true)
  1487     else
  1488       (Output.urgent_message ("MaShing through " ^ string_of_int num_facts ^ " fact" ^
  1489          plural_s num_facts ^ " for Isar proofs...");
  1490        learn 0 false)
  1491   end
  1492 
  1493 fun mash_can_suggest_facts ctxt = not (Graph.is_empty (#access_G (peek_state ctxt)))
  1494 
  1495 (* Generate more suggestions than requested, because some might be thrown out later for various
  1496    reasons (e.g., duplicates). *)
  1497 fun generous_max_suggestions max_facts = 3 * max_facts div 2 + 25
  1498 
  1499 val mepo_weight = 0.5
  1500 val mash_weight = 0.5
  1501 
  1502 val max_facts_to_learn_before_query = 100
  1503 
  1504 (* The threshold should be large enough so that MaSh does not get activated for Auto Sledgehammer
  1505    and Try. *)
  1506 val min_secs_for_learning = 15
  1507 
  1508 fun relevant_facts ctxt (params as {verbose, learn, fact_filter, timeout, ...}) prover
  1509     max_facts ({add, only, ...} : fact_override) hyp_ts concl_t facts =
  1510   if not (subset (op =) (the_list fact_filter, fact_filters)) then
  1511     error ("Unknown fact filter: " ^ quote (the fact_filter) ^ ".")
  1512   else if only then
  1513     [("", map fact_of_raw_fact facts)]
  1514   else if max_facts <= 0 orelse null facts then
  1515     [("", [])]
  1516   else
  1517     let
  1518       val thy = Proof_Context.theory_of ctxt
  1519 
  1520       fun maybe_launch_thread exact min_num_facts_to_learn =
  1521         if not (Async_Manager.has_running_threads MaShN) andalso
  1522            Time.toSeconds timeout >= min_secs_for_learning then
  1523           let val timeout = time_mult learn_timeout_slack timeout in
  1524             (if verbose then
  1525                Output.urgent_message ("Started MaShing through " ^
  1526                  (if exact then "" else "at least ") ^ string_of_int min_num_facts_to_learn ^
  1527                  " fact" ^ plural_s min_num_facts_to_learn ^ " in the background.")
  1528              else
  1529                ());
  1530             launch_thread timeout
  1531               (fn () => (true, mash_learn_facts ctxt params prover 2 false timeout facts))
  1532           end
  1533         else
  1534           ()
  1535 
  1536       fun please_learn () =
  1537         let
  1538           val {access_G, xtabs = ((num_facts0, _), _), ...} = peek_state ctxt
  1539           val is_in_access_G = is_fact_in_graph access_G o snd
  1540           val min_num_facts_to_learn = length facts - num_facts0
  1541         in
  1542           if min_num_facts_to_learn <= max_facts_to_learn_before_query then
  1543             (case length (filter_out is_in_access_G facts) of
  1544               0 => ()
  1545             | num_facts_to_learn =>
  1546               if num_facts_to_learn <= max_facts_to_learn_before_query then
  1547                 mash_learn_facts ctxt params prover 2 false timeout facts
  1548                 |> (fn "" => () | s => Output.urgent_message (MaShN ^ ": " ^ s))
  1549               else
  1550                 maybe_launch_thread true num_facts_to_learn)
  1551           else
  1552             maybe_launch_thread false min_num_facts_to_learn
  1553         end
  1554 
  1555       val mash_enabled = is_mash_enabled ()
  1556       val _ =
  1557         if learn andalso mash_enabled andalso fact_filter <> SOME mepoN then please_learn () else ()
  1558 
  1559       val effective_fact_filter =
  1560         (case fact_filter of
  1561           SOME ff => ff
  1562         | NONE => if mash_enabled andalso mash_can_suggest_facts ctxt then meshN else mepoN)
  1563 
  1564       val unique_facts = drop_duplicate_facts facts
  1565       val add_ths = Attrib.eval_thms ctxt add
  1566 
  1567       fun in_add (_, th) = member Thm.eq_thm_prop add_ths th
  1568 
  1569       fun add_and_take accepts =
  1570         (case add_ths of
  1571            [] => accepts
  1572          | _ =>
  1573            (unique_facts |> filter in_add |> map fact_of_raw_fact) @ (accepts |> filter_out in_add))
  1574         |> take max_facts
  1575 
  1576       fun mepo () =
  1577         (mepo_suggested_facts ctxt params max_facts NONE hyp_ts concl_t unique_facts
  1578          |> weight_facts_steeply, [])
  1579 
  1580       fun mash () =
  1581         mash_suggested_facts ctxt thy params (generous_max_suggestions max_facts) hyp_ts concl_t
  1582           facts
  1583         |>> weight_facts_steeply
  1584 
  1585       val mess =
  1586         (* the order is important for the "case" expression below *)
  1587         [] |> effective_fact_filter <> mepoN ? cons (mash_weight, mash)
  1588            |> effective_fact_filter <> mashN ? cons (mepo_weight, mepo)
  1589            |> Par_List.map (apsnd (fn f => f ()))
  1590       val mesh = mesh_facts (eq_snd (gen_eq_thm ctxt)) max_facts mess |> add_and_take
  1591     in
  1592       (case (fact_filter, mess) of
  1593         (NONE, [(_, (mepo, _)), (_, (mash, _))]) =>
  1594         [(meshN, mesh),
  1595          (mepoN, mepo |> map fst |> add_and_take),
  1596          (mashN, mash |> map fst |> add_and_take)]
  1597       | _ => [(effective_fact_filter, mesh)])
  1598     end
  1599 
  1600 fun kill_learners () = Async_Manager.kill_threads MaShN "learner"
  1601 fun running_learners () = Async_Manager.running_threads MaShN "learner"
  1602 
  1603 end;