src/HOL/Tools/Sledgehammer/sledgehammer_filter_mash.ML
author blanchet
Wed, 18 Jul 2012 08:44:04 +0200
changeset 49338 7b5f7ca25d17
parent 49337 8a8d71e34297
child 49339 3ee5b5589402
permissions -rw-r--r--
optimized MaSh output by chunking it
blanchet@49263
     1
(*  Title:      HOL/Tools/Sledgehammer/sledgehammer_filter_mash.ML
blanchet@49263
     2
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@49263
     3
blanchet@49263
     4
Sledgehammer's machine-learning-based relevance filter (MaSh).
blanchet@49263
     5
*)
blanchet@49263
     6
blanchet@49263
     7
signature SLEDGEHAMMER_FILTER_MASH =
blanchet@49263
     8
sig
blanchet@49266
     9
  type status = ATP_Problem_Generate.status
blanchet@49266
    10
  type stature = ATP_Problem_Generate.stature
blanchet@49311
    11
  type fact = Sledgehammer_Fact.fact
blanchet@49311
    12
  type fact_override = Sledgehammer_Fact.fact_override
blanchet@49266
    13
  type params = Sledgehammer_Provers.params
blanchet@49303
    14
  type relevance_fudge = Sledgehammer_Provers.relevance_fudge
blanchet@49266
    15
  type prover_result = Sledgehammer_Provers.prover_result
blanchet@49266
    16
blanchet@49323
    17
  val trace : bool Config.T
blanchet@49334
    18
  val MaShN : string
blanchet@49329
    19
  val meshN : string
blanchet@49329
    20
  val iterN : string
blanchet@49329
    21
  val mashN : string
blanchet@49329
    22
  val fact_filters : string list
blanchet@49318
    23
  val escape_meta : string -> string
blanchet@49318
    24
  val escape_metas : string list -> string
blanchet@49323
    25
  val unescape_meta : string -> string
blanchet@49323
    26
  val unescape_metas : string -> string list
blanchet@49326
    27
  val extract_query : string -> string * string list
blanchet@49336
    28
  val suggested_facts : string list -> ('a * thm) list -> ('a * thm) list
blanchet@49336
    29
  val mesh_facts :
blanchet@49336
    30
    int -> (('a * thm) list * ('a * thm) list) list -> ('a * thm) list
blanchet@49333
    31
  val is_likely_tautology : Proof.context -> string -> thm -> bool
blanchet@49330
    32
  val is_too_meta : thm -> bool
blanchet@49266
    33
  val theory_ord : theory * theory -> order
blanchet@49266
    34
  val thm_ord : thm * thm -> order
blanchet@49333
    35
  val features_of :
blanchet@49333
    36
    Proof.context -> string -> theory -> status -> term list -> string list
blanchet@49331
    37
  val isabelle_dependencies_of : unit Symtab.table -> thm -> string list
blanchet@49266
    38
  val goal_of_thm : theory -> thm -> thm
blanchet@49336
    39
  val run_prover_for_mash :
blanchet@49333
    40
    Proof.context -> params -> string -> fact list -> thm -> prover_result
blanchet@49323
    41
  val mash_RESET : Proof.context -> unit
blanchet@49331
    42
  val mash_INIT :
blanchet@49331
    43
    Proof.context -> bool
blanchet@49331
    44
    -> (string * string list * string list * string list) list -> unit
blanchet@49323
    45
  val mash_ADD :
blanchet@49331
    46
    Proof.context -> bool
blanchet@49331
    47
    -> (string * string list * string list * string list) list -> unit
blanchet@49331
    48
  val mash_QUERY :
blanchet@49333
    49
    Proof.context -> bool -> int -> string list * string list -> string list
blanchet@49323
    50
  val mash_reset : Proof.context -> unit
blanchet@49333
    51
  val mash_could_suggest_facts : unit -> bool
blanchet@49336
    52
  val mash_can_suggest_facts : Proof.context -> bool
blanchet@49313
    53
  val mash_suggest_facts :
blanchet@49336
    54
    Proof.context -> params -> string -> int -> term list -> term
blanchet@49336
    55
    -> ('a * thm) list -> ('a * thm) list * ('a * thm) list
blanchet@49334
    56
  val mash_learn_thy :
blanchet@49334
    57
    Proof.context -> params -> theory -> Time.time -> fact list -> string
blanchet@49331
    58
  val mash_learn_proof :
blanchet@49336
    59
    Proof.context -> params -> term -> ('a * thm) list -> thm list -> unit
blanchet@49303
    60
  val relevant_facts :
blanchet@49307
    61
    Proof.context -> params -> string -> int -> fact_override -> term list
blanchet@49311
    62
    -> term -> fact list -> fact list
blanchet@49334
    63
  val kill_learners : unit -> unit
blanchet@49334
    64
  val running_learners : unit -> unit
blanchet@49263
    65
end;
blanchet@49263
    66
blanchet@49263
    67
structure Sledgehammer_Filter_MaSh : SLEDGEHAMMER_FILTER_MASH =
blanchet@49263
    68
struct
blanchet@49264
    69
blanchet@49266
    70
open ATP_Util
blanchet@49266
    71
open ATP_Problem_Generate
blanchet@49266
    72
open Sledgehammer_Util
blanchet@49266
    73
open Sledgehammer_Fact
blanchet@49266
    74
open Sledgehammer_Filter_Iter
blanchet@49266
    75
open Sledgehammer_Provers
blanchet@49333
    76
open Sledgehammer_Minimize
blanchet@49266
    77
blanchet@49323
    78
val trace =
blanchet@49323
    79
  Attrib.setup_config_bool @{binding sledgehammer_filter_mash_trace} (K false)
blanchet@49323
    80
fun trace_msg ctxt msg = if Config.get ctxt trace then tracing (msg ()) else ()
blanchet@49323
    81
blanchet@49334
    82
val MaShN = "MaSh"
blanchet@49334
    83
blanchet@49329
    84
val meshN = "mesh"
blanchet@49329
    85
val iterN = "iter"
blanchet@49329
    86
val mashN = "mash"
blanchet@49329
    87
blanchet@49329
    88
val fact_filters = [meshN, iterN, mashN]
blanchet@49329
    89
blanchet@49329
    90
fun mash_home () = getenv "MASH_HOME"
blanchet@49329
    91
fun mash_state_dir () =
blanchet@49324
    92
  getenv "ISABELLE_HOME_USER" ^ "/mash"
blanchet@49331
    93
  |> tap (Isabelle_System.mkdir o Path.explode)
blanchet@49329
    94
fun mash_state_path () = mash_state_dir () ^ "/state" |> Path.explode
blanchet@49266
    95
blanchet@49266
    96
(*** Isabelle helpers ***)
blanchet@49266
    97
blanchet@49323
    98
fun meta_char c =
blanchet@49266
    99
  if Char.isAlphaNum c orelse c = #"_" orelse c = #"." orelse c = #"(" orelse
blanchet@49266
   100
     c = #")" orelse c = #"," then
blanchet@49266
   101
    String.str c
blanchet@49266
   102
  else
blanchet@49266
   103
    (* fixed width, in case more digits follow *)
blanchet@49266
   104
    "\\" ^ stringN_of_int 3 (Char.ord c)
blanchet@49266
   105
blanchet@49323
   106
fun unmeta_chars accum [] = String.implode (rev accum)
blanchet@49323
   107
  | unmeta_chars accum (#"\\" :: d1 :: d2 :: d3 :: cs) =
blanchet@49323
   108
    (case Int.fromString (String.implode [d1, d2, d3]) of
blanchet@49323
   109
       SOME n => unmeta_chars (Char.chr n :: accum) cs
blanchet@49323
   110
     | NONE => "" (* error *))
blanchet@49323
   111
  | unmeta_chars _ (#"\\" :: _) = "" (* error *)
blanchet@49323
   112
  | unmeta_chars accum (c :: cs) = unmeta_chars (c :: accum) cs
blanchet@49323
   113
blanchet@49323
   114
val escape_meta = String.translate meta_char
blanchet@49318
   115
val escape_metas = map escape_meta #> space_implode " "
blanchet@49330
   116
val unescape_meta = String.explode #> unmeta_chars []
blanchet@49330
   117
val unescape_metas =
blanchet@49330
   118
  space_explode " " #> filter_out (curry (op =) "") #> map unescape_meta
blanchet@49266
   119
blanchet@49326
   120
fun extract_query line =
blanchet@49326
   121
  case space_explode ":" line of
blanchet@49330
   122
    [goal_name, suggs] => (unescape_meta goal_name, unescape_metas suggs)
blanchet@49327
   123
  | _ => ("", [])
blanchet@49326
   124
blanchet@49326
   125
fun find_suggested facts sugg =
blanchet@49326
   126
  find_first (fn (_, th) => Thm.get_name_hint th = sugg) facts
blanchet@49326
   127
fun suggested_facts suggs facts = map_filter (find_suggested facts) suggs
blanchet@49326
   128
blanchet@49335
   129
fun sum_avg _ [] = 1000000000 (* big number *)
blanchet@49335
   130
  | sum_avg n xs = fold (Integer.add o Integer.mult n) xs 0 div (length xs)
blanchet@49328
   131
blanchet@49335
   132
fun mesh_facts max_facts [(selected, unknown)] =
blanchet@49335
   133
    take max_facts selected @ take (max_facts - length selected) unknown
blanchet@49329
   134
  | mesh_facts max_facts mess =
blanchet@49329
   135
    let
blanchet@49335
   136
      val mess = mess |> map (apfst (`length))
blanchet@49329
   137
      val n = length mess
blanchet@49329
   138
      val fact_eq = Thm.eq_thm o pairself snd
blanchet@49335
   139
      fun score_in fact ((sel_len, sels), unks) =
blanchet@49335
   140
        case find_index (curry fact_eq fact) sels of
blanchet@49335
   141
          ~1 => (case find_index (curry fact_eq fact) unks of
blanchet@49335
   142
                   ~1 => SOME sel_len
blanchet@49335
   143
                 | _ => NONE)
blanchet@49329
   144
        | j => SOME j
blanchet@49329
   145
      fun score_of fact = mess |> map_filter (score_in fact) |> sum_avg n
blanchet@49335
   146
      val facts = fold (union fact_eq o take max_facts o snd o fst) mess []
blanchet@49329
   147
    in
blanchet@49329
   148
      facts |> map (`score_of) |> sort (int_ord o pairself fst) |> map snd
blanchet@49329
   149
            |> take max_facts
blanchet@49329
   150
    end
blanchet@49327
   151
blanchet@49318
   152
val thy_feature_prefix = "y_"
blanchet@49266
   153
blanchet@49318
   154
val thy_feature_name_of = prefix thy_feature_prefix
blanchet@49318
   155
val const_name_of = prefix const_prefix
blanchet@49318
   156
val type_name_of = prefix type_const_prefix
blanchet@49318
   157
val class_name_of = prefix class_prefix
blanchet@49266
   158
blanchet@49266
   159
local
blanchet@49266
   160
blanchet@49266
   161
fun has_bool @{typ bool} = true
blanchet@49266
   162
  | has_bool (Type (_, Ts)) = exists has_bool Ts
blanchet@49266
   163
  | has_bool _ = false
blanchet@49266
   164
blanchet@49266
   165
fun has_fun (Type (@{type_name fun}, _)) = true
blanchet@49266
   166
  | has_fun (Type (_, Ts)) = exists has_fun Ts
blanchet@49266
   167
  | has_fun _ = false
blanchet@49266
   168
blanchet@49266
   169
val is_conn = member (op =)
blanchet@49266
   170
  [@{const_name Trueprop}, @{const_name HOL.conj}, @{const_name HOL.disj},
blanchet@49266
   171
   @{const_name HOL.implies}, @{const_name Not},
blanchet@49266
   172
   @{const_name All}, @{const_name Ex}, @{const_name Ball}, @{const_name Bex},
blanchet@49266
   173
   @{const_name HOL.eq}]
blanchet@49266
   174
blanchet@49266
   175
val has_bool_arg_const =
blanchet@49266
   176
  exists_Const (fn (c, T) =>
blanchet@49266
   177
                   not (is_conn c) andalso exists has_bool (binder_types T))
blanchet@49266
   178
blanchet@49331
   179
fun higher_inst_const thy (s, T) =
blanchet@49266
   180
  case binder_types T of
blanchet@49266
   181
    [] => false
blanchet@49331
   182
  | Ts => length (binder_types (Sign.the_const_type thy s)) <> length Ts
blanchet@49331
   183
  handle TYPE _ => false
blanchet@49266
   184
blanchet@49266
   185
val binders = [@{const_name All}, @{const_name Ex}]
blanchet@49266
   186
blanchet@49266
   187
in
blanchet@49266
   188
blanchet@49266
   189
fun is_fo_term thy t =
blanchet@49266
   190
  let
blanchet@49266
   191
    val t =
blanchet@49266
   192
      t |> Envir.beta_eta_contract
blanchet@49266
   193
        |> transform_elim_prop
blanchet@49266
   194
        |> Object_Logic.atomize_term thy
blanchet@49266
   195
  in
blanchet@49266
   196
    Term.is_first_order binders t andalso
blanchet@49266
   197
    not (exists_subterm (fn Var (_, T) => has_bool T orelse has_fun T
blanchet@49266
   198
                          | _ => false) t orelse
blanchet@49266
   199
         has_bool_arg_const t orelse exists_Const (higher_inst_const thy) t)
blanchet@49266
   200
  end
blanchet@49266
   201
blanchet@49266
   202
end
blanchet@49266
   203
blanchet@49333
   204
fun interesting_terms_types_and_classes ctxt prover term_max_depth
blanchet@49333
   205
                                        type_max_depth ts =
blanchet@49266
   206
  let
blanchet@49266
   207
    val bad_types = [@{type_name prop}, @{type_name bool}, @{type_name fun}]
blanchet@49333
   208
    fun is_bad_const (x as (s, _)) args =
blanchet@49333
   209
      member (op =) atp_logical_consts s orelse
blanchet@49333
   210
      fst (is_built_in_const_for_prover ctxt prover x args)
blanchet@49319
   211
    fun add_classes @{sort type} = I
blanchet@49319
   212
      | add_classes S = union (op =) (map class_name_of S)
blanchet@49266
   213
    fun do_add_type (Type (s, Ts)) =
blanchet@49266
   214
        (not (member (op =) bad_types s) ? insert (op =) (type_name_of s))
blanchet@49266
   215
        #> fold do_add_type Ts
blanchet@49319
   216
      | do_add_type (TFree (_, S)) = add_classes S
blanchet@49319
   217
      | do_add_type (TVar (_, S)) = add_classes S
blanchet@49266
   218
    fun add_type T = type_max_depth >= 0 ? do_add_type T
blanchet@49266
   219
    fun mk_app s args =
blanchet@49266
   220
      if member (op <>) args "" then s ^ "(" ^ space_implode "," args ^ ")"
blanchet@49266
   221
      else s
blanchet@49266
   222
    fun patternify ~1 _ = ""
blanchet@49266
   223
      | patternify depth t =
blanchet@49266
   224
        case strip_comb t of
blanchet@49266
   225
          (Const (s, _), args) =>
blanchet@49266
   226
          mk_app (const_name_of s) (map (patternify (depth - 1)) args)
blanchet@49266
   227
        | _ => ""
blanchet@49266
   228
    fun add_term_patterns ~1 _ = I
blanchet@49266
   229
      | add_term_patterns depth t =
blanchet@49266
   230
        insert (op =) (patternify depth t)
blanchet@49266
   231
        #> add_term_patterns (depth - 1) t
blanchet@49266
   232
    val add_term = add_term_patterns term_max_depth
blanchet@49266
   233
    fun add_patterns t =
blanchet@49266
   234
      let val (head, args) = strip_comb t in
blanchet@49266
   235
        (case head of
blanchet@49333
   236
           Const (x as (_, T)) =>
blanchet@49333
   237
           not (is_bad_const x args) ? (add_term t #> add_type T)
blanchet@49266
   238
         | Free (_, T) => add_type T
blanchet@49266
   239
         | Var (_, T) => add_type T
blanchet@49266
   240
         | Abs (_, T, body) => add_type T #> add_patterns body
blanchet@49266
   241
         | _ => I)
blanchet@49266
   242
        #> fold add_patterns args
blanchet@49266
   243
      end
blanchet@49317
   244
  in [] |> fold add_patterns ts |> sort string_ord end
blanchet@49266
   245
blanchet@49333
   246
fun is_likely_tautology ctxt prover th =
blanchet@49333
   247
  null (interesting_terms_types_and_classes ctxt prover 0 ~1 [prop_of th])
blanchet@49333
   248
  andalso not (Thm.eq_thm_prop (@{thm ext}, th))
blanchet@49266
   249
blanchet@49330
   250
(* ### FIXME: optimize *)
blanchet@49330
   251
fun is_too_meta th =
blanchet@49330
   252
  fastype_of (Object_Logic.atomize_term (theory_of_thm th) (prop_of th))
blanchet@49330
   253
  <> @{typ bool}
blanchet@49266
   254
blanchet@49266
   255
fun theory_ord p =
blanchet@49330
   256
  if Theory.eq_thy p then
blanchet@49330
   257
    EQUAL
blanchet@49330
   258
  else if Theory.subthy p then
blanchet@49330
   259
    LESS
blanchet@49330
   260
  else if Theory.subthy (swap p) then
blanchet@49330
   261
    GREATER
blanchet@49330
   262
  else case int_ord (pairself (length o Theory.ancestors_of) p) of
blanchet@49330
   263
    EQUAL => string_ord (pairself Context.theory_name p)
blanchet@49330
   264
  | order => order
blanchet@49266
   265
blanchet@49266
   266
val thm_ord = theory_ord o pairself theory_of_thm
blanchet@49266
   267
blanchet@49266
   268
fun is_exists (s, _) = (s = @{const_name Ex} orelse s = @{const_name Ex1})
blanchet@49266
   269
blanchet@49312
   270
val term_max_depth = 1
blanchet@49312
   271
val type_max_depth = 1
blanchet@49266
   272
blanchet@49266
   273
(* TODO: Generate type classes for types? *)
blanchet@49333
   274
fun features_of ctxt prover thy status ts =
blanchet@49318
   275
  thy_feature_name_of (Context.theory_name thy) ::
blanchet@49333
   276
  interesting_terms_types_and_classes ctxt prover term_max_depth type_max_depth
blanchet@49333
   277
                                      ts
blanchet@49317
   278
  |> exists (not o is_lambda_free) ts ? cons "lambdas"
blanchet@49317
   279
  |> exists (exists_Const is_exists) ts ? cons "skolems"
blanchet@49317
   280
  |> exists (not o is_fo_term thy) ts ? cons "ho"
blanchet@49317
   281
  |> (case status of
blanchet@49317
   282
        General => I
blanchet@49317
   283
      | Induction => cons "induction"
blanchet@49317
   284
      | Intro => cons "intro"
blanchet@49317
   285
      | Inductive => cons "inductive"
blanchet@49317
   286
      | Elim => cons "elim"
blanchet@49317
   287
      | Simp => cons "simp"
blanchet@49317
   288
      | Def => cons "def")
blanchet@49266
   289
blanchet@49266
   290
fun isabelle_dependencies_of all_facts =
blanchet@49318
   291
  thms_in_proof (SOME all_facts) #> sort string_ord
blanchet@49266
   292
blanchet@49266
   293
val freezeT = Type.legacy_freeze_type
blanchet@49266
   294
blanchet@49266
   295
fun freeze (t $ u) = freeze t $ freeze u
blanchet@49266
   296
  | freeze (Abs (s, T, t)) = Abs (s, freezeT T, freeze t)
blanchet@49266
   297
  | freeze (Var ((s, _), T)) = Free (s, freezeT T)
blanchet@49266
   298
  | freeze (Const (s, T)) = Const (s, freezeT T)
blanchet@49266
   299
  | freeze (Free (s, T)) = Free (s, freezeT T)
blanchet@49266
   300
  | freeze t = t
blanchet@49266
   301
blanchet@49266
   302
fun goal_of_thm thy = prop_of #> freeze #> cterm_of thy #> Goal.init
blanchet@49266
   303
blanchet@49336
   304
fun run_prover_for_mash ctxt params prover facts goal =
blanchet@49266
   305
  let
blanchet@49266
   306
    val problem =
blanchet@49266
   307
      {state = Proof.init ctxt, goal = goal, subgoal = 1, subgoal_count = 1,
blanchet@49304
   308
       facts = facts |> map (apfst (apfst (fn name => name ())))
blanchet@49333
   309
                     |> map Untranslated_Fact}
blanchet@49336
   310
    val prover = get_minimizing_prover ctxt Normal (K ()) prover
blanchet@49266
   311
  in prover params (K (K (K ""))) problem end
blanchet@49266
   312
blanchet@49266
   313
blanchet@49317
   314
(*** Low-level communication with MaSh ***)
blanchet@49317
   315
blanchet@49338
   316
fun write_file (xs, f) file =
blanchet@49333
   317
  let val path = Path.explode file in
blanchet@49338
   318
    File.write path "";
blanchet@49338
   319
    xs |> chunk_list 500
blanchet@49338
   320
       |> List.app (File.append path o space_implode "" o map f)
blanchet@49333
   321
  end
blanchet@49331
   322
blanchet@49331
   323
fun mash_info overlord =
blanchet@49331
   324
  if overlord then (getenv "ISABELLE_HOME_USER", "")
blanchet@49331
   325
  else (getenv "ISABELLE_TMP", serial_string ())
blanchet@49331
   326
blanchet@49331
   327
fun run_mash ctxt (temp_dir, serial) core =
blanchet@49326
   328
  let
blanchet@49331
   329
    val log_file = temp_dir ^ "/mash_log" ^ serial
blanchet@49331
   330
    val err_file = temp_dir ^ "/mash_err" ^ serial
blanchet@49326
   331
    val command =
blanchet@49331
   332
      mash_home () ^ "/mash.py --quiet --outputDir " ^ mash_state_dir () ^
blanchet@49331
   333
      " --log " ^ log_file ^ " " ^ core ^ " 2>&1 > " ^ err_file
blanchet@49331
   334
  in
blanchet@49331
   335
    trace_msg ctxt (fn () => "Running " ^ command);
blanchet@49338
   336
    write_file ([], K "") log_file;
blanchet@49338
   337
    write_file ([], K "") err_file;
blanchet@49331
   338
    Isabelle_System.bash command; ()
blanchet@49331
   339
  end
blanchet@49326
   340
blanchet@49331
   341
fun run_mash_init ctxt overlord write_access write_feats write_deps =
blanchet@49331
   342
  let
blanchet@49331
   343
    val info as (temp_dir, serial) = mash_info overlord
blanchet@49331
   344
    val in_dir = temp_dir ^ "/mash_init" ^ serial
blanchet@49331
   345
                 |> tap (Isabelle_System.mkdir o Path.explode)
blanchet@49331
   346
  in
blanchet@49331
   347
    write_file write_access (in_dir ^ "/mash_accessibility");
blanchet@49331
   348
    write_file write_feats (in_dir ^ "/mash_features");
blanchet@49331
   349
    write_file write_deps (in_dir ^ "/mash_dependencies");
blanchet@49331
   350
    run_mash ctxt info ("--init --inputDir " ^ in_dir)
blanchet@49331
   351
  end
blanchet@49331
   352
blanchet@49333
   353
fun run_mash_commands ctxt overlord save max_suggs write_cmds read_suggs =
blanchet@49331
   354
  let
blanchet@49331
   355
    val info as (temp_dir, serial) = mash_info overlord
blanchet@49333
   356
    val sugg_file = temp_dir ^ "/mash_suggs" ^ serial
blanchet@49331
   357
    val cmd_file = temp_dir ^ "/mash_commands" ^ serial
blanchet@49331
   358
  in
blanchet@49338
   359
    write_file ([], K "") sugg_file;
blanchet@49331
   360
    write_file write_cmds cmd_file;
blanchet@49331
   361
    run_mash ctxt info
blanchet@49333
   362
             ("--inputFile " ^ cmd_file ^ " --predictions " ^ sugg_file ^
blanchet@49333
   363
              " --numberOfPredictions " ^ string_of_int max_suggs ^
blanchet@49331
   364
              (if save then " --saveModel" else ""));
blanchet@49333
   365
    read_suggs (fn () => File.read_lines (Path.explode sugg_file))
blanchet@49331
   366
  end
blanchet@49331
   367
blanchet@49331
   368
fun str_of_update (name, parents, feats, deps) =
blanchet@49331
   369
  "! " ^ escape_meta name ^ ": " ^ escape_metas parents ^ "; " ^
blanchet@49326
   370
  escape_metas feats ^ "; " ^ escape_metas deps ^ "\n"
blanchet@49326
   371
blanchet@49331
   372
fun str_of_query (parents, feats) =
blanchet@49331
   373
  "? " ^ escape_metas parents ^ "; " ^ escape_metas feats
blanchet@49331
   374
blanchet@49331
   375
fun init_str_of_update get (upd as (name, _, _, _)) =
blanchet@49331
   376
  escape_meta name ^ ": " ^ escape_metas (get upd) ^ "\n"
blanchet@49326
   377
blanchet@49323
   378
fun mash_RESET ctxt =
blanchet@49329
   379
  let val path = mash_state_dir () |> Path.explode in
blanchet@49324
   380
    trace_msg ctxt (K "MaSh RESET");
blanchet@49324
   381
    File.fold_dir (fn file => fn () =>
blanchet@49324
   382
                      File.rm (Path.append path (Path.basic file)))
blanchet@49324
   383
                  path ()
blanchet@49324
   384
  end
blanchet@49317
   385
blanchet@49331
   386
fun mash_INIT ctxt _ [] = mash_RESET ctxt
blanchet@49331
   387
  | mash_INIT ctxt overlord upds =
blanchet@49331
   388
    (trace_msg ctxt (fn () => "MaSh INIT " ^
blanchet@49331
   389
         elide_string 1000 (space_implode " " (map #1 upds)));
blanchet@49338
   390
     run_mash_init ctxt overlord (upds, init_str_of_update #2)
blanchet@49338
   391
                   (upds, init_str_of_update #3) (upds, init_str_of_update #4))
blanchet@49317
   392
blanchet@49331
   393
fun mash_ADD _ _ [] = ()
blanchet@49331
   394
  | mash_ADD ctxt overlord upds =
blanchet@49331
   395
    (trace_msg ctxt (fn () => "MaSh ADD " ^
blanchet@49331
   396
         elide_string 1000 (space_implode " " (map #1 upds)));
blanchet@49338
   397
     run_mash_commands ctxt overlord true 0 (upds, str_of_update) (K ()))
blanchet@49317
   398
blanchet@49333
   399
fun mash_QUERY ctxt overlord max_suggs (query as (_, feats)) =
blanchet@49329
   400
  (trace_msg ctxt (fn () => "MaSh QUERY " ^ space_implode " " feats);
blanchet@49333
   401
   run_mash_commands ctxt overlord false max_suggs
blanchet@49338
   402
       ([query], str_of_query)
blanchet@49333
   403
       (fn suggs => snd (extract_query (List.last (suggs ()))))
blanchet@49326
   404
   handle List.Empty => [])
blanchet@49317
   405
blanchet@49317
   406
blanchet@49266
   407
(*** High-level communication with MaSh ***)
blanchet@49266
   408
blanchet@49336
   409
fun try_graph ctxt when def f =
blanchet@49336
   410
  f ()
blanchet@49336
   411
  handle Graph.CYCLES (cycle :: _) =>
blanchet@49336
   412
         (trace_msg ctxt (fn () =>
blanchet@49336
   413
              "Cycle involving " ^ commas cycle ^ " when " ^ when); def)
blanchet@49336
   414
       | Graph.UNDEF name =>
blanchet@49336
   415
         (trace_msg ctxt (fn () =>
blanchet@49336
   416
              "Unknown fact " ^ quote name ^ " when " ^ when); def)
blanchet@49336
   417
blanchet@49316
   418
type mash_state =
blanchet@49331
   419
  {thys : bool Symtab.table,
blanchet@49331
   420
   fact_graph : unit Graph.T}
blanchet@49264
   421
blanchet@49331
   422
val empty_state = {thys = Symtab.empty, fact_graph = Graph.empty}
blanchet@49316
   423
blanchet@49316
   424
local
blanchet@49316
   425
blanchet@49336
   426
fun mash_load _ (state as (true, _)) = state
blanchet@49336
   427
  | mash_load ctxt _ =
blanchet@49324
   428
    let val path = mash_state_path () in
blanchet@49317
   429
      (true,
blanchet@49317
   430
       case try File.read_lines path of
blanchet@49331
   431
         SOME (comp_thys :: incomp_thys :: fact_lines) =>
blanchet@49317
   432
         let
blanchet@49331
   433
           fun add_thy comp thy = Symtab.update (thy, comp)
blanchet@49337
   434
           fun add_edge_to name parent =
blanchet@49337
   435
             Graph.default_node (parent, ())
blanchet@49337
   436
             #> Graph.add_edge (parent, name)
blanchet@49331
   437
           fun add_fact_line line =
blanchet@49331
   438
             case extract_query line of
blanchet@49331
   439
               ("", _) => I (* shouldn't happen *)
blanchet@49331
   440
             | (name, parents) =>
blanchet@49331
   441
               Graph.default_node (name, ())
blanchet@49337
   442
               #> fold (add_edge_to name) parents
blanchet@49331
   443
           val thys =
blanchet@49331
   444
             Symtab.empty |> fold (add_thy true) (unescape_metas comp_thys)
blanchet@49331
   445
                          |> fold (add_thy false) (unescape_metas incomp_thys)
blanchet@49336
   446
           val fact_graph =
blanchet@49337
   447
             try_graph ctxt "loading state" Graph.empty (fn () =>
blanchet@49336
   448
                 Graph.empty |> fold add_fact_line fact_lines)
blanchet@49331
   449
         in {thys = thys, fact_graph = fact_graph} end
blanchet@49319
   450
       | _ => empty_state)
blanchet@49317
   451
    end
blanchet@49316
   452
blanchet@49331
   453
fun mash_save ({thys, fact_graph, ...} : mash_state) =
blanchet@49316
   454
  let
blanchet@49324
   455
    val path = mash_state_path ()
blanchet@49331
   456
    val thys = Symtab.dest thys
blanchet@49333
   457
    val line_for_thys = escape_metas o AList.find (op =) thys
blanchet@49333
   458
    fun fact_line_for name parents =
blanchet@49333
   459
      escape_meta name ^ ": " ^ escape_metas parents
blanchet@49331
   460
    val append_fact = File.append path o suffix "\n" oo fact_line_for
blanchet@49316
   461
  in
blanchet@49331
   462
    File.write path (line_for_thys true ^ "\n" ^ line_for_thys false ^ "\n");
blanchet@49331
   463
    Graph.fold (fn (name, ((), (parents, _))) => fn () =>
blanchet@49331
   464
                   append_fact name (Graph.Keys.dest parents))
blanchet@49331
   465
        fact_graph ()
blanchet@49316
   466
  end
blanchet@49316
   467
blanchet@49317
   468
val global_state =
blanchet@49319
   469
  Synchronized.var "Sledgehammer_Filter_MaSh.global_state" (false, empty_state)
blanchet@49316
   470
blanchet@49316
   471
in
blanchet@49316
   472
blanchet@49336
   473
fun mash_map ctxt f =
blanchet@49336
   474
  Synchronized.change global_state (mash_load ctxt ##> (f #> tap mash_save))
blanchet@49316
   475
blanchet@49336
   476
fun mash_get ctxt =
blanchet@49336
   477
  Synchronized.change_result global_state (mash_load ctxt #> `snd)
blanchet@49317
   478
blanchet@49323
   479
fun mash_reset ctxt =
blanchet@49317
   480
  Synchronized.change global_state (fn _ =>
blanchet@49324
   481
      (mash_RESET ctxt; File.write (mash_state_path ()) "";
blanchet@49323
   482
       (true, empty_state)))
blanchet@49316
   483
blanchet@49316
   484
end
blanchet@49316
   485
blanchet@49333
   486
fun mash_could_suggest_facts () = mash_home () <> ""
blanchet@49336
   487
fun mash_can_suggest_facts ctxt =
blanchet@49336
   488
  not (Graph.is_empty (#fact_graph (mash_get ctxt)))
blanchet@49264
   489
blanchet@49336
   490
fun parents_wrt_facts ctxt facts fact_graph =
blanchet@49331
   491
  let
blanchet@49333
   492
    val graph_facts = Symtab.make (map (rpair ()) (Graph.keys fact_graph))
blanchet@49331
   493
    val facts =
blanchet@49336
   494
      try_graph ctxt "when computing ancestor facts" [] (fn () =>
blanchet@49336
   495
          [] |> fold (cons o Thm.get_name_hint o snd) facts
blanchet@49336
   496
             |> filter (Symtab.defined graph_facts)
blanchet@49336
   497
             |> Graph.all_preds fact_graph)
blanchet@49333
   498
    val facts = Symtab.empty |> fold (fn name => Symtab.update (name, ())) facts
blanchet@49336
   499
  in
blanchet@49336
   500
    try_graph ctxt "when computing parent facts" [] (fn () =>
blanchet@49336
   501
        fact_graph |> Graph.restrict (Symtab.defined facts) |> Graph.maximals)
blanchet@49336
   502
  end
blanchet@49331
   503
blanchet@49333
   504
(* Generate more suggestions than requested, because some might be thrown out
blanchet@49333
   505
   later for various reasons and "meshing" gives better results with some
blanchet@49333
   506
   slack. *)
blanchet@49333
   507
fun max_suggs_of max_facts = max_facts + Int.min (200, max_facts)
blanchet@49333
   508
blanchet@49335
   509
fun is_fact_in_graph fact_graph (_, th) =
blanchet@49335
   510
  can (Graph.get_node fact_graph) (Thm.get_name_hint th)
blanchet@49335
   511
blanchet@49333
   512
fun mash_suggest_facts ctxt ({overlord, ...} : params) prover max_facts hyp_ts
blanchet@49333
   513
                       concl_t facts =
blanchet@49316
   514
  let
blanchet@49317
   515
    val thy = Proof_Context.theory_of ctxt
blanchet@49336
   516
    val fact_graph = #fact_graph (mash_get ctxt)
blanchet@49336
   517
    val parents = parents_wrt_facts ctxt facts fact_graph
blanchet@49333
   518
    val feats = features_of ctxt prover thy General (concl_t :: hyp_ts)
blanchet@49333
   519
    val suggs =
blanchet@49335
   520
      if Graph.is_empty fact_graph then []
blanchet@49335
   521
      else mash_QUERY ctxt overlord (max_suggs_of max_facts) (parents, feats)
blanchet@49335
   522
    val selected = facts |> suggested_facts suggs
blanchet@49335
   523
    val unknown = facts |> filter_out (is_fact_in_graph fact_graph)
blanchet@49335
   524
  in (selected, unknown) end
blanchet@49264
   525
blanchet@49331
   526
fun add_thys_for thy =
blanchet@49331
   527
  let fun add comp thy = Symtab.update (Context.theory_name thy, comp) in
blanchet@49331
   528
    add false thy #> fold (add true) (Theory.ancestors_of thy)
blanchet@49331
   529
  end
blanchet@49319
   530
blanchet@49331
   531
fun update_fact_graph ctxt (name, parents, feats, deps) (upds, graph) =
blanchet@49331
   532
  let
blanchet@49331
   533
    fun maybe_add_from from (accum as (parents, graph)) =
blanchet@49336
   534
      try_graph ctxt "updating graph" accum (fn () =>
blanchet@49336
   535
          (from :: parents, Graph.add_edge_acyclic (from, name) graph))
blanchet@49336
   536
    val graph = graph |> Graph.default_node (name, ())
blanchet@49331
   537
    val (parents, graph) = ([], graph) |> fold maybe_add_from parents
blanchet@49331
   538
    val (deps, graph) = ([], graph) |> fold maybe_add_from deps
blanchet@49331
   539
  in ((name, parents, feats, deps) :: upds, graph) end
blanchet@49321
   540
blanchet@49333
   541
val pass1_learn_timeout_factor = 0.5
blanchet@49333
   542
blanchet@49333
   543
(* The timeout is understood in a very slack fashion. *)
blanchet@49334
   544
fun mash_learn_thy ctxt ({provers, verbose, overlord, ...} : params) thy timeout
blanchet@49334
   545
                   facts =
blanchet@49319
   546
  let
blanchet@49333
   547
    val timer = Timer.startRealTimer ()
blanchet@49333
   548
    val prover = hd provers
blanchet@49333
   549
    fun timed_out frac =
blanchet@49333
   550
      Time.> (Timer.checkRealTimer timer, time_mult frac timeout)
blanchet@49336
   551
    val {fact_graph, ...} = mash_get ctxt
blanchet@49335
   552
    val new_facts =
blanchet@49335
   553
      facts |> filter_out (is_fact_in_graph fact_graph)
blanchet@49335
   554
            |> sort (thm_ord o pairself snd)
blanchet@49323
   555
  in
blanchet@49323
   556
    if null new_facts then
blanchet@49334
   557
      ""
blanchet@49323
   558
    else
blanchet@49319
   559
      let
blanchet@49323
   560
        val ths = facts |> map snd
blanchet@49330
   561
        val all_names =
blanchet@49333
   562
          ths |> filter_out (is_likely_tautology ctxt prover orf is_too_meta)
blanchet@49331
   563
              |> map (rpair () o Thm.get_name_hint)
blanchet@49331
   564
              |> Symtab.make
blanchet@49333
   565
        fun do_fact _ (accum as (_, true)) = accum
blanchet@49333
   566
          | do_fact ((_, (_, status)), th) ((parents, upds), false) =
blanchet@49333
   567
            let
blanchet@49333
   568
              val name = Thm.get_name_hint th
blanchet@49333
   569
              val feats = features_of ctxt prover thy status [prop_of th]
blanchet@49333
   570
              val deps = isabelle_dependencies_of all_names th
blanchet@49333
   571
              val upd = (name, parents, feats, deps)
blanchet@49333
   572
            in (([name], upd :: upds), timed_out pass1_learn_timeout_factor) end
blanchet@49336
   573
        val parents = parents_wrt_facts ctxt facts fact_graph
blanchet@49333
   574
        val ((_, upds), _) =
blanchet@49333
   575
          ((parents, []), false) |> fold do_fact new_facts |>> apsnd rev
blanchet@49333
   576
        val n = length upds
blanchet@49331
   577
        fun trans {thys, fact_graph} =
blanchet@49331
   578
          let
blanchet@49331
   579
            val mash_INIT_or_ADD =
blanchet@49331
   580
              if Graph.is_empty fact_graph then mash_INIT else mash_ADD
blanchet@49331
   581
            val (upds, fact_graph) =
blanchet@49331
   582
              ([], fact_graph) |> fold (update_fact_graph ctxt) upds
blanchet@49331
   583
          in
blanchet@49331
   584
            (mash_INIT_or_ADD ctxt overlord (rev upds);
blanchet@49331
   585
             {thys = thys |> add_thys_for thy,
blanchet@49331
   586
              fact_graph = fact_graph})
blanchet@49331
   587
          end
blanchet@49333
   588
      in
blanchet@49336
   589
        mash_map ctxt trans;
blanchet@49334
   590
        if verbose then
blanchet@49334
   591
          "Processed " ^ string_of_int n ^ " proof" ^ plural_s n ^
blanchet@49334
   592
          (if verbose then
blanchet@49334
   593
             " in " ^ string_from_time (Timer.checkRealTimer timer)
blanchet@49334
   594
           else
blanchet@49334
   595
             "") ^ "."
blanchet@49334
   596
        else
blanchet@49334
   597
          ""
blanchet@49333
   598
      end
blanchet@49323
   599
  end
blanchet@49319
   600
blanchet@49336
   601
fun mash_learn_proof ctxt ({provers, overlord, ...} : params) t facts used_ths =
blanchet@49331
   602
  let
blanchet@49331
   603
    val thy = Proof_Context.theory_of ctxt
blanchet@49333
   604
    val prover = hd provers
blanchet@49333
   605
    val name = ATP_Util.timestamp () ^ serial_string () (* fresh enough *)
blanchet@49333
   606
    val feats = features_of ctxt prover thy General [t]
blanchet@49331
   607
    val deps = used_ths |> map Thm.get_name_hint
blanchet@49331
   608
  in
blanchet@49336
   609
    mash_map ctxt (fn {thys, fact_graph} =>
blanchet@49324
   610
        let
blanchet@49336
   611
          val parents = parents_wrt_facts ctxt facts fact_graph
blanchet@49331
   612
          val upds = [(name, parents, feats, deps)]
blanchet@49331
   613
          val (upds, fact_graph) =
blanchet@49331
   614
            ([], fact_graph) |> fold (update_fact_graph ctxt) upds
blanchet@49324
   615
        in
blanchet@49331
   616
          mash_ADD ctxt overlord upds;
blanchet@49331
   617
          {thys = thys, fact_graph = fact_graph}
blanchet@49331
   618
        end)
blanchet@49331
   619
  end
blanchet@49264
   620
blanchet@49333
   621
(* The threshold should be large enough so that MaSh doesn't kick in for Auto
blanchet@49333
   622
   Sledgehammer and Try. *)
blanchet@49333
   623
val min_secs_for_learning = 15
blanchet@49333
   624
val short_learn_timeout_factor = 0.2
blanchet@49333
   625
val long_learn_timeout_factor = 4.0
blanchet@49333
   626
blanchet@49336
   627
fun relevant_facts ctxt (params as {learn, fact_filter, timeout, ...}) prover
blanchet@49336
   628
        max_facts ({add, only, ...} : fact_override) hyp_ts concl_t facts =
blanchet@49329
   629
  if not (subset (op =) (the_list fact_filter, fact_filters)) then
blanchet@49329
   630
    error ("Unknown fact filter: " ^ quote (the fact_filter) ^ ".")
blanchet@49329
   631
  else if only then
blanchet@49304
   632
    facts
blanchet@49336
   633
  else if max_facts <= 0 orelse null facts then
blanchet@49303
   634
    []
blanchet@49303
   635
  else
blanchet@49303
   636
    let
blanchet@49333
   637
      val thy = Proof_Context.theory_of ctxt
blanchet@49333
   638
      fun maybe_learn can_suggest =
blanchet@49336
   639
        if not learn orelse Async_Manager.has_running_threads MaShN then
blanchet@49334
   640
          ()
blanchet@49334
   641
        else if Time.toSeconds timeout >= min_secs_for_learning then
blanchet@49334
   642
          let
blanchet@49334
   643
            val factor =
blanchet@49334
   644
              if can_suggest then short_learn_timeout_factor
blanchet@49334
   645
              else long_learn_timeout_factor
blanchet@49334
   646
            val soft_timeout = time_mult factor timeout
blanchet@49334
   647
            val hard_timeout = time_mult 2.0 soft_timeout
blanchet@49334
   648
            val birth_time = Time.now ()
blanchet@49334
   649
            val death_time = Time.+ (birth_time, hard_timeout)
blanchet@49334
   650
            val desc = ("machine learner for Sledgehammer", "")
blanchet@49334
   651
          in
blanchet@49334
   652
            Async_Manager.launch MaShN birth_time death_time desc
blanchet@49334
   653
                (fn () =>
blanchet@49334
   654
                    (true, mash_learn_thy ctxt params thy soft_timeout facts))
blanchet@49334
   655
          end
blanchet@49333
   656
        else
blanchet@49333
   657
          ()
blanchet@49329
   658
      val fact_filter =
blanchet@49329
   659
        case fact_filter of
blanchet@49333
   660
          SOME ff =>
blanchet@49336
   661
          (if ff <> iterN then maybe_learn (mash_can_suggest_facts ctxt)
blanchet@49336
   662
           else (); ff)
blanchet@49333
   663
        | NONE =>
blanchet@49336
   664
          if mash_can_suggest_facts ctxt then (maybe_learn true; meshN)
blanchet@49333
   665
          else if mash_could_suggest_facts () then (maybe_learn false; iterN)
blanchet@49333
   666
          else iterN
blanchet@49303
   667
      val add_ths = Attrib.eval_thms ctxt add
blanchet@49307
   668
      fun prepend_facts ths accepts =
blanchet@49303
   669
        ((facts |> filter (member Thm.eq_thm_prop ths o snd)) @
blanchet@49307
   670
         (accepts |> filter_out (member Thm.eq_thm_prop ths o snd)))
blanchet@49308
   671
        |> take max_facts
blanchet@49329
   672
      fun iter () =
blanchet@49313
   673
        iterative_relevant_facts ctxt params prover max_facts NONE hyp_ts
blanchet@49313
   674
                                 concl_t facts
blanchet@49329
   675
      fun mash () =
blanchet@49335
   676
        mash_suggest_facts ctxt params prover max_facts hyp_ts concl_t facts
blanchet@49329
   677
      val mess =
blanchet@49335
   678
        [] |> (if fact_filter <> mashN then cons (iter (), []) else I)
blanchet@49329
   679
           |> (if fact_filter <> iterN then cons (mash ()) else I)
blanchet@49303
   680
    in
blanchet@49328
   681
      mesh_facts max_facts mess
blanchet@49303
   682
      |> not (null add_ths) ? prepend_facts add_ths
blanchet@49303
   683
    end
blanchet@49303
   684
blanchet@49334
   685
fun kill_learners () = Async_Manager.kill_threads MaShN "learner"
blanchet@49334
   686
fun running_learners () = Async_Manager.running_threads MaShN "learner"
blanchet@49334
   687
blanchet@49263
   688
end;