src/HOL/Tools/Sledgehammer/sledgehammer_atp_translate.ML
author blanchet
Thu, 12 May 2011 15:29:19 +0200
changeset 43618 c9552e617acc
parent 43615 c8b1d9ee3758
child 43619 b9d7df8c51c8
permissions -rw-r--r--
drop some type arguments to constants in unsound type systems + remove a few type systems that make no sense from the circulation
blanchet@40358
     1
(*  Title:      HOL/Tools/Sledgehammer/sledgehammer_atp_translate.ML
blanchet@38506
     2
    Author:     Fabian Immler, TU Muenchen
blanchet@38506
     3
    Author:     Makarius
blanchet@38506
     4
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@38506
     5
blanchet@39734
     6
Translation of HOL to FOL for Sledgehammer.
blanchet@38506
     7
*)
blanchet@38506
     8
blanchet@40249
     9
signature SLEDGEHAMMER_ATP_TRANSLATE =
blanchet@38506
    10
sig
blanchet@43088
    11
  type 'a fo_term = 'a ATP_Problem.fo_term
blanchet@43580
    12
  type formula_kind = ATP_Problem.formula_kind
blanchet@38506
    13
  type 'a problem = 'a ATP_Problem.problem
blanchet@43511
    14
  type locality = Sledgehammer_Filter.locality
blanchet@43484
    15
blanchet@43484
    16
  datatype polymorphism = Polymorphic | Monomorphic | Mangled_Monomorphic
blanchet@43484
    17
  datatype type_level =
blanchet@43484
    18
    All_Types | Nonmonotonic_Types | Finite_Types | Const_Arg_Types | No_Types
blanchet@43484
    19
blanchet@43484
    20
  datatype type_system =
blanchet@43587
    21
    Simple_Types of type_level |
blanchet@43484
    22
    Preds of polymorphism * type_level |
blanchet@43484
    23
    Tags of polymorphism * type_level
blanchet@43484
    24
blanchet@40358
    25
  type translated_formula
blanchet@38506
    26
blanchet@43517
    27
  val readable_names : bool Config.T
blanchet@40445
    28
  val fact_prefix : string
blanchet@38506
    29
  val conjecture_prefix : string
blanchet@43439
    30
  val predicator_base : string
blanchet@43415
    31
  val explicit_app_base : string
blanchet@43420
    32
  val type_pred_base : string
blanchet@43433
    33
  val tff_type_prefix : string
blanchet@43484
    34
  val type_sys_from_string : string -> type_system
blanchet@43484
    35
  val polymorphism_of_type_sys : type_system -> polymorphism
blanchet@43484
    36
  val level_of_type_sys : type_system -> type_level
blanchet@43484
    37
  val is_type_sys_virtually_sound : type_system -> bool
blanchet@43484
    38
  val is_type_sys_fairly_sound : type_system -> bool
blanchet@41384
    39
  val num_atp_type_args : theory -> type_system -> string -> int
blanchet@43413
    40
  val unmangled_const : string -> string * string fo_term list
blanchet@41336
    41
  val translate_atp_fact :
blanchet@43511
    42
    Proof.context -> bool -> (string * locality) * thm
blanchet@43511
    43
    -> translated_formula option * ((string * locality) * thm)
blanchet@40240
    44
  val prepare_atp_problem :
blanchet@43580
    45
    Proof.context -> formula_kind -> formula_kind -> type_system -> bool
blanchet@43580
    46
    -> term list -> term
blanchet@41339
    47
    -> (translated_formula option * ((string * 'a) * thm)) list
blanchet@43412
    48
    -> string problem * string Symtab.table * int * int
blanchet@43412
    49
       * (string * 'a) list vector
blanchet@41561
    50
  val atp_problem_weights : string problem -> (string * real) list
blanchet@38506
    51
end;
blanchet@38506
    52
blanchet@41388
    53
structure Sledgehammer_ATP_Translate : SLEDGEHAMMER_ATP_TRANSLATE =
blanchet@38506
    54
struct
blanchet@38506
    55
blanchet@38506
    56
open ATP_Problem
blanchet@39734
    57
open Metis_Translate
blanchet@38506
    58
open Sledgehammer_Util
blanchet@43511
    59
open Sledgehammer_Filter
blanchet@43511
    60
blanchet@43511
    61
(* experimental *)
blanchet@43511
    62
val generate_useful_info = false
blanchet@38506
    63
blanchet@43439
    64
(* Readable names are often much shorter, especially if types are mangled in
blanchet@43460
    65
   names. Also, the logic for generating legal SNARK sort names is only
blanchet@43460
    66
   implemented for readable names. Finally, readable names are, well, more
blanchet@43460
    67
   readable. For these reason, they are enabled by default. *)
blanchet@43517
    68
val readable_names =
blanchet@43517
    69
  Attrib.setup_config_bool @{binding sledgehammer_atp_readable_names} (K true)
blanchet@43439
    70
blanchet@43414
    71
val type_decl_prefix = "type_"
blanchet@43414
    72
val sym_decl_prefix = "sym_"
blanchet@40445
    73
val fact_prefix = "fact_"
blanchet@38506
    74
val conjecture_prefix = "conj_"
blanchet@38506
    75
val helper_prefix = "help_"
blanchet@43414
    76
val class_rel_clause_prefix = "crel_";
blanchet@38506
    77
val arity_clause_prefix = "arity_"
blanchet@40156
    78
val tfree_prefix = "tfree_"
blanchet@38506
    79
blanchet@43439
    80
val predicator_base = "hBOOL"
blanchet@43415
    81
val explicit_app_base = "hAPP"
blanchet@43413
    82
val type_pred_base = "is"
blanchet@43433
    83
val tff_type_prefix = "ty_"
blanchet@43402
    84
blanchet@43433
    85
fun make_tff_type s = tff_type_prefix ^ ascii_of s
blanchet@43402
    86
blanchet@38506
    87
(* Freshness almost guaranteed! *)
blanchet@38506
    88
val sledgehammer_weak_prefix = "Sledgehammer:"
blanchet@38506
    89
blanchet@43484
    90
datatype polymorphism = Polymorphic | Monomorphic | Mangled_Monomorphic
blanchet@43484
    91
datatype type_level =
blanchet@43484
    92
  All_Types | Nonmonotonic_Types | Finite_Types | Const_Arg_Types | No_Types
blanchet@43484
    93
blanchet@43484
    94
datatype type_system =
blanchet@43587
    95
  Simple_Types of type_level |
blanchet@43484
    96
  Preds of polymorphism * type_level |
blanchet@43484
    97
  Tags of polymorphism * type_level
blanchet@43484
    98
blanchet@43559
    99
fun try_unsuffixes ss s =
blanchet@43559
   100
  fold (fn s' => fn NONE => try (unsuffix s') s | some => some) ss NONE
blanchet@43559
   101
blanchet@43484
   102
fun type_sys_from_string s =
blanchet@43587
   103
  (case try (unprefix "poly_") s of
blanchet@43587
   104
     SOME s => (SOME Polymorphic, s)
blanchet@43484
   105
   | NONE =>
blanchet@43484
   106
     case try (unprefix "mono_") s of
blanchet@43587
   107
       SOME s => (SOME Monomorphic, s)
blanchet@43587
   108
     | NONE =>
blanchet@43587
   109
       case try (unprefix "mangled_") s of
blanchet@43587
   110
         SOME s => (SOME Mangled_Monomorphic, s)
blanchet@43587
   111
       | NONE => (NONE, s))
blanchet@43484
   112
  ||> (fn s =>
blanchet@43559
   113
          (* "_query" and "_bang" are for the ASCII-challenged Mirabelle. *)
blanchet@43559
   114
          case try_unsuffixes ["?", "_query"] s of
blanchet@43484
   115
            SOME s => (Nonmonotonic_Types, s)
blanchet@43484
   116
          | NONE =>
blanchet@43559
   117
            case try_unsuffixes ["!", "_bang"] s of
blanchet@43484
   118
              SOME s => (Finite_Types, s)
blanchet@43484
   119
            | NONE => (All_Types, s))
blanchet@43587
   120
  |> (fn (poly, (level, core)) =>
blanchet@43587
   121
         case (core, (poly, level)) of
blanchet@43587
   122
           ("simple_types", (NONE, level)) => Simple_Types level
blanchet@43618
   123
         | ("preds", (SOME Polymorphic, level)) =>
blanchet@43618
   124
           if level = All_Types then Preds (Polymorphic, level)
blanchet@43618
   125
           else raise Same.SAME
blanchet@43587
   126
         | ("preds", (SOME poly, level)) => Preds (poly, level)
blanchet@43618
   127
         | ("tags", (SOME Polymorphic, level)) =>
blanchet@43618
   128
           if level = All_Types orelse level = Finite_Types then
blanchet@43618
   129
             Tags (Polymorphic, level)
blanchet@43618
   130
           else
blanchet@43618
   131
             raise Same.SAME
blanchet@43587
   132
         | ("tags", (SOME poly, level)) => Tags (poly, level)
blanchet@43587
   133
         | ("args", (SOME poly, All_Types (* naja *))) =>
blanchet@43587
   134
           Preds (poly, Const_Arg_Types)
blanchet@43587
   135
         | ("erased", (NONE, All_Types (* naja *))) =>
blanchet@43587
   136
           Preds (Polymorphic, No_Types)
blanchet@43618
   137
         | _ => raise Same.SAME)
blanchet@43618
   138
  handle Same.SAME => error ("Unknown type system: " ^ quote s ^ ".")
blanchet@43484
   139
blanchet@43587
   140
fun polymorphism_of_type_sys (Simple_Types _) = Mangled_Monomorphic
blanchet@43484
   141
  | polymorphism_of_type_sys (Preds (poly, _)) = poly
blanchet@43484
   142
  | polymorphism_of_type_sys (Tags (poly, _)) = poly
blanchet@43484
   143
blanchet@43587
   144
fun level_of_type_sys (Simple_Types level) = level
blanchet@43484
   145
  | level_of_type_sys (Preds (_, level)) = level
blanchet@43484
   146
  | level_of_type_sys (Tags (_, level)) = level
blanchet@43484
   147
blanchet@43557
   148
fun is_type_level_virtually_sound level =
blanchet@43557
   149
  level = All_Types orelse level = Nonmonotonic_Types
blanchet@43484
   150
val is_type_sys_virtually_sound =
blanchet@43484
   151
  is_type_level_virtually_sound o level_of_type_sys
blanchet@43484
   152
blanchet@43484
   153
fun is_type_level_fairly_sound level =
blanchet@43484
   154
  is_type_level_virtually_sound level orelse level = Finite_Types
blanchet@43484
   155
val is_type_sys_fairly_sound = is_type_level_fairly_sound o level_of_type_sys
blanchet@43484
   156
blanchet@43557
   157
fun is_type_level_partial level =
blanchet@43557
   158
  level = Nonmonotonic_Types orelse level = Finite_Types
blanchet@43557
   159
blanchet@43444
   160
fun formula_map f (AQuant (q, xs, phi)) = AQuant (q, xs, formula_map f phi)
blanchet@43444
   161
  | formula_map f (AConn (c, phis)) = AConn (c, map (formula_map f) phis)
blanchet@43444
   162
  | formula_map f (AAtom tm) = AAtom (f tm)
blanchet@43444
   163
blanchet@43550
   164
fun formula_fold pos f =
blanchet@43547
   165
  let
blanchet@43547
   166
    fun aux pos (AQuant (_, _, phi)) = aux pos phi
blanchet@43550
   167
      | aux pos (AConn (ANot, [phi])) = aux (Option.map not pos) phi
blanchet@43547
   168
      | aux pos (AConn (AImplies, [phi1, phi2])) =
blanchet@43550
   169
        aux (Option.map not pos) phi1 #> aux pos phi2
blanchet@43550
   170
      | aux pos (AConn (AAnd, phis)) = fold (aux pos) phis
blanchet@43550
   171
      | aux pos (AConn (AOr, phis)) = fold (aux pos) phis
blanchet@43550
   172
      | aux _ (AConn (_, phis)) = fold (aux NONE) phis
blanchet@43547
   173
      | aux pos (AAtom tm) = f pos tm
blanchet@43550
   174
  in aux (SOME pos) end
blanchet@43444
   175
blanchet@40358
   176
type translated_formula =
blanchet@38991
   177
  {name: string,
blanchet@43511
   178
   locality: locality,
blanchet@43396
   179
   kind: formula_kind,
blanchet@43433
   180
   combformula: (name, typ, combterm) formula,
blanchet@43433
   181
   atomic_types: typ list}
blanchet@38506
   182
blanchet@43511
   183
fun update_combformula f ({name, locality, kind, combformula, atomic_types}
blanchet@43511
   184
                          : translated_formula) =
blanchet@43511
   185
  {name = name, locality = locality, kind = kind, combformula = f combformula,
blanchet@43433
   186
   atomic_types = atomic_types} : translated_formula
blanchet@43413
   187
blanchet@43429
   188
fun fact_lift f ({combformula, ...} : translated_formula) = f combformula
blanchet@43429
   189
blanchet@43443
   190
val boring_consts = [explicit_app_base, @{const_name Metis.fequal}]
blanchet@43443
   191
blanchet@43443
   192
fun should_omit_type_args type_sys s =
blanchet@43460
   193
  s <> type_pred_base andalso s <> type_tag_name andalso
blanchet@43460
   194
  (s = @{const_name HOL.eq} orelse level_of_type_sys type_sys = No_Types orelse
blanchet@43460
   195
   (case type_sys of
blanchet@43460
   196
      Tags (_, All_Types) => true
blanchet@43460
   197
    | _ => polymorphism_of_type_sys type_sys <> Mangled_Monomorphic andalso
blanchet@43460
   198
           member (op =) boring_consts s))
blanchet@43547
   199
blanchet@43618
   200
(* The Booleans indicate whether all type arguments should be kept. *)
blanchet@43618
   201
datatype type_arg_policy =
blanchet@43618
   202
  Explicit_Type_Args of bool |
blanchet@43618
   203
  Mangled_Type_Args of bool |
blanchet@43618
   204
  No_Type_Args
blanchet@41384
   205
blanchet@43618
   206
(* FIXME: Find out whether and when erasing the non-result type arguments is
blanchet@43618
   207
   sound. *)
blanchet@43460
   208
fun general_type_arg_policy type_sys =
blanchet@43460
   209
  if level_of_type_sys type_sys = No_Types then
blanchet@43460
   210
    No_Type_Args
blanchet@43460
   211
  else if polymorphism_of_type_sys type_sys = Mangled_Monomorphic then
blanchet@43618
   212
    Mangled_Type_Args (is_type_sys_virtually_sound type_sys)
blanchet@43460
   213
  else
blanchet@43618
   214
    Explicit_Type_Args (is_type_sys_virtually_sound type_sys)
blanchet@43434
   215
blanchet@43395
   216
fun type_arg_policy type_sys s =
blanchet@43443
   217
  if should_omit_type_args type_sys s then No_Type_Args
blanchet@43434
   218
  else general_type_arg_policy type_sys
blanchet@43088
   219
blanchet@41384
   220
fun num_atp_type_args thy type_sys s =
blanchet@43618
   221
  case type_arg_policy type_sys s of
blanchet@43618
   222
    Explicit_Type_Args keep_all =>
blanchet@43618
   223
    if keep_all then num_type_args thy s
blanchet@43618
   224
    else error "not implemented yet" (* FIXME *)
blanchet@43618
   225
  | _ => 0
blanchet@41384
   226
blanchet@43224
   227
fun atp_type_literals_for_types type_sys kind Ts =
blanchet@43460
   228
  if level_of_type_sys type_sys = No_Types then
blanchet@43224
   229
    []
blanchet@43224
   230
  else
blanchet@43224
   231
    Ts |> type_literals_for_types
blanchet@43224
   232
       |> filter (fn TyLitVar _ => kind <> Conjecture
blanchet@43224
   233
                   | TyLitFree _ => kind = Conjecture)
blanchet@41385
   234
blanchet@43580
   235
fun mk_anot phi = AConn (ANot, [phi])
blanchet@38506
   236
fun mk_aconn c phi1 phi2 = AConn (c, [phi1, phi2])
blanchet@43405
   237
fun mk_aconns c phis =
blanchet@43405
   238
  let val (phis', phi') = split_last phis in
blanchet@43405
   239
    fold_rev (mk_aconn c) phis' phi'
blanchet@43405
   240
  end
blanchet@38506
   241
fun mk_ahorn [] phi = phi
blanchet@43405
   242
  | mk_ahorn phis psi = AConn (AImplies, [mk_aconns AAnd phis, psi])
blanchet@43393
   243
fun mk_aquant _ [] phi = phi
blanchet@43393
   244
  | mk_aquant q xs (phi as AQuant (q', xs', phi')) =
blanchet@43393
   245
    if q = q' then AQuant (q, xs @ xs', phi') else AQuant (q, xs, phi)
blanchet@43393
   246
  | mk_aquant q xs phi = AQuant (q, xs, phi)
blanchet@38506
   247
blanchet@43393
   248
fun close_universally atom_vars phi =
blanchet@41393
   249
  let
blanchet@41393
   250
    fun formula_vars bounds (AQuant (_, xs, phi)) =
blanchet@43397
   251
        formula_vars (map fst xs @ bounds) phi
blanchet@41393
   252
      | formula_vars bounds (AConn (_, phis)) = fold (formula_vars bounds) phis
blanchet@43393
   253
      | formula_vars bounds (AAtom tm) =
blanchet@43397
   254
        union (op =) (atom_vars tm []
blanchet@43397
   255
                      |> filter_out (member (op =) bounds o fst))
blanchet@43393
   256
  in mk_aquant AForall (formula_vars [] phi []) phi end
blanchet@43393
   257
blanchet@43402
   258
fun combterm_vars (CombApp (tm1, tm2)) = fold combterm_vars [tm1, tm2]
blanchet@43393
   259
  | combterm_vars (CombConst _) = I
blanchet@43445
   260
  | combterm_vars (CombVar (name, T)) = insert (op =) (name, SOME T)
blanchet@43545
   261
fun close_combformula_universally phi = close_universally combterm_vars phi
blanchet@43393
   262
blanchet@43393
   263
fun term_vars (ATerm (name as (s, _), tms)) =
blanchet@43402
   264
  is_atp_variable s ? insert (op =) (name, NONE)
blanchet@43397
   265
  #> fold term_vars tms
blanchet@43545
   266
fun close_formula_universally phi = close_universally term_vars phi
blanchet@41393
   267
blanchet@43433
   268
fun fo_term_from_typ (Type (s, Ts)) =
blanchet@43433
   269
    ATerm (`make_fixed_type_const s, map fo_term_from_typ Ts)
blanchet@43433
   270
  | fo_term_from_typ (TFree (s, _)) =
blanchet@43433
   271
    ATerm (`make_fixed_type_var s, [])
blanchet@43433
   272
  | fo_term_from_typ (TVar ((x as (s, _)), _)) =
blanchet@43433
   273
    ATerm ((make_schematic_type_var x, s), [])
blanchet@43433
   274
blanchet@43433
   275
(* This shouldn't clash with anything else. *)
blanchet@43413
   276
val mangled_type_sep = "\000"
blanchet@43413
   277
blanchet@43433
   278
fun generic_mangled_type_name f (ATerm (name, [])) = f name
blanchet@43433
   279
  | generic_mangled_type_name f (ATerm (name, tys)) =
blanchet@43433
   280
    f name ^ "(" ^ commas (map (generic_mangled_type_name f) tys) ^ ")"
blanchet@43433
   281
val mangled_type_name =
blanchet@43433
   282
  fo_term_from_typ
blanchet@43433
   283
  #> (fn ty => (make_tff_type (generic_mangled_type_name fst ty),
blanchet@43433
   284
                generic_mangled_type_name snd ty))
blanchet@43413
   285
blanchet@43445
   286
fun generic_mangled_type_suffix f g Ts =
blanchet@43413
   287
  fold_rev (curry (op ^) o g o prefix mangled_type_sep
blanchet@43445
   288
            o generic_mangled_type_name f) Ts ""
blanchet@43433
   289
fun mangled_const_name T_args (s, s') =
blanchet@43433
   290
  let val ty_args = map fo_term_from_typ T_args in
blanchet@43433
   291
    (s ^ generic_mangled_type_suffix fst ascii_of ty_args,
blanchet@43433
   292
     s' ^ generic_mangled_type_suffix snd I ty_args)
blanchet@43433
   293
  end
blanchet@43413
   294
blanchet@43413
   295
val parse_mangled_ident =
blanchet@43413
   296
  Scan.many1 (not o member (op =) ["(", ")", ","]) >> implode
blanchet@43413
   297
blanchet@43413
   298
fun parse_mangled_type x =
blanchet@43413
   299
  (parse_mangled_ident
blanchet@43413
   300
   -- Scan.optional ($$ "(" |-- Scan.optional parse_mangled_types [] --| $$ ")")
blanchet@43413
   301
                    [] >> ATerm) x
blanchet@43413
   302
and parse_mangled_types x =
blanchet@43413
   303
  (parse_mangled_type ::: Scan.repeat ($$ "," |-- parse_mangled_type)) x
blanchet@43413
   304
blanchet@43413
   305
fun unmangled_type s =
blanchet@43413
   306
  s |> suffix ")" |> raw_explode
blanchet@43413
   307
    |> Scan.finite Symbol.stopper
blanchet@43413
   308
           (Scan.error (!! (fn _ => raise Fail ("unrecognized mangled type " ^
blanchet@43413
   309
                                                quote s)) parse_mangled_type))
blanchet@43413
   310
    |> fst
blanchet@43413
   311
blanchet@43432
   312
val unmangled_const_name = space_explode mangled_type_sep #> hd
blanchet@43413
   313
fun unmangled_const s =
blanchet@43413
   314
  let val ss = space_explode mangled_type_sep s in
blanchet@43413
   315
    (hd ss, map unmangled_type (tl ss))
blanchet@43413
   316
  end
blanchet@43413
   317
blanchet@43545
   318
fun introduce_proxies tm =
blanchet@43439
   319
  let
blanchet@43439
   320
    fun aux top_level (CombApp (tm1, tm2)) =
blanchet@43439
   321
        CombApp (aux top_level tm1, aux false tm2)
blanchet@43445
   322
      | aux top_level (CombConst (name as (s, s'), T, T_args)) =
blanchet@43441
   323
        (case proxify_const s of
blanchet@43439
   324
           SOME proxy_base =>
blanchet@43439
   325
           if top_level then
blanchet@43439
   326
             (case s of
blanchet@43439
   327
                "c_False" => (tptp_false, s')
blanchet@43439
   328
              | "c_True" => (tptp_true, s')
blanchet@43439
   329
              | _ => name, [])
blanchet@43440
   330
           else
blanchet@43445
   331
             (proxy_base |>> prefix const_prefix, T_args)
blanchet@43445
   332
          | NONE => (name, T_args))
blanchet@43445
   333
        |> (fn (name, T_args) => CombConst (name, T, T_args))
blanchet@43439
   334
      | aux _ tm = tm
blanchet@43545
   335
  in aux true tm end
blanchet@43439
   336
blanchet@43433
   337
fun combformula_from_prop thy eq_as_iff =
blanchet@38506
   338
  let
blanchet@43439
   339
    fun do_term bs t atomic_types =
blanchet@41388
   340
      combterm_from_term thy bs (Envir.eta_contract t)
blanchet@43439
   341
      |>> (introduce_proxies #> AAtom)
blanchet@43439
   342
      ||> union (op =) atomic_types
blanchet@38506
   343
    fun do_quant bs q s T t' =
blanchet@38743
   344
      let val s = Name.variant (map fst bs) s in
blanchet@38743
   345
        do_formula ((s, T) :: bs) t'
blanchet@43433
   346
        #>> mk_aquant q [(`make_bound_var s, SOME T)]
blanchet@38743
   347
      end
blanchet@38506
   348
    and do_conn bs c t1 t2 =
blanchet@38506
   349
      do_formula bs t1 ##>> do_formula bs t2
blanchet@43402
   350
      #>> uncurry (mk_aconn c)
blanchet@38506
   351
    and do_formula bs t =
blanchet@38506
   352
      case t of
blanchet@43402
   353
        @{const Not} $ t1 => do_formula bs t1 #>> mk_anot
blanchet@38506
   354
      | Const (@{const_name All}, _) $ Abs (s, T, t') =>
blanchet@38506
   355
        do_quant bs AForall s T t'
blanchet@38506
   356
      | Const (@{const_name Ex}, _) $ Abs (s, T, t') =>
blanchet@38506
   357
        do_quant bs AExists s T t'
haftmann@39028
   358
      | @{const HOL.conj} $ t1 $ t2 => do_conn bs AAnd t1 t2
haftmann@39028
   359
      | @{const HOL.disj} $ t1 $ t2 => do_conn bs AOr t1 t2
haftmann@39019
   360
      | @{const HOL.implies} $ t1 $ t2 => do_conn bs AImplies t1 t2
haftmann@39093
   361
      | Const (@{const_name HOL.eq}, Type (_, [@{typ bool}, _])) $ t1 $ t2 =>
blanchet@41388
   362
        if eq_as_iff then do_conn bs AIff t1 t2 else do_term bs t
blanchet@41388
   363
      | _ => do_term bs t
blanchet@38506
   364
  in do_formula [] end
blanchet@38506
   365
blanchet@43615
   366
fun presimplify_term ctxt =
blanchet@43615
   367
  Skip_Proof.make_thm (Proof_Context.theory_of ctxt)
blanchet@43615
   368
  #> Meson.presimplify ctxt
blanchet@43615
   369
  #> prop_of
blanchet@38506
   370
wenzelm@41739
   371
fun concealed_bound_name j = sledgehammer_weak_prefix ^ string_of_int j
blanchet@38506
   372
fun conceal_bounds Ts t =
blanchet@38506
   373
  subst_bounds (map (Free o apfst concealed_bound_name)
blanchet@38506
   374
                    (0 upto length Ts - 1 ~~ Ts), t)
blanchet@38506
   375
fun reveal_bounds Ts =
blanchet@38506
   376
  subst_atomic (map (fn (j, T) => (Free (concealed_bound_name j, T), Bound j))
blanchet@38506
   377
                    (0 upto length Ts - 1 ~~ Ts))
blanchet@38506
   378
blanchet@43612
   379
fun extensionalize_term ctxt t =
blanchet@43612
   380
  let val thy = Proof_Context.theory_of ctxt in
blanchet@43612
   381
    t |> cterm_of thy |> Meson.extensionalize_conv ctxt
blanchet@43612
   382
      |> prop_of |> Logic.dest_equals |> snd
blanchet@43612
   383
  end
blanchet@38831
   384
blanchet@38506
   385
fun introduce_combinators_in_term ctxt kind t =
wenzelm@43232
   386
  let val thy = Proof_Context.theory_of ctxt in
blanchet@38716
   387
    if Meson.is_fol_term thy t then
blanchet@38716
   388
      t
blanchet@38716
   389
    else
blanchet@38716
   390
      let
blanchet@38716
   391
        fun aux Ts t =
blanchet@38716
   392
          case t of
blanchet@38716
   393
            @{const Not} $ t1 => @{const Not} $ aux Ts t1
blanchet@38716
   394
          | (t0 as Const (@{const_name All}, _)) $ Abs (s, T, t') =>
blanchet@38716
   395
            t0 $ Abs (s, T, aux (T :: Ts) t')
blanchet@38890
   396
          | (t0 as Const (@{const_name All}, _)) $ t1 =>
blanchet@38890
   397
            aux Ts (t0 $ eta_expand Ts t1 1)
blanchet@38716
   398
          | (t0 as Const (@{const_name Ex}, _)) $ Abs (s, T, t') =>
blanchet@38716
   399
            t0 $ Abs (s, T, aux (T :: Ts) t')
blanchet@38890
   400
          | (t0 as Const (@{const_name Ex}, _)) $ t1 =>
blanchet@38890
   401
            aux Ts (t0 $ eta_expand Ts t1 1)
haftmann@39028
   402
          | (t0 as @{const HOL.conj}) $ t1 $ t2 => t0 $ aux Ts t1 $ aux Ts t2
haftmann@39028
   403
          | (t0 as @{const HOL.disj}) $ t1 $ t2 => t0 $ aux Ts t1 $ aux Ts t2
haftmann@39019
   404
          | (t0 as @{const HOL.implies}) $ t1 $ t2 => t0 $ aux Ts t1 $ aux Ts t2
haftmann@39093
   405
          | (t0 as Const (@{const_name HOL.eq}, Type (_, [@{typ bool}, _])))
blanchet@38716
   406
              $ t1 $ t2 =>
blanchet@38716
   407
            t0 $ aux Ts t1 $ aux Ts t2
blanchet@38716
   408
          | _ => if not (exists_subterm (fn Abs _ => true | _ => false) t) then
blanchet@38716
   409
                   t
blanchet@38716
   410
                 else
blanchet@38716
   411
                   t |> conceal_bounds Ts
blanchet@38716
   412
                     |> Envir.eta_contract
blanchet@38716
   413
                     |> cterm_of thy
blanchet@40071
   414
                     |> Meson_Clausify.introduce_combinators_in_cterm
blanchet@38716
   415
                     |> prop_of |> Logic.dest_equals |> snd
blanchet@38716
   416
                     |> reveal_bounds Ts
blanchet@39616
   417
        val (t, ctxt') = Variable.import_terms true [t] ctxt |>> the_single
blanchet@38716
   418
      in t |> aux [] |> singleton (Variable.export_terms ctxt' ctxt) end
blanchet@38716
   419
      handle THM _ =>
blanchet@38716
   420
             (* A type variable of sort "{}" will make abstraction fail. *)
blanchet@38836
   421
             if kind = Conjecture then HOLogic.false_const
blanchet@38836
   422
             else HOLogic.true_const
blanchet@38716
   423
  end
blanchet@38506
   424
blanchet@38506
   425
(* Metis's use of "resolve_tac" freezes the schematic variables. We simulate the
blanchet@43224
   426
   same in Sledgehammer to prevent the discovery of unreplayable proofs. *)
blanchet@38506
   427
fun freeze_term t =
blanchet@38506
   428
  let
blanchet@38506
   429
    fun aux (t $ u) = aux t $ aux u
blanchet@38506
   430
      | aux (Abs (s, T, t)) = Abs (s, T, aux t)
blanchet@38506
   431
      | aux (Var ((s, i), T)) =
blanchet@38506
   432
        Free (sledgehammer_weak_prefix ^ s ^ "_" ^ string_of_int i, T)
blanchet@38506
   433
      | aux t = t
blanchet@38506
   434
  in t |> exists_subterm is_Var t ? aux end
blanchet@38506
   435
blanchet@40445
   436
(* making fact and conjecture formulas *)
blanchet@43511
   437
fun make_formula ctxt eq_as_iff presimp name loc kind t =
blanchet@38506
   438
  let
wenzelm@43232
   439
    val thy = Proof_Context.theory_of ctxt
blanchet@38831
   440
    val t = t |> Envir.beta_eta_contract
blanchet@38890
   441
              |> transform_elim_term
blanchet@41459
   442
              |> Object_Logic.atomize_term thy
blanchet@43434
   443
    val need_trueprop = (fastype_of t = @{typ bool})
blanchet@38890
   444
    val t = t |> need_trueprop ? HOLogic.mk_Trueprop
blanchet@43607
   445
              |> Raw_Simplifier.rewrite_term thy
blanchet@43607
   446
                     (Meson.unfold_set_const_simps ctxt) []
blanchet@43612
   447
              |> extensionalize_term ctxt
blanchet@43615
   448
              |> presimp ? presimplify_term ctxt
blanchet@38506
   449
              |> perhaps (try (HOLogic.dest_Trueprop))
blanchet@38506
   450
              |> introduce_combinators_in_term ctxt kind
blanchet@38836
   451
              |> kind <> Axiom ? freeze_term
blanchet@43433
   452
    val (combformula, atomic_types) =
blanchet@43433
   453
      combformula_from_prop thy eq_as_iff t []
blanchet@38506
   454
  in
blanchet@43511
   455
    {name = name, locality = loc, kind = kind, combformula = combformula,
blanchet@43433
   456
     atomic_types = atomic_types}
blanchet@38506
   457
  end
blanchet@38506
   458
blanchet@43511
   459
fun make_fact ctxt keep_trivial eq_as_iff presimp ((name, loc), t) =
blanchet@43511
   460
  case (keep_trivial, make_formula ctxt eq_as_iff presimp name loc Axiom t) of
blanchet@42861
   461
    (false, {combformula = AAtom (CombConst (("c_True", _), _, _)), ...}) =>
blanchet@42861
   462
    NONE
blanchet@42861
   463
  | (_, formula) => SOME formula
blanchet@43432
   464
blanchet@43580
   465
fun make_conjecture ctxt prem_kind ts =
blanchet@38836
   466
  let val last = length ts - 1 in
blanchet@43580
   467
    map2 (fn j => fn t =>
blanchet@43580
   468
             let
blanchet@43580
   469
               val (kind, maybe_negate) =
blanchet@43580
   470
                 if j = last then
blanchet@43580
   471
                   (Conjecture, I)
blanchet@43580
   472
                 else
blanchet@43580
   473
                   (prem_kind,
blanchet@43580
   474
                    if prem_kind = Conjecture then update_combformula mk_anot
blanchet@43580
   475
                    else I)
blanchet@43580
   476
              in
blanchet@43580
   477
                make_formula ctxt true true (string_of_int j) Chained kind t
blanchet@43580
   478
                |> maybe_negate
blanchet@43580
   479
              end)
blanchet@38836
   480
         (0 upto last) ts
blanchet@38836
   481
  end
blanchet@38506
   482
blanchet@43552
   483
(** Finite and infinite type inference **)
blanchet@43552
   484
blanchet@43552
   485
(* Finite types such as "unit", "bool", "bool * bool", and "bool => bool" are
blanchet@43552
   486
   dangerous because their "exhaust" properties can easily lead to unsound ATP
blanchet@43552
   487
   proofs. On the other hand, all HOL infinite types can be given the same
blanchet@43552
   488
   models in first-order logic (via Löwenheim-Skolem). *)
blanchet@43552
   489
blanchet@43552
   490
fun should_encode_type _ _ All_Types _ = true
blanchet@43552
   491
  | should_encode_type ctxt _ Finite_Types T = is_type_surely_finite ctxt T
blanchet@43552
   492
  | should_encode_type _ nonmono_Ts Nonmonotonic_Types T =
blanchet@43552
   493
    exists (curry Type.raw_instance T) nonmono_Ts
blanchet@43552
   494
  | should_encode_type _ _ _ _ = false
blanchet@43552
   495
blanchet@43552
   496
fun should_predicate_on_type ctxt nonmono_Ts (Preds (_, level)) T =
blanchet@43552
   497
    should_encode_type ctxt nonmono_Ts level T
blanchet@43552
   498
  | should_predicate_on_type _ _ _ _ = false
blanchet@43552
   499
blanchet@43552
   500
fun should_tag_with_type ctxt nonmono_Ts (Tags (_, level)) T =
blanchet@43552
   501
    should_encode_type ctxt nonmono_Ts level T
blanchet@43552
   502
  | should_tag_with_type _ _ _ _ = false
blanchet@43552
   503
blanchet@43552
   504
val homo_infinite_T = @{typ ind} (* any infinite type *)
blanchet@43552
   505
blanchet@43552
   506
fun homogenized_type ctxt nonmono_Ts level T =
blanchet@43552
   507
  if should_encode_type ctxt nonmono_Ts level T then T else homo_infinite_T
blanchet@43552
   508
blanchet@43444
   509
(** "hBOOL" and "hAPP" **)
blanchet@41561
   510
blanchet@43445
   511
type sym_info =
blanchet@43434
   512
  {pred_sym : bool, min_ary : int, max_ary : int, typ : typ option}
blanchet@43434
   513
blanchet@43445
   514
fun add_combterm_syms_to_table explicit_apply =
blanchet@43429
   515
  let
blanchet@43429
   516
    fun aux top_level tm =
blanchet@43429
   517
      let val (head, args) = strip_combterm_comb tm in
blanchet@43429
   518
        (case head of
blanchet@43434
   519
           CombConst ((s, _), T, _) =>
blanchet@43429
   520
           if String.isPrefix bound_var_prefix s then
blanchet@43429
   521
             I
blanchet@43429
   522
           else
blanchet@43434
   523
             let val ary = length args in
blanchet@43429
   524
               Symtab.map_default
blanchet@43429
   525
                   (s, {pred_sym = true,
blanchet@43434
   526
                        min_ary = if explicit_apply then 0 else ary,
blanchet@43434
   527
                        max_ary = 0, typ = SOME T})
blanchet@43434
   528
                   (fn {pred_sym, min_ary, max_ary, typ} =>
blanchet@43429
   529
                       {pred_sym = pred_sym andalso top_level,
blanchet@43434
   530
                        min_ary = Int.min (ary, min_ary),
blanchet@43434
   531
                        max_ary = Int.max (ary, max_ary),
blanchet@43434
   532
                        typ = if typ = SOME T then typ else NONE})
blanchet@43429
   533
            end
blanchet@43429
   534
         | _ => I)
blanchet@43429
   535
        #> fold (aux false) args
blanchet@43429
   536
      end
blanchet@43429
   537
  in aux true end
blanchet@43545
   538
fun add_fact_syms_to_table explicit_apply =
blanchet@43550
   539
  fact_lift (formula_fold true (K (add_combterm_syms_to_table explicit_apply)))
blanchet@38506
   540
blanchet@43546
   541
val default_sym_table_entries : (string * sym_info) list =
blanchet@43434
   542
  [("equal", {pred_sym = true, min_ary = 2, max_ary = 2, typ = NONE}),
blanchet@43439
   543
   (make_fixed_const predicator_base,
blanchet@43434
   544
    {pred_sym = true, min_ary = 1, max_ary = 1, typ = NONE})] @
blanchet@43439
   545
  ([tptp_false, tptp_true]
blanchet@43434
   546
   |> map (rpair {pred_sym = true, min_ary = 0, max_ary = 0, typ = NONE}))
blanchet@41388
   547
blanchet@43415
   548
fun sym_table_for_facts explicit_apply facts =
blanchet@43439
   549
  Symtab.empty |> fold Symtab.default default_sym_table_entries
blanchet@43445
   550
               |> fold (add_fact_syms_to_table explicit_apply) facts
blanchet@38506
   551
blanchet@43429
   552
fun min_arity_of sym_tab s =
blanchet@43429
   553
  case Symtab.lookup sym_tab s of
blanchet@43445
   554
    SOME ({min_ary, ...} : sym_info) => min_ary
blanchet@43429
   555
  | NONE =>
blanchet@43429
   556
    case strip_prefix_and_unascii const_prefix s of
blanchet@43418
   557
      SOME s =>
blanchet@43441
   558
      let val s = s |> unmangled_const_name |> invert_const in
blanchet@43439
   559
        if s = predicator_base then 1
blanchet@43418
   560
        else if s = explicit_app_base then 2
blanchet@43418
   561
        else if s = type_pred_base then 1
blanchet@43428
   562
        else 0
blanchet@43418
   563
      end
blanchet@38506
   564
    | NONE => 0
blanchet@38506
   565
blanchet@38506
   566
(* True if the constant ever appears outside of the top-level position in
blanchet@38506
   567
   literals, or if it appears with different arities (e.g., because of different
blanchet@38506
   568
   type instantiations). If false, the constant always receives all of its
blanchet@38506
   569
   arguments and is used as a predicate. *)
blanchet@43429
   570
fun is_pred_sym sym_tab s =
blanchet@43429
   571
  case Symtab.lookup sym_tab s of
blanchet@43445
   572
    SOME ({pred_sym, min_ary, max_ary, ...} : sym_info) =>
blanchet@43445
   573
    pred_sym andalso min_ary = max_ary
blanchet@43429
   574
  | NONE => false
blanchet@38506
   575
blanchet@43439
   576
val predicator_combconst =
blanchet@43439
   577
  CombConst (`make_fixed_const predicator_base, @{typ "bool => bool"}, [])
blanchet@43439
   578
fun predicator tm = CombApp (predicator_combconst, tm)
blanchet@38506
   579
blanchet@43439
   580
fun introduce_predicators_in_combterm sym_tab tm =
blanchet@43413
   581
  case strip_combterm_comb tm of
blanchet@43413
   582
    (CombConst ((s, _), _, _), _) =>
blanchet@43439
   583
    if is_pred_sym sym_tab s then tm else predicator tm
blanchet@43439
   584
  | _ => predicator tm
blanchet@38506
   585
blanchet@43415
   586
fun list_app head args = fold (curry (CombApp o swap)) args head
blanchet@38506
   587
blanchet@43415
   588
fun explicit_app arg head =
blanchet@43415
   589
  let
blanchet@43433
   590
    val head_T = combtyp_of head
blanchet@43563
   591
    val (arg_T, res_T) = dest_funT head_T
blanchet@43415
   592
    val explicit_app =
blanchet@43433
   593
      CombConst (`make_fixed_const explicit_app_base, head_T --> head_T,
blanchet@43563
   594
                 [arg_T, res_T])
blanchet@43415
   595
  in list_app explicit_app [head, arg] end
blanchet@43415
   596
fun list_explicit_app head args = fold explicit_app args head
blanchet@43415
   597
blanchet@43436
   598
fun introduce_explicit_apps_in_combterm sym_tab =
blanchet@43415
   599
  let
blanchet@43415
   600
    fun aux tm =
blanchet@43415
   601
      case strip_combterm_comb tm of
blanchet@43415
   602
        (head as CombConst ((s, _), _, _), args) =>
blanchet@43415
   603
        args |> map aux
blanchet@43428
   604
             |> chop (min_arity_of sym_tab s)
blanchet@43415
   605
             |>> list_app head
blanchet@43415
   606
             |-> list_explicit_app
blanchet@43415
   607
      | (head, args) => list_explicit_app head (map aux args)
blanchet@43415
   608
  in aux end
blanchet@43415
   609
blanchet@43618
   610
fun chop_fun 0 T = ([], T)
blanchet@43618
   611
  | chop_fun n (Type (@{type_name fun}, [dom_T, ran_T])) =
blanchet@43618
   612
    chop_fun (n - 1) ran_T |>> cons dom_T
blanchet@43618
   613
  | chop_fun _ _ = raise Fail "unexpected non-function"
blanchet@43618
   614
blanchet@43618
   615
fun filter_type_args thy s arity T_args =
blanchet@43444
   616
  let
blanchet@43618
   617
    val U = s |> Sign.the_const_type thy (* may throw "TYPE" *)
blanchet@43618
   618
    val res_U = U |> chop_fun arity |> snd
blanchet@43618
   619
    val res_U_vars = Term.add_tvarsT res_U []
blanchet@43618
   620
    val U_args = (s, U) |> Sign.const_typargs thy
blanchet@43618
   621
  in
blanchet@43618
   622
    U_args ~~ T_args
blanchet@43618
   623
    |> map_filter (fn (U, T) =>
blanchet@43618
   624
                      if member (op =) res_U_vars (dest_TVar U) then SOME T
blanchet@43618
   625
                      else NONE)
blanchet@43618
   626
  end
blanchet@43618
   627
  handle TYPE _ => T_args
blanchet@43618
   628
blanchet@43618
   629
fun enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys =
blanchet@43618
   630
  let
blanchet@43618
   631
    val thy = Proof_Context.theory_of ctxt
blanchet@43618
   632
    fun aux arity (CombApp (tm1, tm2)) =
blanchet@43618
   633
        CombApp (aux (arity + 1) tm1, aux 0 tm2)
blanchet@43618
   634
      | aux arity (CombConst (name as (s, _), T, T_args)) =
blanchet@43571
   635
        let
blanchet@43571
   636
          val level = level_of_type_sys type_sys
blanchet@43571
   637
          val (T, T_args) =
blanchet@43571
   638
            (* Aggressively merge most "hAPPs" if the type system is unsound
blanchet@43571
   639
               anyway, by distinguishing overloads only on the homogenized
blanchet@43571
   640
               result type. *)
blanchet@43571
   641
            if s = const_prefix ^ explicit_app_base andalso
blanchet@43591
   642
               length T_args = 2 andalso
blanchet@43571
   643
               not (is_type_sys_virtually_sound type_sys) then
blanchet@43571
   644
              T_args |> map (homogenized_type ctxt nonmono_Ts level)
blanchet@43571
   645
                     |> (fn Ts => let val T = hd Ts --> nth Ts 1 in
blanchet@43618
   646
                                    (T --> T, tl Ts) (* ### FIXME: need tl? *)
blanchet@43571
   647
                                  end)
blanchet@43571
   648
            else
blanchet@43571
   649
              (T, T_args)
blanchet@43571
   650
        in
blanchet@43571
   651
          (case strip_prefix_and_unascii const_prefix s of
blanchet@43571
   652
             NONE => (name, T_args)
blanchet@43571
   653
           | SOME s'' =>
blanchet@43618
   654
             let
blanchet@43618
   655
               val s'' = invert_const s''
blanchet@43618
   656
               fun filtered_T_args true = T_args
blanchet@43618
   657
                 | filtered_T_args false = filter_type_args thy s'' arity T_args
blanchet@43618
   658
             in
blanchet@43571
   659
               case type_arg_policy type_sys s'' of
blanchet@43618
   660
                 Explicit_Type_Args keep_all => (name, filtered_T_args keep_all)
blanchet@43618
   661
               | Mangled_Type_Args keep_all =>
blanchet@43618
   662
                 (mangled_const_name (filtered_T_args keep_all) name, [])
blanchet@43618
   663
               | No_Type_Args => (name, [])
blanchet@43571
   664
             end)
blanchet@43571
   665
          |> (fn (name, T_args) => CombConst (name, T, T_args))
blanchet@43571
   666
        end
blanchet@43618
   667
      | aux _ tm = tm
blanchet@43618
   668
  in aux 0 end
blanchet@43444
   669
blanchet@43571
   670
fun repair_combterm ctxt nonmono_Ts type_sys sym_tab =
blanchet@43436
   671
  introduce_explicit_apps_in_combterm sym_tab
blanchet@43439
   672
  #> introduce_predicators_in_combterm sym_tab
blanchet@43618
   673
  #> enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys
blanchet@43571
   674
fun repair_fact ctxt nonmono_Ts type_sys sym_tab =
blanchet@43571
   675
  update_combformula (formula_map
blanchet@43571
   676
      (repair_combterm ctxt nonmono_Ts type_sys sym_tab))
blanchet@43444
   677
blanchet@43444
   678
(** Helper facts **)
blanchet@43444
   679
blanchet@43444
   680
fun ti_ti_helper_fact () =
blanchet@43444
   681
  let
blanchet@43444
   682
    fun var s = ATerm (`I s, [])
blanchet@43460
   683
    fun tag tm = ATerm (`make_fixed_const type_tag_name, [var "X", tm])
blanchet@43444
   684
  in
blanchet@43483
   685
    Formula (helper_prefix ^ "ti_ti", Axiom,
blanchet@43444
   686
             AAtom (ATerm (`I "equal", [tag (tag (var "Y")), tag (var "Y")]))
blanchet@43444
   687
             |> close_formula_universally, NONE, NONE)
blanchet@43444
   688
  end
blanchet@43444
   689
blanchet@43445
   690
fun helper_facts_for_sym ctxt type_sys (s, {typ, ...} : sym_info) =
blanchet@43444
   691
  case strip_prefix_and_unascii const_prefix s of
blanchet@43444
   692
    SOME mangled_s =>
blanchet@43444
   693
    let
blanchet@43444
   694
      val thy = Proof_Context.theory_of ctxt
blanchet@43444
   695
      val unmangled_s = mangled_s |> unmangled_const_name
blanchet@43450
   696
      fun dub_and_inst c needs_some_types (th, j) =
blanchet@43450
   697
        ((c ^ "_" ^ string_of_int j ^ (if needs_some_types then "T" else ""),
blanchet@43511
   698
          Chained),
blanchet@43444
   699
         let val t = th |> prop_of in
blanchet@43618
   700
           t |> ((case general_type_arg_policy type_sys of
blanchet@43618
   701
                    Mangled_Type_Args _ => true
blanchet@43618
   702
                  | _ => false) andalso
blanchet@43444
   703
                 not (null (Term.hidden_polymorphism t)))
blanchet@43444
   704
                ? (case typ of
blanchet@43444
   705
                     SOME T => specialize_type thy (invert_const unmangled_s, T)
blanchet@43444
   706
                   | NONE => I)
blanchet@43444
   707
         end)
blanchet@43444
   708
      fun make_facts eq_as_iff =
blanchet@43444
   709
        map_filter (make_fact ctxt false eq_as_iff false)
blanchet@43460
   710
      val has_some_types = is_type_sys_fairly_sound type_sys
blanchet@43444
   711
    in
blanchet@43444
   712
      metis_helpers
blanchet@43450
   713
      |> maps (fn (metis_s, (needs_some_types, ths)) =>
blanchet@43444
   714
                  if metis_s <> unmangled_s orelse
blanchet@43460
   715
                     (needs_some_types andalso not has_some_types) then
blanchet@43444
   716
                    []
blanchet@43444
   717
                  else
blanchet@43444
   718
                    ths ~~ (1 upto length ths)
blanchet@43450
   719
                    |> map (dub_and_inst mangled_s needs_some_types)
blanchet@43450
   720
                    |> make_facts (not needs_some_types))
blanchet@43444
   721
    end
blanchet@43444
   722
  | NONE => []
blanchet@43444
   723
fun helper_facts_for_sym_table ctxt type_sys sym_tab =
blanchet@43444
   724
  Symtab.fold_rev (append o helper_facts_for_sym ctxt type_sys) sym_tab []
blanchet@43444
   725
blanchet@43444
   726
fun translate_atp_fact ctxt keep_trivial =
blanchet@43444
   727
  `(make_fact ctxt keep_trivial true true o apsnd prop_of)
blanchet@43444
   728
blanchet@43580
   729
fun translate_formulas ctxt prem_kind type_sys hyp_ts concl_t rich_facts =
blanchet@43444
   730
  let
blanchet@43444
   731
    val thy = Proof_Context.theory_of ctxt
blanchet@43444
   732
    val fact_ts = map (prop_of o snd o snd) rich_facts
blanchet@43444
   733
    val (facts, fact_names) =
blanchet@43444
   734
      rich_facts
blanchet@43444
   735
      |> map_filter (fn (NONE, _) => NONE
blanchet@43444
   736
                      | (SOME fact, (name, _)) => SOME (fact, name))
blanchet@43444
   737
      |> ListPair.unzip
blanchet@43444
   738
    (* Remove existing facts from the conjecture, as this can dramatically
blanchet@43444
   739
       boost an ATP's performance (for some reason). *)
blanchet@43444
   740
    val hyp_ts = hyp_ts |> filter_out (member (op aconv) fact_ts)
blanchet@43444
   741
    val goal_t = Logic.list_implies (hyp_ts, concl_t)
blanchet@43444
   742
    val all_ts = goal_t :: fact_ts
blanchet@43444
   743
    val subs = tfree_classes_of_terms all_ts
blanchet@43444
   744
    val supers = tvar_classes_of_terms all_ts
blanchet@43444
   745
    val tycons = type_consts_of_terms thy all_ts
blanchet@43580
   746
    val conjs = make_conjecture ctxt prem_kind (hyp_ts @ [concl_t])
blanchet@43444
   747
    val (supers', arity_clauses) =
blanchet@43460
   748
      if level_of_type_sys type_sys = No_Types then ([], [])
blanchet@43444
   749
      else make_arity_clauses thy tycons supers
blanchet@43444
   750
    val class_rel_clauses = make_class_rel_clauses thy subs supers'
blanchet@43444
   751
  in
blanchet@43444
   752
    (fact_names |> map single, (conjs, facts, class_rel_clauses, arity_clauses))
blanchet@43444
   753
  end
blanchet@43444
   754
blanchet@43444
   755
fun fo_literal_from_type_literal (TyLitVar (class, name)) =
blanchet@43444
   756
    (true, ATerm (class, [ATerm (name, [])]))
blanchet@43444
   757
  | fo_literal_from_type_literal (TyLitFree (class, name)) =
blanchet@43444
   758
    (true, ATerm (class, [ATerm (name, [])]))
blanchet@43444
   759
blanchet@43444
   760
fun formula_from_fo_literal (pos, t) = AAtom t |> not pos ? mk_anot
blanchet@43444
   761
blanchet@43571
   762
fun type_pred_combatom ctxt nonmono_Ts type_sys T tm =
blanchet@43444
   763
  CombApp (CombConst (`make_fixed_const type_pred_base, T --> @{typ bool}, [T]),
blanchet@43444
   764
           tm)
blanchet@43618
   765
  |> enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys
blanchet@43444
   766
  |> AAtom
blanchet@43444
   767
blanchet@43550
   768
fun formula_from_combformula ctxt nonmono_Ts type_sys =
blanchet@43444
   769
  let
blanchet@43460
   770
    fun tag_with_type type_sys T tm =
blanchet@43460
   771
      CombConst (`make_fixed_const type_tag_name, T --> T, [T])
blanchet@43618
   772
      |> enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys
blanchet@43460
   773
      |> do_term true
blanchet@43460
   774
      |> (fn ATerm (s, tms) => ATerm (s, tms @ [tm]))
blanchet@43460
   775
    and do_term top_level u =
blanchet@43444
   776
      let
blanchet@43444
   777
        val (head, args) = strip_combterm_comb u
blanchet@43445
   778
        val (x, T_args) =
blanchet@43444
   779
          case head of
blanchet@43445
   780
            CombConst (name, _, T_args) => (name, T_args)
blanchet@43444
   781
          | CombVar (name, _) => (name, [])
blanchet@43444
   782
          | CombApp _ => raise Fail "impossible \"CombApp\""
blanchet@43445
   783
        val t = ATerm (x, map fo_term_from_typ T_args @
blanchet@43444
   784
                          map (do_term false) args)
blanchet@43445
   785
        val T = combtyp_of u
blanchet@43444
   786
      in
blanchet@43550
   787
        t |> (if not top_level andalso
blanchet@43550
   788
                should_tag_with_type ctxt nonmono_Ts type_sys T then
blanchet@43460
   789
                tag_with_type type_sys T
blanchet@43444
   790
              else
blanchet@43444
   791
                I)
blanchet@43444
   792
      end
blanchet@43444
   793
    val do_bound_type =
blanchet@43552
   794
      case type_sys of
blanchet@43587
   795
        Simple_Types level =>
blanchet@43552
   796
        SOME o mangled_type_name o homogenized_type ctxt nonmono_Ts level
blanchet@43552
   797
      | _ => K NONE
blanchet@43444
   798
    fun do_out_of_bound_type (s, T) =
blanchet@43550
   799
      if should_predicate_on_type ctxt nonmono_Ts type_sys T then
blanchet@43571
   800
        type_pred_combatom ctxt nonmono_Ts type_sys T (CombVar (s, T))
blanchet@43444
   801
        |> do_formula |> SOME
blanchet@43444
   802
      else
blanchet@43444
   803
        NONE
blanchet@43444
   804
    and do_formula (AQuant (q, xs, phi)) =
blanchet@43444
   805
        AQuant (q, xs |> map (apsnd (fn NONE => NONE
blanchet@43445
   806
                                      | SOME T => do_bound_type T)),
blanchet@43444
   807
                (if q = AForall then mk_ahorn else fold_rev (mk_aconn AAnd))
blanchet@43444
   808
                    (map_filter
blanchet@43444
   809
                         (fn (_, NONE) => NONE
blanchet@43445
   810
                           | (s, SOME T) => do_out_of_bound_type (s, T)) xs)
blanchet@43444
   811
                    (do_formula phi))
blanchet@43444
   812
      | do_formula (AConn (c, phis)) = AConn (c, map do_formula phis)
blanchet@43444
   813
      | do_formula (AAtom tm) = AAtom (do_term true tm)
blanchet@43444
   814
  in do_formula end
blanchet@43444
   815
blanchet@43592
   816
fun bound_atomic_types type_sys Ts =
blanchet@43592
   817
  mk_ahorn (map (formula_from_fo_literal o fo_literal_from_type_literal)
blanchet@43592
   818
                (atp_type_literals_for_types type_sys Axiom Ts))
blanchet@43592
   819
blanchet@43550
   820
fun formula_for_fact ctxt nonmono_Ts type_sys
blanchet@43444
   821
                     ({combformula, atomic_types, ...} : translated_formula) =
blanchet@43592
   822
  combformula
blanchet@43592
   823
  |> close_combformula_universally
blanchet@43592
   824
  |> formula_from_combformula ctxt nonmono_Ts type_sys
blanchet@43592
   825
  |> bound_atomic_types type_sys atomic_types
blanchet@43444
   826
  |> close_formula_universally
blanchet@43444
   827
blanchet@43511
   828
fun useful_isabelle_info s = SOME (ATerm ("[]", [ATerm ("isabelle_" ^ s, [])]))
blanchet@43511
   829
blanchet@43444
   830
(* Each fact is given a unique fact number to avoid name clashes (e.g., because
blanchet@43444
   831
   of monomorphization). The TPTP explicitly forbids name clashes, and some of
blanchet@43444
   832
   the remote provers might care. *)
blanchet@43550
   833
fun formula_line_for_fact ctxt prefix nonmono_Ts type_sys
blanchet@43511
   834
                          (j, formula as {name, locality, kind, ...}) =
blanchet@43550
   835
  Formula (prefix ^ (if polymorphism_of_type_sys type_sys = Polymorphic then ""
blanchet@43550
   836
                     else string_of_int j ^ "_") ^
blanchet@43518
   837
           ascii_of name,
blanchet@43550
   838
           kind, formula_for_fact ctxt nonmono_Ts type_sys formula, NONE,
blanchet@43511
   839
           if generate_useful_info then
blanchet@43511
   840
             case locality of
blanchet@43511
   841
               Intro => useful_isabelle_info "intro"
blanchet@43511
   842
             | Elim => useful_isabelle_info "elim"
blanchet@43511
   843
             | Simp => useful_isabelle_info "simp"
blanchet@43511
   844
             | _ => NONE
blanchet@43511
   845
           else
blanchet@43511
   846
             NONE)
blanchet@43444
   847
blanchet@43444
   848
fun formula_line_for_class_rel_clause (ClassRelClause {name, subclass,
blanchet@43444
   849
                                                       superclass, ...}) =
blanchet@43444
   850
  let val ty_arg = ATerm (`I "T", []) in
blanchet@43448
   851
    Formula (class_rel_clause_prefix ^ ascii_of name, Axiom,
blanchet@43444
   852
             AConn (AImplies, [AAtom (ATerm (subclass, [ty_arg])),
blanchet@43444
   853
                               AAtom (ATerm (superclass, [ty_arg]))])
blanchet@43444
   854
             |> close_formula_universally, NONE, NONE)
blanchet@43444
   855
  end
blanchet@43444
   856
blanchet@43444
   857
fun fo_literal_from_arity_literal (TConsLit (c, t, args)) =
blanchet@43444
   858
    (true, ATerm (c, [ATerm (t, map (fn arg => ATerm (arg, [])) args)]))
blanchet@43444
   859
  | fo_literal_from_arity_literal (TVarLit (c, sort)) =
blanchet@43444
   860
    (false, ATerm (c, [ATerm (sort, [])]))
blanchet@43444
   861
blanchet@43444
   862
fun formula_line_for_arity_clause (ArityClause {name, conclLit, premLits,
blanchet@43444
   863
                                                ...}) =
blanchet@43448
   864
  Formula (arity_clause_prefix ^ ascii_of name, Axiom,
blanchet@43444
   865
           mk_ahorn (map (formula_from_fo_literal o apfst not
blanchet@43444
   866
                          o fo_literal_from_arity_literal) premLits)
blanchet@43444
   867
                    (formula_from_fo_literal
blanchet@43444
   868
                         (fo_literal_from_arity_literal conclLit))
blanchet@43444
   869
           |> close_formula_universally, NONE, NONE)
blanchet@43444
   870
blanchet@43550
   871
fun formula_line_for_conjecture ctxt nonmono_Ts type_sys
blanchet@43444
   872
        ({name, kind, combformula, ...} : translated_formula) =
blanchet@43448
   873
  Formula (conjecture_prefix ^ name, kind,
blanchet@43550
   874
           formula_from_combformula ctxt nonmono_Ts type_sys
blanchet@43444
   875
                                    (close_combformula_universally combformula)
blanchet@43444
   876
           |> close_formula_universally, NONE, NONE)
blanchet@43444
   877
blanchet@43444
   878
fun free_type_literals type_sys ({atomic_types, ...} : translated_formula) =
blanchet@43444
   879
  atomic_types |> atp_type_literals_for_types type_sys Conjecture
blanchet@43444
   880
               |> map fo_literal_from_type_literal
blanchet@43444
   881
blanchet@43444
   882
fun formula_line_for_free_type j lit =
blanchet@43448
   883
  Formula (tfree_prefix ^ string_of_int j, Hypothesis,
blanchet@43444
   884
           formula_from_fo_literal lit, NONE, NONE)
blanchet@43444
   885
fun formula_lines_for_free_types type_sys facts =
blanchet@43444
   886
  let
blanchet@43444
   887
    val litss = map (free_type_literals type_sys) facts
blanchet@43444
   888
    val lits = fold (union (op =)) litss []
blanchet@43444
   889
  in map2 formula_line_for_free_type (0 upto length lits - 1) lits end
blanchet@43444
   890
blanchet@43444
   891
(** Symbol declarations **)
blanchet@43415
   892
blanchet@43547
   893
fun insert_type get_T x xs =
blanchet@43547
   894
  let val T = get_T x in
blanchet@43547
   895
    if exists (curry Type.raw_instance T o get_T) xs then xs
blanchet@43547
   896
    else x :: filter_out ((fn T' => Type.raw_instance (T', T)) o get_T) xs
blanchet@43547
   897
  end
blanchet@43547
   898
blanchet@43445
   899
fun should_declare_sym type_sys pred_sym s =
blanchet@43413
   900
  not (String.isPrefix bound_var_prefix s) andalso s <> "equal" andalso
blanchet@43618
   901
  not (String.isPrefix tptp_special_prefix s) andalso
blanchet@43587
   902
  ((case type_sys of Simple_Types _ => true | _ => false) orelse not pred_sym)
blanchet@43413
   903
blanchet@43568
   904
fun sym_decl_table_for_facts type_sys repaired_sym_tab (conjs, facts) =
blanchet@43445
   905
  let
blanchet@43568
   906
    fun add_combterm in_conj tm =
blanchet@43445
   907
      let val (head, args) = strip_combterm_comb tm in
blanchet@43445
   908
        (case head of
blanchet@43445
   909
           CombConst ((s, s'), T, T_args) =>
blanchet@43445
   910
           let val pred_sym = is_pred_sym repaired_sym_tab s in
blanchet@43445
   911
             if should_declare_sym type_sys pred_sym s then
blanchet@43447
   912
               Symtab.map_default (s, [])
blanchet@43568
   913
                   (insert_type #3 (s', T_args, T, pred_sym, length args,
blanchet@43568
   914
                                    in_conj))
blanchet@43445
   915
             else
blanchet@43445
   916
               I
blanchet@43445
   917
           end
blanchet@43445
   918
         | _ => I)
blanchet@43568
   919
        #> fold (add_combterm in_conj) args
blanchet@43445
   920
      end
blanchet@43568
   921
    fun add_fact in_conj =
blanchet@43568
   922
      fact_lift (formula_fold true (K (add_combterm in_conj)))
blanchet@43568
   923
  in
blanchet@43568
   924
    Symtab.empty
blanchet@43568
   925
    |> is_type_sys_fairly_sound type_sys
blanchet@43568
   926
       ? (fold (add_fact true) conjs #> fold (add_fact false) facts)
blanchet@43568
   927
  end
blanchet@43445
   928
blanchet@43547
   929
fun is_var_or_bound_var (CombConst ((s, _), _, _)) =
blanchet@43547
   930
    String.isPrefix bound_var_prefix s
blanchet@43547
   931
  | is_var_or_bound_var (CombVar _) = true
blanchet@43547
   932
  | is_var_or_bound_var _ = false
blanchet@43547
   933
blanchet@43555
   934
(* This inference is described in section 2.3 of Claessen et al.'s "Sorting it
blanchet@43555
   935
   out with monotonicity" paper presented at CADE 2011. *)
blanchet@43550
   936
fun add_combterm_nonmonotonic_types _ (SOME false) _ = I
blanchet@43550
   937
  | add_combterm_nonmonotonic_types ctxt _
blanchet@43550
   938
        (CombApp (CombApp (CombConst (("equal", _), Type (_, [T, _]), _), tm1),
blanchet@43550
   939
                  tm2)) =
blanchet@43550
   940
    (exists is_var_or_bound_var [tm1, tm2] andalso
blanchet@43550
   941
     not (is_type_surely_infinite ctxt T)) ? insert_type I T
blanchet@43550
   942
  | add_combterm_nonmonotonic_types _ _ _ = I
blanchet@43550
   943
fun add_fact_nonmonotonic_types ctxt ({kind, combformula, ...}
blanchet@43550
   944
                                      : translated_formula) =
blanchet@43550
   945
  formula_fold (kind <> Conjecture) (add_combterm_nonmonotonic_types ctxt)
blanchet@43550
   946
               combformula
blanchet@43550
   947
fun add_nonmonotonic_types_for_facts ctxt type_sys facts =
blanchet@43550
   948
  level_of_type_sys type_sys = Nonmonotonic_Types
blanchet@43596
   949
  ? (fold (add_fact_nonmonotonic_types ctxt) facts
blanchet@43596
   950
     (* in case helper "True_or_False" is included *)
blanchet@43596
   951
     #> insert_type I @{typ bool})
blanchet@43547
   952
blanchet@43618
   953
fun result_type_of_decl (_, _, T, _, ary, _) = chop_fun ary T |> snd
blanchet@43450
   954
blanchet@43568
   955
fun decl_line_for_sym s (s', _, T, pred_sym, ary, _) =
blanchet@43618
   956
  let val (arg_Ts, res_T) = chop_fun ary T in
blanchet@43483
   957
    Decl (sym_decl_prefix ^ s, (s, s'), map mangled_type_name arg_Ts,
blanchet@43450
   958
          if pred_sym then `I tptp_tff_bool_type else mangled_type_name res_T)
blanchet@43450
   959
  end
blanchet@43450
   960
blanchet@43463
   961
fun is_polymorphic_type T = fold_atyps (fn TVar _ => K true | _ => I) T false
blanchet@43463
   962
blanchet@43580
   963
fun formula_line_for_sym_decl ctxt conj_sym_kind nonmono_Ts type_sys n s j
blanchet@43568
   964
                              (s', T_args, T, _, ary, in_conj) =
blanchet@43450
   965
  let
blanchet@43580
   966
    val (kind, maybe_negate) =
blanchet@43580
   967
      if in_conj then (conj_sym_kind, conj_sym_kind = Conjecture ? mk_anot)
blanchet@43580
   968
      else (Axiom, I)
blanchet@43618
   969
    val (arg_Ts, res_T) = chop_fun ary T
blanchet@43450
   970
    val bound_names =
blanchet@43450
   971
      1 upto length arg_Ts |> map (`I o make_bound_var o string_of_int)
blanchet@43450
   972
    val bound_tms =
blanchet@43450
   973
      bound_names ~~ arg_Ts |> map (fn (name, T) => CombConst (name, T, []))
blanchet@43450
   974
    val bound_Ts =
blanchet@43463
   975
      arg_Ts |> map (fn T => if n > 1 orelse is_polymorphic_type T then SOME T
blanchet@43463
   976
                             else NONE)
blanchet@43450
   977
  in
blanchet@43483
   978
    Formula (sym_decl_prefix ^ s ^
blanchet@43580
   979
             (if n > 1 then "_" ^ string_of_int j else ""), kind,
blanchet@43450
   980
             CombConst ((s, s'), T, T_args)
blanchet@43450
   981
             |> fold (curry (CombApp o swap)) bound_tms
blanchet@43571
   982
             |> type_pred_combatom ctxt nonmono_Ts type_sys res_T
blanchet@43450
   983
             |> mk_aquant AForall (bound_names ~~ bound_Ts)
blanchet@43550
   984
             |> formula_from_combformula ctxt nonmono_Ts type_sys
blanchet@43592
   985
             |> n > 1 ? bound_atomic_types type_sys (atyps_of T)
blanchet@43580
   986
             |> close_formula_universally
blanchet@43580
   987
             |> maybe_negate,
blanchet@43450
   988
             NONE, NONE)
blanchet@43450
   989
  end
blanchet@43450
   990
blanchet@43580
   991
fun problem_lines_for_sym_decls ctxt conj_sym_kind nonmono_Ts type_sys
blanchet@43580
   992
                                (s, decls) =
blanchet@43552
   993
  case type_sys of
blanchet@43587
   994
    Simple_Types _ => map (decl_line_for_sym s) decls
blanchet@43552
   995
  | _ =>
blanchet@43445
   996
    let
blanchet@43450
   997
      val decls =
blanchet@43450
   998
        case decls of
blanchet@43450
   999
          decl :: (decls' as _ :: _) =>
blanchet@43463
  1000
          let val T = result_type_of_decl decl in
blanchet@43463
  1001
            if forall ((fn T' => Type.raw_instance (T', T))
blanchet@43463
  1002
                       o result_type_of_decl) decls' then
blanchet@43463
  1003
              [decl]
blanchet@43463
  1004
            else
blanchet@43463
  1005
              decls
blanchet@43463
  1006
          end
blanchet@43450
  1007
        | _ => decls
blanchet@43450
  1008
      val n = length decls
blanchet@43450
  1009
      val decls =
blanchet@43550
  1010
        decls |> filter (should_predicate_on_type ctxt nonmono_Ts type_sys
blanchet@43450
  1011
                         o result_type_of_decl)
blanchet@43445
  1012
    in
blanchet@43580
  1013
      (0 upto length decls - 1, decls)
blanchet@43580
  1014
      |-> map2 (formula_line_for_sym_decl ctxt conj_sym_kind nonmono_Ts type_sys
blanchet@43580
  1015
                                          n s)
blanchet@43445
  1016
    end
blanchet@43450
  1017
blanchet@43580
  1018
fun problem_lines_for_sym_decl_table ctxt conj_sym_kind nonmono_Ts type_sys
blanchet@43580
  1019
                                     sym_decl_tab =
blanchet@43580
  1020
  Symtab.fold_rev (append o problem_lines_for_sym_decls ctxt conj_sym_kind
blanchet@43580
  1021
                                                        nonmono_Ts type_sys)
blanchet@43445
  1022
                  sym_decl_tab []
blanchet@43410
  1023
blanchet@43414
  1024
fun add_tff_types_in_formula (AQuant (_, xs, phi)) =
blanchet@43414
  1025
    union (op =) (map_filter snd xs) #> add_tff_types_in_formula phi
blanchet@43414
  1026
  | add_tff_types_in_formula (AConn (_, phis)) =
blanchet@43414
  1027
    fold add_tff_types_in_formula phis
blanchet@43414
  1028
  | add_tff_types_in_formula (AAtom _) = I
blanchet@43414
  1029
blanchet@43433
  1030
fun add_tff_types_in_problem_line (Decl (_, _, arg_Ts, res_T)) =
blanchet@43433
  1031
    union (op =) (res_T :: arg_Ts)
blanchet@43448
  1032
  | add_tff_types_in_problem_line (Formula (_, _, phi, _, _)) =
blanchet@43414
  1033
    add_tff_types_in_formula phi
blanchet@43414
  1034
blanchet@43414
  1035
fun tff_types_in_problem problem =
blanchet@43414
  1036
  fold (fold add_tff_types_in_problem_line o snd) problem []
blanchet@43414
  1037
blanchet@43416
  1038
fun decl_line_for_tff_type (s, s') =
blanchet@43439
  1039
  Decl (type_decl_prefix ^ ascii_of s, (s, s'), [], `I tptp_tff_type_of_types)
blanchet@43414
  1040
blanchet@43414
  1041
val type_declsN = "Types"
blanchet@43415
  1042
val sym_declsN = "Symbol types"
blanchet@41405
  1043
val factsN = "Relevant facts"
blanchet@41405
  1044
val class_relsN = "Class relationships"
blanchet@43414
  1045
val aritiesN = "Arities"
blanchet@41405
  1046
val helpersN = "Helper facts"
blanchet@41405
  1047
val conjsN = "Conjectures"
blanchet@41561
  1048
val free_typesN = "Type variables"
blanchet@41405
  1049
blanchet@41405
  1050
fun offset_of_heading_in_problem _ [] j = j
blanchet@41405
  1051
  | offset_of_heading_in_problem needle ((heading, lines) :: problem) j =
blanchet@41405
  1052
    if heading = needle then j
blanchet@41405
  1053
    else offset_of_heading_in_problem needle problem (j + length lines)
blanchet@41405
  1054
blanchet@43580
  1055
fun prepare_atp_problem ctxt conj_sym_kind prem_kind type_sys explicit_apply
blanchet@43580
  1056
                        hyp_ts concl_t facts =
blanchet@38506
  1057
  let
blanchet@41561
  1058
    val (fact_names, (conjs, facts, class_rel_clauses, arity_clauses)) =
blanchet@43580
  1059
      translate_formulas ctxt prem_kind type_sys hyp_ts concl_t facts
blanchet@43434
  1060
    val sym_tab = conjs @ facts |> sym_table_for_facts explicit_apply
blanchet@43552
  1061
    val nonmono_Ts =
blanchet@43552
  1062
      [] |> fold (add_nonmonotonic_types_for_facts ctxt type_sys) [facts, conjs]
blanchet@43571
  1063
    val repair = repair_fact ctxt nonmono_Ts type_sys sym_tab
blanchet@43552
  1064
    val (conjs, facts) = (conjs, facts) |> pairself (map repair)
blanchet@43550
  1065
    val repaired_sym_tab = conjs @ facts |> sym_table_for_facts false
blanchet@43444
  1066
    val helpers =
blanchet@43552
  1067
      repaired_sym_tab |> helper_facts_for_sym_table ctxt type_sys |> map repair
blanchet@43550
  1068
    val sym_decl_lines =
blanchet@43596
  1069
      (conjs, helpers @ facts)
blanchet@43550
  1070
      |> sym_decl_table_for_facts type_sys repaired_sym_tab
blanchet@43580
  1071
      |> problem_lines_for_sym_decl_table ctxt conj_sym_kind nonmono_Ts type_sys
blanchet@43393
  1072
    (* Reordering these might confuse the proof reconstruction code or the SPASS
blanchet@43393
  1073
       Flotter hack. *)
blanchet@38506
  1074
    val problem =
blanchet@43432
  1075
      [(sym_declsN, sym_decl_lines),
blanchet@43550
  1076
       (factsN, map (formula_line_for_fact ctxt fact_prefix nonmono_Ts type_sys)
blanchet@43051
  1077
                    (0 upto length facts - 1 ~~ facts)),
blanchet@43416
  1078
       (class_relsN, map formula_line_for_class_rel_clause class_rel_clauses),
blanchet@43416
  1079
       (aritiesN, map formula_line_for_arity_clause arity_clauses),
blanchet@43550
  1080
       (helpersN, map (formula_line_for_fact ctxt helper_prefix nonmono_Ts
blanchet@43550
  1081
                                             type_sys)
blanchet@43434
  1082
                      (0 upto length helpers - 1 ~~ helpers)
blanchet@43450
  1083
                  |> (case type_sys of
blanchet@43460
  1084
                        Tags (Polymorphic, level) =>
blanchet@43557
  1085
                        is_type_level_partial level
blanchet@43460
  1086
                        ? cons (ti_ti_helper_fact ())
blanchet@43450
  1087
                      | _ => I)),
blanchet@43550
  1088
       (conjsN, map (formula_line_for_conjecture ctxt nonmono_Ts type_sys)
blanchet@43550
  1089
                    conjs),
blanchet@43416
  1090
       (free_typesN, formula_lines_for_free_types type_sys (facts @ conjs))]
blanchet@43414
  1091
    val problem =
blanchet@43432
  1092
      problem
blanchet@43552
  1093
      |> (case type_sys of
blanchet@43587
  1094
            Simple_Types _ =>
blanchet@43432
  1095
            cons (type_declsN,
blanchet@43432
  1096
                  map decl_line_for_tff_type (tff_types_in_problem problem))
blanchet@43552
  1097
          | _ => I)
blanchet@43517
  1098
    val (problem, pool) =
blanchet@43517
  1099
      problem |> nice_atp_problem (Config.get ctxt readable_names)
blanchet@38506
  1100
  in
blanchet@38506
  1101
    (problem,
blanchet@38506
  1102
     case pool of SOME the_pool => snd the_pool | NONE => Symtab.empty,
blanchet@43456
  1103
     offset_of_heading_in_problem conjsN problem 0,
blanchet@43412
  1104
     offset_of_heading_in_problem factsN problem 0,
blanchet@41405
  1105
     fact_names |> Vector.fromList)
blanchet@38506
  1106
  end
blanchet@38506
  1107
blanchet@41561
  1108
(* FUDGE *)
blanchet@41561
  1109
val conj_weight = 0.0
blanchet@42641
  1110
val hyp_weight = 0.1
blanchet@42641
  1111
val fact_min_weight = 0.2
blanchet@41561
  1112
val fact_max_weight = 1.0
blanchet@43479
  1113
val type_info_default_weight = 0.8
blanchet@41561
  1114
blanchet@41561
  1115
fun add_term_weights weight (ATerm (s, tms)) =
blanchet@43599
  1116
  (not (is_atp_variable s) andalso s <> "equal" andalso
blanchet@43618
  1117
   not (String.isPrefix tptp_special_prefix s)) ? Symtab.default (s, weight)
blanchet@41561
  1118
  #> fold (add_term_weights weight) tms
blanchet@43448
  1119
fun add_problem_line_weights weight (Formula (_, _, phi, _, _)) =
blanchet@43550
  1120
    formula_fold true (K (add_term_weights weight)) phi
blanchet@43399
  1121
  | add_problem_line_weights _ _ = I
blanchet@41561
  1122
blanchet@41561
  1123
fun add_conjectures_weights [] = I
blanchet@41561
  1124
  | add_conjectures_weights conjs =
blanchet@41561
  1125
    let val (hyps, conj) = split_last conjs in
blanchet@41561
  1126
      add_problem_line_weights conj_weight conj
blanchet@41561
  1127
      #> fold (add_problem_line_weights hyp_weight) hyps
blanchet@41561
  1128
    end
blanchet@41561
  1129
blanchet@41561
  1130
fun add_facts_weights facts =
blanchet@41561
  1131
  let
blanchet@41561
  1132
    val num_facts = length facts
blanchet@41561
  1133
    fun weight_of j =
blanchet@41561
  1134
      fact_min_weight + (fact_max_weight - fact_min_weight) * Real.fromInt j
blanchet@41561
  1135
                        / Real.fromInt num_facts
blanchet@41561
  1136
  in
blanchet@41561
  1137
    map weight_of (0 upto num_facts - 1) ~~ facts
blanchet@41561
  1138
    |> fold (uncurry add_problem_line_weights)
blanchet@41561
  1139
  end
blanchet@41561
  1140
blanchet@41561
  1141
(* Weights are from 0.0 (most important) to 1.0 (least important). *)
blanchet@41561
  1142
fun atp_problem_weights problem =
blanchet@43479
  1143
  let val get = these o AList.lookup (op =) problem in
blanchet@43479
  1144
    Symtab.empty
blanchet@43479
  1145
    |> add_conjectures_weights (get free_typesN @ get conjsN)
blanchet@43479
  1146
    |> add_facts_weights (get factsN)
blanchet@43479
  1147
    |> fold (fold (add_problem_line_weights type_info_default_weight) o get)
blanchet@43479
  1148
            [sym_declsN, class_relsN, aritiesN]
blanchet@43479
  1149
    |> Symtab.dest
blanchet@43479
  1150
    |> sort (prod_ord Real.compare string_ord o pairself swap)
blanchet@43479
  1151
  end
blanchet@41561
  1152
blanchet@38506
  1153
end;