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