src/HOL/Tools/ATP/atp_translate.ML
author blanchet
Wed, 01 Jun 2011 10:29:43 +0200
changeset 43969 a19826080596
parent 43966 ddf63baabdec
child 43970 4301f1c123d6
permissions -rw-r--r--
tuned names
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@43926
     9
signature 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@43926
    15
blanchet@43926
    16
  type name = string * string
blanchet@43926
    17
blanchet@43926
    18
  datatype type_literal =
blanchet@43926
    19
    TyLitVar of name * name |
blanchet@43926
    20
    TyLitFree of name * name
blanchet@43926
    21
blanchet@43926
    22
  datatype arity_literal =
blanchet@43926
    23
    TConsLit of name * name * name list |
blanchet@43926
    24
    TVarLit of name * name
blanchet@43926
    25
blanchet@43927
    26
  type arity_clause =
blanchet@43927
    27
    {name: string,
blanchet@43927
    28
     prem_lits: arity_literal list,
blanchet@43927
    29
     concl_lits: arity_literal}
blanchet@43926
    30
blanchet@43927
    31
  type class_rel_clause =
blanchet@43927
    32
    {name: string,
blanchet@43927
    33
     subclass: name,
blanchet@43927
    34
     superclass: name}
blanchet@43926
    35
blanchet@43926
    36
  datatype combterm =
blanchet@43926
    37
    CombConst of name * typ * typ list |
blanchet@43926
    38
    CombVar of name * typ |
blanchet@43926
    39
    CombApp of combterm * combterm
blanchet@43926
    40
blanchet@43926
    41
  datatype locality = General | Intro | Elim | Simp | Local | Assum | Chained
blanchet@43484
    42
blanchet@43484
    43
  datatype polymorphism = Polymorphic | Monomorphic | Mangled_Monomorphic
blanchet@43484
    44
  datatype type_level =
blanchet@43484
    45
    All_Types | Nonmonotonic_Types | Finite_Types | Const_Arg_Types | No_Types
blanchet@43969
    46
  datatype type_heaviness = Heavyweight | Lightweight
blanchet@43484
    47
blanchet@43943
    48
  datatype type_sys =
blanchet@43587
    49
    Simple_Types of type_level |
blanchet@43708
    50
    Preds of polymorphism * type_level * type_heaviness |
blanchet@43708
    51
    Tags of polymorphism * type_level * type_heaviness
blanchet@43484
    52
blanchet@40358
    53
  type translated_formula
blanchet@38506
    54
blanchet@43926
    55
  val bound_var_prefix : string
blanchet@43926
    56
  val schematic_var_prefix: string
blanchet@43926
    57
  val fixed_var_prefix: string
blanchet@43926
    58
  val tvar_prefix: string
blanchet@43926
    59
  val tfree_prefix: string
blanchet@43926
    60
  val const_prefix: string
blanchet@43926
    61
  val type_const_prefix: string
blanchet@43926
    62
  val class_prefix: string
blanchet@43926
    63
  val skolem_const_prefix : string
blanchet@43926
    64
  val old_skolem_const_prefix : string
blanchet@43926
    65
  val new_skolem_const_prefix : string
blanchet@43966
    66
  val type_decl_prefix : string
blanchet@43966
    67
  val sym_decl_prefix : string
blanchet@43966
    68
  val preds_sym_formula_prefix : string
blanchet@43966
    69
  val tags_sym_formula_prefix : string
blanchet@40445
    70
  val fact_prefix : string
blanchet@38506
    71
  val conjecture_prefix : string
blanchet@43750
    72
  val helper_prefix : string
blanchet@43966
    73
  val class_rel_clause_prefix : string
blanchet@43966
    74
  val arity_clause_prefix : string
blanchet@43966
    75
  val tfree_clause_prefix : string
blanchet@43750
    76
  val typed_helper_suffix : string
blanchet@43966
    77
  val untyped_helper_suffix : string
blanchet@43807
    78
  val predicator_name : string
blanchet@43807
    79
  val app_op_name : string
blanchet@43945
    80
  val type_tag_name : string
blanchet@43807
    81
  val type_pred_name : string
blanchet@43803
    82
  val simple_type_prefix : string
blanchet@43926
    83
  val ascii_of: string -> string
blanchet@43926
    84
  val unascii_of: string -> string
blanchet@43926
    85
  val strip_prefix_and_unascii : string -> string -> string option
blanchet@43926
    86
  val proxify_const : string -> (int * (string * string)) option
blanchet@43926
    87
  val invert_const: string -> string
blanchet@43926
    88
  val unproxify_const: string -> string
blanchet@43926
    89
  val make_bound_var : string -> string
blanchet@43926
    90
  val make_schematic_var : string * int -> string
blanchet@43926
    91
  val make_fixed_var : string -> string
blanchet@43926
    92
  val make_schematic_type_var : string * int -> string
blanchet@43926
    93
  val make_fixed_type_var : string -> string
blanchet@43926
    94
  val make_fixed_const : string -> string
blanchet@43926
    95
  val make_fixed_type_const : string -> string
blanchet@43926
    96
  val make_type_class : string -> string
blanchet@43934
    97
  val new_skolem_var_name_from_const : string -> string
blanchet@43934
    98
  val num_type_args : theory -> string -> int
blanchet@43926
    99
  val make_arity_clauses :
blanchet@43926
   100
    theory -> string list -> class list -> class list * arity_clause list
blanchet@43926
   101
  val make_class_rel_clauses :
blanchet@43926
   102
    theory -> class list -> class list -> class_rel_clause list
blanchet@43926
   103
  val combtyp_of : combterm -> typ
blanchet@43926
   104
  val strip_combterm_comb : combterm -> combterm * combterm list
blanchet@43926
   105
  val atyps_of : typ -> typ list
blanchet@43926
   106
  val combterm_from_term :
blanchet@43926
   107
    theory -> (string * typ) list -> term -> combterm * typ list
blanchet@43926
   108
  val is_locality_global : locality -> bool
blanchet@43943
   109
  val type_sys_from_string : string -> type_sys
blanchet@43943
   110
  val polymorphism_of_type_sys : type_sys -> polymorphism
blanchet@43943
   111
  val level_of_type_sys : type_sys -> type_level
blanchet@43943
   112
  val is_type_sys_virtually_sound : type_sys -> bool
blanchet@43943
   113
  val is_type_sys_fairly_sound : type_sys -> bool
blanchet@43943
   114
  val choose_format : format list -> type_sys -> format * type_sys
blanchet@43926
   115
  val raw_type_literals_for_types : typ list -> type_literal list
blanchet@43413
   116
  val unmangled_const : string -> string * string fo_term list
blanchet@41336
   117
  val translate_atp_fact :
blanchet@43943
   118
    Proof.context -> format -> type_sys -> bool -> (string * locality) * thm
blanchet@43511
   119
    -> translated_formula option * ((string * locality) * thm)
blanchet@43926
   120
  val helper_table : (string * (bool * thm list)) list
blanchet@43926
   121
  val tfree_classes_of_terms : term list -> string list
blanchet@43926
   122
  val tvar_classes_of_terms : term list -> string list
blanchet@43926
   123
  val type_consts_of_terms : theory -> term list -> string list
blanchet@40240
   124
  val prepare_atp_problem :
blanchet@43943
   125
    Proof.context -> format -> formula_kind -> formula_kind -> type_sys
blanchet@43937
   126
    -> bool option -> bool -> bool -> term list -> term
blanchet@41339
   127
    -> (translated_formula option * ((string * 'a) * thm)) list
blanchet@43412
   128
    -> string problem * string Symtab.table * int * int
blanchet@43750
   129
       * (string * 'a) list vector * int list * int Symtab.table
blanchet@41561
   130
  val atp_problem_weights : string problem -> (string * real) list
blanchet@38506
   131
end;
blanchet@38506
   132
blanchet@43926
   133
structure ATP_Translate : ATP_TRANSLATE =
blanchet@38506
   134
struct
blanchet@38506
   135
blanchet@43926
   136
open ATP_Util
blanchet@38506
   137
open ATP_Problem
blanchet@43926
   138
blanchet@43926
   139
type name = string * string
blanchet@43926
   140
blanchet@43926
   141
(* FIXME: avoid *)
blanchet@43926
   142
fun union_all xss = fold (union (op =)) xss []
blanchet@43511
   143
blanchet@43511
   144
(* experimental *)
blanchet@43511
   145
val generate_useful_info = false
blanchet@38506
   146
blanchet@43748
   147
fun useful_isabelle_info s =
blanchet@43748
   148
  if generate_useful_info then
blanchet@43748
   149
    SOME (ATerm ("[]", [ATerm ("isabelle_" ^ s, [])]))
blanchet@43748
   150
  else
blanchet@43748
   151
    NONE
blanchet@43748
   152
blanchet@43748
   153
val intro_info = useful_isabelle_info "intro"
blanchet@43748
   154
val elim_info = useful_isabelle_info "elim"
blanchet@43748
   155
val simp_info = useful_isabelle_info "simp"
blanchet@43748
   156
blanchet@43926
   157
val bound_var_prefix = "B_"
blanchet@43926
   158
val schematic_var_prefix = "V_"
blanchet@43926
   159
val fixed_var_prefix = "v_"
blanchet@43926
   160
blanchet@43926
   161
val tvar_prefix = "T_"
blanchet@43926
   162
val tfree_prefix = "t_"
blanchet@43926
   163
blanchet@43926
   164
val const_prefix = "c_"
blanchet@43926
   165
val type_const_prefix = "tc_"
blanchet@43926
   166
val class_prefix = "cl_"
blanchet@43926
   167
blanchet@43926
   168
val skolem_const_prefix = "Sledgehammer" ^ Long_Name.separator ^ "Sko"
blanchet@43926
   169
val old_skolem_const_prefix = skolem_const_prefix ^ "o"
blanchet@43926
   170
val new_skolem_const_prefix = skolem_const_prefix ^ "n"
blanchet@43926
   171
blanchet@43839
   172
val type_decl_prefix = "ty_"
blanchet@43839
   173
val sym_decl_prefix = "sy_"
blanchet@43966
   174
val preds_sym_formula_prefix = "psy_"
blanchet@43966
   175
val tags_sym_formula_prefix = "tsy_"
blanchet@40445
   176
val fact_prefix = "fact_"
blanchet@38506
   177
val conjecture_prefix = "conj_"
blanchet@38506
   178
val helper_prefix = "help_"
blanchet@43934
   179
val class_rel_clause_prefix = "crel_"
blanchet@38506
   180
val arity_clause_prefix = "arity_"
blanchet@43926
   181
val tfree_clause_prefix = "tfree_"
blanchet@38506
   182
blanchet@43750
   183
val typed_helper_suffix = "_T"
blanchet@43750
   184
val untyped_helper_suffix = "_U"
blanchet@43750
   185
blanchet@43807
   186
val predicator_name = "hBOOL"
blanchet@43807
   187
val app_op_name = "hAPP"
blanchet@43945
   188
val type_tag_name = "ti"
blanchet@43807
   189
val type_pred_name = "is"
blanchet@43803
   190
val simple_type_prefix = "ty_"
blanchet@43402
   191
blanchet@38506
   192
(* Freshness almost guaranteed! *)
blanchet@38506
   193
val sledgehammer_weak_prefix = "Sledgehammer:"
blanchet@38506
   194
blanchet@43926
   195
(*Escaping of special characters.
blanchet@43926
   196
  Alphanumeric characters are left unchanged.
blanchet@43926
   197
  The character _ goes to __
blanchet@43926
   198
  Characters in the range ASCII space to / go to _A to _P, respectively.
blanchet@43926
   199
  Other characters go to _nnn where nnn is the decimal ASCII code.*)
blanchet@43934
   200
val upper_a_minus_space = Char.ord #"A" - Char.ord #" "
blanchet@43926
   201
blanchet@43926
   202
fun stringN_of_int 0 _ = ""
blanchet@43926
   203
  | stringN_of_int k n =
blanchet@43926
   204
    stringN_of_int (k - 1) (n div 10) ^ string_of_int (n mod 10)
blanchet@43926
   205
blanchet@43926
   206
fun ascii_of_char c =
blanchet@43926
   207
  if Char.isAlphaNum c then
blanchet@43926
   208
    String.str c
blanchet@43926
   209
  else if c = #"_" then
blanchet@43926
   210
    "__"
blanchet@43926
   211
  else if #" " <= c andalso c <= #"/" then
blanchet@43926
   212
    "_" ^ String.str (Char.chr (Char.ord c + upper_a_minus_space))
blanchet@43926
   213
  else
blanchet@43926
   214
    (* fixed width, in case more digits follow *)
blanchet@43926
   215
    "_" ^ stringN_of_int 3 (Char.ord c)
blanchet@43926
   216
blanchet@43926
   217
val ascii_of = String.translate ascii_of_char
blanchet@43926
   218
blanchet@43926
   219
(** Remove ASCII armoring from names in proof files **)
blanchet@43926
   220
blanchet@43926
   221
(* We don't raise error exceptions because this code can run inside a worker
blanchet@43926
   222
   thread. Also, the errors are impossible. *)
blanchet@43926
   223
val unascii_of =
blanchet@43926
   224
  let
blanchet@43926
   225
    fun un rcs [] = String.implode(rev rcs)
blanchet@43926
   226
      | un rcs [#"_"] = un (#"_" :: rcs) [] (* ERROR *)
blanchet@43926
   227
        (* Three types of _ escapes: __, _A to _P, _nnn *)
blanchet@43926
   228
      | un rcs (#"_" :: #"_" :: cs) = un (#"_"::rcs) cs
blanchet@43926
   229
      | un rcs (#"_" :: c :: cs) =
blanchet@43926
   230
        if #"A" <= c andalso c<= #"P" then
blanchet@43926
   231
          (* translation of #" " to #"/" *)
blanchet@43926
   232
          un (Char.chr (Char.ord c - upper_a_minus_space) :: rcs) cs
blanchet@43926
   233
        else
blanchet@43926
   234
          let val digits = List.take (c::cs, 3) handle Subscript => [] in
blanchet@43926
   235
            case Int.fromString (String.implode digits) of
blanchet@43926
   236
              SOME n => un (Char.chr n :: rcs) (List.drop (cs, 2))
blanchet@43926
   237
            | NONE => un (c:: #"_"::rcs) cs (* ERROR *)
blanchet@43926
   238
          end
blanchet@43926
   239
      | un rcs (c :: cs) = un (c :: rcs) cs
blanchet@43926
   240
  in un [] o String.explode end
blanchet@43926
   241
blanchet@43926
   242
(* If string s has the prefix s1, return the result of deleting it,
blanchet@43926
   243
   un-ASCII'd. *)
blanchet@43926
   244
fun strip_prefix_and_unascii s1 s =
blanchet@43926
   245
  if String.isPrefix s1 s then
blanchet@43926
   246
    SOME (unascii_of (String.extract (s, size s1, NONE)))
blanchet@43926
   247
  else
blanchet@43926
   248
    NONE
blanchet@43926
   249
blanchet@43926
   250
val proxies =
blanchet@43926
   251
  [("c_False",
blanchet@43926
   252
    (@{const_name False}, (0, ("fFalse", @{const_name ATP.fFalse})))),
blanchet@43926
   253
   ("c_True", (@{const_name True}, (0, ("fTrue", @{const_name ATP.fTrue})))),
blanchet@43926
   254
   ("c_Not", (@{const_name Not}, (1, ("fNot", @{const_name ATP.fNot})))),
blanchet@43926
   255
   ("c_conj", (@{const_name conj}, (2, ("fconj", @{const_name ATP.fconj})))),
blanchet@43926
   256
   ("c_disj", (@{const_name disj}, (2, ("fdisj", @{const_name ATP.fdisj})))),
blanchet@43926
   257
   ("c_implies",
blanchet@43926
   258
    (@{const_name implies}, (2, ("fimplies", @{const_name ATP.fimplies})))),
blanchet@43926
   259
   ("equal",
blanchet@43926
   260
    (@{const_name HOL.eq}, (2, ("fequal", @{const_name ATP.fequal}))))]
blanchet@43926
   261
blanchet@43926
   262
val proxify_const = AList.lookup (op =) proxies #> Option.map snd
blanchet@43926
   263
blanchet@43926
   264
(* Readable names for the more common symbolic functions. Do not mess with the
blanchet@43926
   265
   table unless you know what you are doing. *)
blanchet@43926
   266
val const_trans_table =
blanchet@43926
   267
  [(@{type_name Product_Type.prod}, "prod"),
blanchet@43926
   268
   (@{type_name Sum_Type.sum}, "sum"),
blanchet@43926
   269
   (@{const_name False}, "False"),
blanchet@43926
   270
   (@{const_name True}, "True"),
blanchet@43926
   271
   (@{const_name Not}, "Not"),
blanchet@43926
   272
   (@{const_name conj}, "conj"),
blanchet@43926
   273
   (@{const_name disj}, "disj"),
blanchet@43926
   274
   (@{const_name implies}, "implies"),
blanchet@43926
   275
   (@{const_name HOL.eq}, "equal"),
blanchet@43926
   276
   (@{const_name If}, "If"),
blanchet@43926
   277
   (@{const_name Set.member}, "member"),
blanchet@43926
   278
   (@{const_name Meson.COMBI}, "COMBI"),
blanchet@43926
   279
   (@{const_name Meson.COMBK}, "COMBK"),
blanchet@43926
   280
   (@{const_name Meson.COMBB}, "COMBB"),
blanchet@43926
   281
   (@{const_name Meson.COMBC}, "COMBC"),
blanchet@43926
   282
   (@{const_name Meson.COMBS}, "COMBS")]
blanchet@43926
   283
  |> Symtab.make
blanchet@43926
   284
  |> fold (Symtab.update o swap o snd o snd o snd) proxies
blanchet@43926
   285
blanchet@43926
   286
(* Invert the table of translations between Isabelle and ATPs. *)
blanchet@43926
   287
val const_trans_table_inv =
blanchet@43926
   288
  const_trans_table |> Symtab.dest |> map swap |> Symtab.make
blanchet@43926
   289
val const_trans_table_unprox =
blanchet@43926
   290
  Symtab.empty
blanchet@43926
   291
  |> fold (fn (_, (isa, (_, (_, metis)))) => Symtab.update (metis, isa)) proxies
blanchet@43926
   292
blanchet@43926
   293
val invert_const = perhaps (Symtab.lookup const_trans_table_inv)
blanchet@43926
   294
val unproxify_const = perhaps (Symtab.lookup const_trans_table_unprox)
blanchet@43926
   295
blanchet@43926
   296
fun lookup_const c =
blanchet@43926
   297
  case Symtab.lookup const_trans_table c of
blanchet@43926
   298
    SOME c' => c'
blanchet@43926
   299
  | NONE => ascii_of c
blanchet@43926
   300
blanchet@43926
   301
(*Remove the initial ' character from a type variable, if it is present*)
blanchet@43926
   302
fun trim_type_var s =
blanchet@43926
   303
  if s <> "" andalso String.sub(s,0) = #"'" then String.extract(s,1,NONE)
blanchet@43926
   304
  else raise Fail ("trim_type: Malformed type variable encountered: " ^ s)
blanchet@43926
   305
blanchet@43926
   306
fun ascii_of_indexname (v,0) = ascii_of v
blanchet@43926
   307
  | ascii_of_indexname (v,i) = ascii_of v ^ "_" ^ string_of_int i
blanchet@43926
   308
blanchet@43926
   309
fun make_bound_var x = bound_var_prefix ^ ascii_of x
blanchet@43926
   310
fun make_schematic_var v = schematic_var_prefix ^ ascii_of_indexname v
blanchet@43926
   311
fun make_fixed_var x = fixed_var_prefix ^ ascii_of x
blanchet@43926
   312
blanchet@43926
   313
fun make_schematic_type_var (x,i) =
blanchet@43926
   314
      tvar_prefix ^ (ascii_of_indexname (trim_type_var x, i))
blanchet@43926
   315
fun make_fixed_type_var x = tfree_prefix ^ (ascii_of (trim_type_var x))
blanchet@43926
   316
blanchet@43926
   317
(* HOL.eq MUST BE "equal" because it's built into ATPs. *)
blanchet@43926
   318
fun make_fixed_const @{const_name HOL.eq} = "equal"
blanchet@43926
   319
  | make_fixed_const c = const_prefix ^ lookup_const c
blanchet@43926
   320
blanchet@43926
   321
fun make_fixed_type_const c = type_const_prefix ^ lookup_const c
blanchet@43926
   322
blanchet@43926
   323
fun make_type_class clas = class_prefix ^ ascii_of clas
blanchet@43926
   324
blanchet@43934
   325
fun new_skolem_var_name_from_const s =
blanchet@43934
   326
  let val ss = s |> space_explode Long_Name.separator in
blanchet@43934
   327
    nth ss (length ss - 2)
blanchet@43934
   328
  end
blanchet@43934
   329
blanchet@43934
   330
(* The number of type arguments of a constant, zero if it's monomorphic. For
blanchet@43934
   331
   (instances of) Skolem pseudoconstants, this information is encoded in the
blanchet@43934
   332
   constant name. *)
blanchet@43934
   333
fun num_type_args thy s =
blanchet@43934
   334
  if String.isPrefix skolem_const_prefix s then
blanchet@43934
   335
    s |> space_explode Long_Name.separator |> List.last |> Int.fromString |> the
blanchet@43934
   336
  else
blanchet@43934
   337
    (s, Sign.the_const_type thy s) |> Sign.const_typargs thy |> length
blanchet@43934
   338
blanchet@43926
   339
(** Definitions and functions for FOL clauses and formulas for TPTP **)
blanchet@43926
   340
blanchet@43926
   341
(* The first component is the type class; the second is a "TVar" or "TFree". *)
blanchet@43926
   342
datatype type_literal =
blanchet@43926
   343
  TyLitVar of name * name |
blanchet@43926
   344
  TyLitFree of name * name
blanchet@43926
   345
blanchet@43926
   346
blanchet@43926
   347
(** Isabelle arities **)
blanchet@43926
   348
blanchet@43926
   349
datatype arity_literal =
blanchet@43926
   350
  TConsLit of name * name * name list |
blanchet@43926
   351
  TVarLit of name * name
blanchet@43926
   352
blanchet@43926
   353
fun gen_TVars 0 = []
blanchet@43934
   354
  | gen_TVars n = ("T_" ^ string_of_int n) :: gen_TVars (n-1)
blanchet@43926
   355
blanchet@43926
   356
fun pack_sort (_,[])  = []
blanchet@43926
   357
  | pack_sort (tvar, "HOL.type" :: srt) =
blanchet@43926
   358
    pack_sort (tvar, srt) (* IGNORE sort "type" *)
blanchet@43926
   359
  | pack_sort (tvar, cls :: srt) =
blanchet@43926
   360
    (`make_type_class cls, `I tvar) :: pack_sort (tvar, srt)
blanchet@43926
   361
blanchet@43927
   362
type arity_clause =
blanchet@43927
   363
  {name: string,
blanchet@43927
   364
   prem_lits: arity_literal list,
blanchet@43927
   365
   concl_lits: arity_literal}
blanchet@43926
   366
blanchet@43926
   367
(* Arity of type constructor "tcon :: (arg1, ..., argN) res" *)
blanchet@43926
   368
fun make_axiom_arity_clause (tcons, name, (cls, args)) =
blanchet@43926
   369
  let
blanchet@43926
   370
    val tvars = gen_TVars (length args)
blanchet@43926
   371
    val tvars_srts = ListPair.zip (tvars, args)
blanchet@43926
   372
  in
blanchet@43927
   373
    {name = name,
blanchet@43927
   374
     prem_lits = map TVarLit (union_all (map pack_sort tvars_srts)),
blanchet@43927
   375
     concl_lits = TConsLit (`make_type_class cls,
blanchet@43927
   376
                            `make_fixed_type_const tcons,
blanchet@43927
   377
                            tvars ~~ tvars)}
blanchet@43926
   378
  end
blanchet@43926
   379
blanchet@43926
   380
fun arity_clause _ _ (_, []) = []
blanchet@43926
   381
  | arity_clause seen n (tcons, ("HOL.type",_)::ars) =  (*ignore*)
blanchet@43926
   382
      arity_clause seen n (tcons,ars)
blanchet@43926
   383
  | arity_clause seen n (tcons, (ar as (class,_)) :: ars) =
blanchet@43926
   384
      if member (op =) seen class then (*multiple arities for the same tycon, class pair*)
blanchet@43926
   385
          make_axiom_arity_clause (tcons, lookup_const tcons ^ "_" ^ class ^ "_" ^ string_of_int n, ar) ::
blanchet@43926
   386
          arity_clause seen (n+1) (tcons,ars)
blanchet@43926
   387
      else
blanchet@43926
   388
          make_axiom_arity_clause (tcons, lookup_const tcons ^ "_" ^ class, ar) ::
blanchet@43926
   389
          arity_clause (class::seen) n (tcons,ars)
blanchet@43926
   390
blanchet@43926
   391
fun multi_arity_clause [] = []
blanchet@43926
   392
  | multi_arity_clause ((tcons, ars) :: tc_arlists) =
blanchet@43926
   393
      arity_clause [] 1 (tcons, ars) @ multi_arity_clause tc_arlists
blanchet@43926
   394
blanchet@43926
   395
(*Generate all pairs (tycon,class,sorts) such that tycon belongs to class in theory thy
blanchet@43926
   396
  provided its arguments have the corresponding sorts.*)
blanchet@43926
   397
fun type_class_pairs thy tycons classes =
blanchet@43934
   398
  let
blanchet@43934
   399
    val alg = Sign.classes_of thy
blanchet@43934
   400
    fun domain_sorts tycon = Sorts.mg_domain alg tycon o single
blanchet@43934
   401
    fun add_class tycon class =
blanchet@43934
   402
      cons (class, domain_sorts tycon class)
blanchet@43934
   403
      handle Sorts.CLASS_ERROR _ => I
blanchet@43934
   404
    fun try_classes tycon = (tycon, fold (add_class tycon) classes [])
blanchet@43934
   405
  in map try_classes tycons end
blanchet@43926
   406
blanchet@43926
   407
(*Proving one (tycon, class) membership may require proving others, so iterate.*)
blanchet@43926
   408
fun iter_type_class_pairs _ _ [] = ([], [])
blanchet@43926
   409
  | iter_type_class_pairs thy tycons classes =
blanchet@43926
   410
      let val cpairs = type_class_pairs thy tycons classes
blanchet@43926
   411
          val newclasses = union_all (union_all (union_all (map (map #2 o #2) cpairs)))
blanchet@43926
   412
            |> subtract (op =) classes |> subtract (op =) HOLogic.typeS
blanchet@43926
   413
          val (classes', cpairs') = iter_type_class_pairs thy tycons newclasses
blanchet@43934
   414
      in (union (op =) classes' classes, union (op =) cpairs' cpairs) end
blanchet@43926
   415
blanchet@43926
   416
fun make_arity_clauses thy tycons =
blanchet@43926
   417
  iter_type_class_pairs thy tycons ##> multi_arity_clause
blanchet@43926
   418
blanchet@43926
   419
blanchet@43926
   420
(** Isabelle class relations **)
blanchet@43926
   421
blanchet@43927
   422
type class_rel_clause =
blanchet@43927
   423
  {name: string,
blanchet@43927
   424
   subclass: name,
blanchet@43927
   425
   superclass: name}
blanchet@43926
   426
blanchet@43926
   427
(*Generate all pairs (sub,super) such that sub is a proper subclass of super in theory thy.*)
blanchet@43926
   428
fun class_pairs _ [] _ = []
blanchet@43926
   429
  | class_pairs thy subs supers =
blanchet@43926
   430
      let
blanchet@43926
   431
        val class_less = Sorts.class_less (Sign.classes_of thy)
blanchet@43926
   432
        fun add_super sub super = class_less (sub, super) ? cons (sub, super)
blanchet@43926
   433
        fun add_supers sub = fold (add_super sub) supers
blanchet@43926
   434
      in fold add_supers subs [] end
blanchet@43926
   435
blanchet@43926
   436
fun make_class_rel_clause (sub,super) =
blanchet@43927
   437
  {name = sub ^ "_" ^ super,
blanchet@43927
   438
   subclass = `make_type_class sub,
blanchet@43927
   439
   superclass = `make_type_class super}
blanchet@43926
   440
blanchet@43926
   441
fun make_class_rel_clauses thy subs supers =
blanchet@43934
   442
  map make_class_rel_clause (class_pairs thy subs supers)
blanchet@43926
   443
blanchet@43926
   444
datatype combterm =
blanchet@43926
   445
  CombConst of name * typ * typ list |
blanchet@43926
   446
  CombVar of name * typ |
blanchet@43926
   447
  CombApp of combterm * combterm
blanchet@43926
   448
blanchet@43926
   449
fun combtyp_of (CombConst (_, T, _)) = T
blanchet@43926
   450
  | combtyp_of (CombVar (_, T)) = T
blanchet@43926
   451
  | combtyp_of (CombApp (t1, _)) = snd (dest_funT (combtyp_of t1))
blanchet@43926
   452
blanchet@43926
   453
(*gets the head of a combinator application, along with the list of arguments*)
blanchet@43926
   454
fun strip_combterm_comb u =
blanchet@43926
   455
    let fun stripc (CombApp(t,u), ts) = stripc (t, u::ts)
blanchet@43926
   456
        |   stripc  x =  x
blanchet@43926
   457
    in stripc(u,[]) end
blanchet@43926
   458
blanchet@43926
   459
fun atyps_of T = fold_atyps (insert (op =)) T []
blanchet@43926
   460
blanchet@43926
   461
fun new_skolem_const_name s num_T_args =
blanchet@43926
   462
  [new_skolem_const_prefix, s, string_of_int num_T_args]
blanchet@43926
   463
  |> space_implode Long_Name.separator
blanchet@43926
   464
blanchet@43926
   465
(* Converts a term (with combinators) into a combterm. Also accumulates sort
blanchet@43926
   466
   infomation. *)
blanchet@43926
   467
fun combterm_from_term thy bs (P $ Q) =
blanchet@43926
   468
    let
blanchet@43926
   469
      val (P', P_atomics_Ts) = combterm_from_term thy bs P
blanchet@43926
   470
      val (Q', Q_atomics_Ts) = combterm_from_term thy bs Q
blanchet@43926
   471
    in (CombApp (P', Q'), union (op =) P_atomics_Ts Q_atomics_Ts) end
blanchet@43926
   472
  | combterm_from_term thy _ (Const (c, T)) =
blanchet@43926
   473
    let
blanchet@43926
   474
      val tvar_list =
blanchet@43926
   475
        (if String.isPrefix old_skolem_const_prefix c then
blanchet@43926
   476
           [] |> Term.add_tvarsT T |> map TVar
blanchet@43926
   477
         else
blanchet@43926
   478
           (c, T) |> Sign.const_typargs thy)
blanchet@43926
   479
      val c' = CombConst (`make_fixed_const c, T, tvar_list)
blanchet@43926
   480
    in (c', atyps_of T) end
blanchet@43926
   481
  | combterm_from_term _ _ (Free (v, T)) =
blanchet@43926
   482
    (CombConst (`make_fixed_var v, T, []), atyps_of T)
blanchet@43926
   483
  | combterm_from_term _ _ (Var (v as (s, _), T)) =
blanchet@43926
   484
    (if String.isPrefix Meson_Clausify.new_skolem_var_prefix s then
blanchet@43926
   485
       let
blanchet@43926
   486
         val Ts = T |> strip_type |> swap |> op ::
blanchet@43926
   487
         val s' = new_skolem_const_name s (length Ts)
blanchet@43926
   488
       in CombConst (`make_fixed_const s', T, Ts) end
blanchet@43926
   489
     else
blanchet@43926
   490
       CombVar ((make_schematic_var v, s), T), atyps_of T)
blanchet@43926
   491
  | combterm_from_term _ bs (Bound j) =
blanchet@43926
   492
    nth bs j
blanchet@43926
   493
    |> (fn (s, T) => (CombConst (`make_bound_var s, T, []), atyps_of T))
blanchet@43926
   494
  | combterm_from_term _ _ (Abs _) = raise Fail "HOL clause: Abs"
blanchet@43926
   495
blanchet@43926
   496
datatype locality = General | Intro | Elim | Simp | Local | Assum | Chained
blanchet@43926
   497
blanchet@43926
   498
(* (quasi-)underapproximation of the truth *)
blanchet@43926
   499
fun is_locality_global Local = false
blanchet@43926
   500
  | is_locality_global Assum = false
blanchet@43926
   501
  | is_locality_global Chained = false
blanchet@43926
   502
  | is_locality_global _ = true
blanchet@43926
   503
blanchet@43484
   504
datatype polymorphism = Polymorphic | Monomorphic | Mangled_Monomorphic
blanchet@43484
   505
datatype type_level =
blanchet@43484
   506
  All_Types | Nonmonotonic_Types | Finite_Types | Const_Arg_Types | No_Types
blanchet@43969
   507
datatype type_heaviness = Heavyweight | Lightweight
blanchet@43484
   508
blanchet@43943
   509
datatype type_sys =
blanchet@43587
   510
  Simple_Types of type_level |
blanchet@43708
   511
  Preds of polymorphism * type_level * type_heaviness |
blanchet@43708
   512
  Tags of polymorphism * type_level * type_heaviness
blanchet@43484
   513
blanchet@43559
   514
fun try_unsuffixes ss s =
blanchet@43559
   515
  fold (fn s' => fn NONE => try (unsuffix s') s | some => some) ss NONE
blanchet@43559
   516
blanchet@43484
   517
fun type_sys_from_string s =
blanchet@43587
   518
  (case try (unprefix "poly_") s of
blanchet@43587
   519
     SOME s => (SOME Polymorphic, s)
blanchet@43484
   520
   | NONE =>
blanchet@43484
   521
     case try (unprefix "mono_") s of
blanchet@43587
   522
       SOME s => (SOME Monomorphic, s)
blanchet@43587
   523
     | NONE =>
blanchet@43587
   524
       case try (unprefix "mangled_") s of
blanchet@43587
   525
         SOME s => (SOME Mangled_Monomorphic, s)
blanchet@43587
   526
       | NONE => (NONE, s))
blanchet@43484
   527
  ||> (fn s =>
blanchet@43559
   528
          (* "_query" and "_bang" are for the ASCII-challenged Mirabelle. *)
blanchet@43559
   529
          case try_unsuffixes ["?", "_query"] s of
blanchet@43484
   530
            SOME s => (Nonmonotonic_Types, s)
blanchet@43484
   531
          | NONE =>
blanchet@43559
   532
            case try_unsuffixes ["!", "_bang"] s of
blanchet@43484
   533
              SOME s => (Finite_Types, s)
blanchet@43484
   534
            | NONE => (All_Types, s))
blanchet@43699
   535
  ||> apsnd (fn s =>
blanchet@43708
   536
                case try (unsuffix "_heavy") s of
blanchet@43969
   537
                  SOME s => (Heavyweight, s)
blanchet@43969
   538
                | NONE => (Lightweight, s))
blanchet@43708
   539
  |> (fn (poly, (level, (heaviness, core))) =>
blanchet@43708
   540
         case (core, (poly, level, heaviness)) of
blanchet@43969
   541
           ("simple", (NONE, _, Lightweight)) => Simple_Types level
blanchet@43723
   542
         | ("preds", (SOME poly, _, _)) => Preds (poly, level, heaviness)
blanchet@43720
   543
         | ("tags", (SOME Polymorphic, All_Types, _)) =>
blanchet@43723
   544
           Tags (Polymorphic, All_Types, heaviness)
blanchet@43755
   545
         | ("tags", (SOME Polymorphic, _, _)) =>
blanchet@43755
   546
           (* The actual light encoding is very unsound. *)
blanchet@43969
   547
           Tags (Polymorphic, level, Heavyweight)
blanchet@43723
   548
         | ("tags", (SOME poly, _, _)) => Tags (poly, level, heaviness)
blanchet@43969
   549
         | ("args", (SOME poly, All_Types (* naja *), Lightweight)) =>
blanchet@43969
   550
           Preds (poly, Const_Arg_Types, Lightweight)
blanchet@43969
   551
         | ("erased", (NONE, All_Types (* naja *), Lightweight)) =>
blanchet@43969
   552
           Preds (Polymorphic, No_Types, Lightweight)
blanchet@43618
   553
         | _ => raise Same.SAME)
blanchet@43618
   554
  handle Same.SAME => error ("Unknown type system: " ^ quote s ^ ".")
blanchet@43484
   555
blanchet@43587
   556
fun polymorphism_of_type_sys (Simple_Types _) = Mangled_Monomorphic
blanchet@43699
   557
  | polymorphism_of_type_sys (Preds (poly, _, _)) = poly
blanchet@43699
   558
  | polymorphism_of_type_sys (Tags (poly, _, _)) = poly
blanchet@43484
   559
blanchet@43587
   560
fun level_of_type_sys (Simple_Types level) = level
blanchet@43699
   561
  | level_of_type_sys (Preds (_, level, _)) = level
blanchet@43699
   562
  | level_of_type_sys (Tags (_, level, _)) = level
blanchet@43699
   563
blanchet@43969
   564
fun heaviness_of_type_sys (Simple_Types _) = Heavyweight
blanchet@43708
   565
  | heaviness_of_type_sys (Preds (_, _, heaviness)) = heaviness
blanchet@43708
   566
  | heaviness_of_type_sys (Tags (_, _, heaviness)) = heaviness
blanchet@43702
   567
blanchet@43557
   568
fun is_type_level_virtually_sound level =
blanchet@43557
   569
  level = All_Types orelse level = Nonmonotonic_Types
blanchet@43484
   570
val is_type_sys_virtually_sound =
blanchet@43484
   571
  is_type_level_virtually_sound o level_of_type_sys
blanchet@43484
   572
blanchet@43484
   573
fun is_type_level_fairly_sound level =
blanchet@43484
   574
  is_type_level_virtually_sound level orelse level = Finite_Types
blanchet@43484
   575
val is_type_sys_fairly_sound = is_type_level_fairly_sound o level_of_type_sys
blanchet@43484
   576
blanchet@43835
   577
fun is_setting_higher_order THF (Simple_Types _) = true
blanchet@43835
   578
  | is_setting_higher_order _ _ = false
blanchet@43835
   579
blanchet@43942
   580
fun choose_format formats (Simple_Types level) =
blanchet@43942
   581
    if member (op =) formats THF then (THF, Simple_Types level)
blanchet@43942
   582
    else if member (op =) formats TFF then (TFF, Simple_Types level)
blanchet@43969
   583
    else choose_format formats (Preds (Mangled_Monomorphic, level, Heavyweight))
blanchet@43942
   584
  | choose_format formats type_sys =
blanchet@43942
   585
    (case hd formats of
blanchet@43942
   586
       CNF_UEQ =>
blanchet@43942
   587
       (CNF_UEQ, case type_sys of
blanchet@43942
   588
                   Preds stuff =>
blanchet@43942
   589
                   (if is_type_sys_fairly_sound type_sys then Preds else Tags)
blanchet@43942
   590
                       stuff
blanchet@43942
   591
                 | _ => type_sys)
blanchet@43942
   592
     | format => (format, type_sys))
blanchet@43942
   593
blanchet@40358
   594
type translated_formula =
blanchet@38991
   595
  {name: string,
blanchet@43511
   596
   locality: locality,
blanchet@43396
   597
   kind: formula_kind,
blanchet@43433
   598
   combformula: (name, typ, combterm) formula,
blanchet@43433
   599
   atomic_types: typ list}
blanchet@38506
   600
blanchet@43511
   601
fun update_combformula f ({name, locality, kind, combformula, atomic_types}
blanchet@43511
   602
                          : translated_formula) =
blanchet@43511
   603
  {name = name, locality = locality, kind = kind, combformula = f combformula,
blanchet@43433
   604
   atomic_types = atomic_types} : translated_formula
blanchet@43413
   605
blanchet@43429
   606
fun fact_lift f ({combformula, ...} : translated_formula) = f combformula
blanchet@43429
   607
blanchet@43905
   608
val type_instance = Sign.typ_instance o Proof_Context.theory_of
blanchet@43905
   609
blanchet@43905
   610
fun insert_type ctxt get_T x xs =
blanchet@43905
   611
  let val T = get_T x in
blanchet@43905
   612
    if exists (curry (type_instance ctxt) T o get_T) xs then xs
blanchet@43905
   613
    else x :: filter_out (curry (type_instance ctxt o swap) T o get_T) xs
blanchet@43905
   614
  end
blanchet@43547
   615
blanchet@43618
   616
(* The Booleans indicate whether all type arguments should be kept. *)
blanchet@43618
   617
datatype type_arg_policy =
blanchet@43618
   618
  Explicit_Type_Args of bool |
blanchet@43618
   619
  Mangled_Type_Args of bool |
blanchet@43618
   620
  No_Type_Args
blanchet@41384
   621
blanchet@43707
   622
fun should_drop_arg_type_args (Simple_Types _) =
blanchet@43707
   623
    false (* since TFF doesn't support overloading *)
blanchet@43707
   624
  | should_drop_arg_type_args type_sys =
blanchet@43707
   625
    level_of_type_sys type_sys = All_Types andalso
blanchet@43969
   626
    heaviness_of_type_sys type_sys = Heavyweight
blanchet@43702
   627
blanchet@43969
   628
fun general_type_arg_policy (Tags (_, All_Types, Heavyweight)) = No_Type_Args
blanchet@43946
   629
  | general_type_arg_policy type_sys =
blanchet@43946
   630
    if level_of_type_sys type_sys = No_Types then
blanchet@43946
   631
      No_Type_Args
blanchet@43946
   632
    else if polymorphism_of_type_sys type_sys = Mangled_Monomorphic then
blanchet@43946
   633
      Mangled_Type_Args (should_drop_arg_type_args type_sys)
blanchet@43946
   634
    else
blanchet@43946
   635
      Explicit_Type_Args (should_drop_arg_type_args type_sys)
blanchet@43434
   636
blanchet@43792
   637
fun type_arg_policy type_sys s =
blanchet@43792
   638
  if s = @{const_name HOL.eq} orelse
blanchet@43807
   639
     (s = app_op_name andalso level_of_type_sys type_sys = Const_Arg_Types) then
blanchet@43792
   640
    No_Type_Args
blanchet@43946
   641
  else if s = type_tag_name then
blanchet@43946
   642
    Explicit_Type_Args false
blanchet@43792
   643
  else
blanchet@43792
   644
    general_type_arg_policy type_sys
blanchet@43088
   645
blanchet@43926
   646
(*Make literals for sorted type variables*)
blanchet@43939
   647
fun generic_sorts_on_type (_, []) = []
blanchet@43939
   648
  | generic_sorts_on_type ((x, i), s :: ss) =
blanchet@43939
   649
    generic_sorts_on_type ((x, i), ss)
blanchet@43934
   650
    |> (if s = the_single @{sort HOL.type} then
blanchet@43934
   651
          I
blanchet@43934
   652
        else if i = ~1 then
blanchet@43934
   653
          cons (TyLitFree (`make_type_class s, `make_fixed_type_var x))
blanchet@43934
   654
        else
blanchet@43934
   655
          cons (TyLitVar (`make_type_class s,
blanchet@43934
   656
                          (make_schematic_type_var (x, i), x))))
blanchet@43939
   657
fun sorts_on_tfree (TFree (s, S)) = generic_sorts_on_type ((s, ~1), S)
blanchet@43939
   658
  | sorts_on_tfree _ = []
blanchet@43939
   659
fun sorts_on_tvar (TVar z) = generic_sorts_on_type z
blanchet@43939
   660
  | sorts_on_tvar _ = []
blanchet@43926
   661
blanchet@43939
   662
(* Given a list of sorted type variables, return a list of type literals. *)
blanchet@43939
   663
fun raw_type_literals_for_types Ts =
blanchet@43939
   664
  union_all (map sorts_on_tfree Ts @ map sorts_on_tvar Ts)
blanchet@43926
   665
blanchet@43939
   666
fun type_literals_for_types type_sys sorts_on_typ Ts =
blanchet@43939
   667
  if level_of_type_sys type_sys = No_Types then []
blanchet@43939
   668
  else union_all (map sorts_on_typ Ts)
blanchet@41385
   669
blanchet@43405
   670
fun mk_aconns c phis =
blanchet@43405
   671
  let val (phis', phi') = split_last phis in
blanchet@43405
   672
    fold_rev (mk_aconn c) phis' phi'
blanchet@43405
   673
  end
blanchet@38506
   674
fun mk_ahorn [] phi = phi
blanchet@43405
   675
  | mk_ahorn phis psi = AConn (AImplies, [mk_aconns AAnd phis, psi])
blanchet@43393
   676
fun mk_aquant _ [] phi = phi
blanchet@43393
   677
  | mk_aquant q xs (phi as AQuant (q', xs', phi')) =
blanchet@43393
   678
    if q = q' then AQuant (q, xs @ xs', phi') else AQuant (q, xs, phi)
blanchet@43393
   679
  | mk_aquant q xs phi = AQuant (q, xs, phi)
blanchet@38506
   680
blanchet@43393
   681
fun close_universally atom_vars phi =
blanchet@41393
   682
  let
blanchet@41393
   683
    fun formula_vars bounds (AQuant (_, xs, phi)) =
blanchet@43397
   684
        formula_vars (map fst xs @ bounds) phi
blanchet@41393
   685
      | formula_vars bounds (AConn (_, phis)) = fold (formula_vars bounds) phis
blanchet@43393
   686
      | formula_vars bounds (AAtom tm) =
blanchet@43397
   687
        union (op =) (atom_vars tm []
blanchet@43397
   688
                      |> filter_out (member (op =) bounds o fst))
blanchet@43393
   689
  in mk_aquant AForall (formula_vars [] phi []) phi end
blanchet@43393
   690
blanchet@43402
   691
fun combterm_vars (CombApp (tm1, tm2)) = fold combterm_vars [tm1, tm2]
blanchet@43393
   692
  | combterm_vars (CombConst _) = I
blanchet@43445
   693
  | combterm_vars (CombVar (name, T)) = insert (op =) (name, SOME T)
blanchet@43545
   694
fun close_combformula_universally phi = close_universally combterm_vars phi
blanchet@43393
   695
blanchet@43393
   696
fun term_vars (ATerm (name as (s, _), tms)) =
blanchet@43839
   697
  is_tptp_variable s ? insert (op =) (name, NONE) #> fold term_vars tms
blanchet@43545
   698
fun close_formula_universally phi = close_universally term_vars phi
blanchet@41393
   699
blanchet@43835
   700
val homo_infinite_type_name = @{type_name ind} (* any infinite type *)
blanchet@43835
   701
val homo_infinite_type = Type (homo_infinite_type_name, [])
blanchet@43835
   702
blanchet@43835
   703
fun fo_term_from_typ higher_order =
blanchet@43835
   704
  let
blanchet@43835
   705
    fun term (Type (s, Ts)) =
blanchet@43835
   706
      ATerm (case (higher_order, s) of
blanchet@43835
   707
               (true, @{type_name bool}) => `I tptp_bool_type
blanchet@43835
   708
             | (true, @{type_name fun}) => `I tptp_fun_type
blanchet@43835
   709
             | _ => if s = homo_infinite_type_name then `I tptp_individual_type
blanchet@43835
   710
                    else `make_fixed_type_const s,
blanchet@43835
   711
             map term Ts)
blanchet@43835
   712
    | term (TFree (s, _)) = ATerm (`make_fixed_type_var s, [])
blanchet@43835
   713
    | term (TVar ((x as (s, _)), _)) =
blanchet@43835
   714
      ATerm ((make_schematic_type_var x, s), [])
blanchet@43835
   715
  in term end
blanchet@43433
   716
blanchet@43433
   717
(* This shouldn't clash with anything else. *)
blanchet@43413
   718
val mangled_type_sep = "\000"
blanchet@43413
   719
blanchet@43433
   720
fun generic_mangled_type_name f (ATerm (name, [])) = f name
blanchet@43433
   721
  | generic_mangled_type_name f (ATerm (name, tys)) =
blanchet@43626
   722
    f name ^ "(" ^ space_implode "," (map (generic_mangled_type_name f) tys)
blanchet@43626
   723
    ^ ")"
blanchet@43413
   724
blanchet@43839
   725
val bool_atype = AType (`I tptp_bool_type)
blanchet@43839
   726
blanchet@43926
   727
fun make_simple_type s =
blanchet@43926
   728
  if s = tptp_bool_type orelse s = tptp_fun_type orelse
blanchet@43926
   729
     s = tptp_individual_type then
blanchet@43926
   730
    s
blanchet@43926
   731
  else
blanchet@43926
   732
    simple_type_prefix ^ ascii_of s
blanchet@43926
   733
blanchet@43835
   734
fun ho_type_from_fo_term higher_order pred_sym ary =
blanchet@43804
   735
  let
blanchet@43804
   736
    fun to_atype ty =
blanchet@43804
   737
      AType ((make_simple_type (generic_mangled_type_name fst ty),
blanchet@43804
   738
              generic_mangled_type_name snd ty))
blanchet@43804
   739
    fun to_afun f1 f2 tys = AFun (f1 (hd tys), f2 (nth tys 1))
blanchet@43839
   740
    fun to_fo 0 ty = if pred_sym then bool_atype else to_atype ty
blanchet@43835
   741
      | to_fo ary (ATerm (_, tys)) = to_afun to_atype (to_fo (ary - 1)) tys
blanchet@43835
   742
    fun to_ho (ty as ATerm ((s, _), tys)) =
blanchet@43835
   743
      if s = tptp_fun_type then to_afun to_ho to_ho tys else to_atype ty
blanchet@43835
   744
  in if higher_order then to_ho else to_fo ary end
blanchet@43804
   745
blanchet@43835
   746
fun mangled_type higher_order pred_sym ary =
blanchet@43835
   747
  ho_type_from_fo_term higher_order pred_sym ary o fo_term_from_typ higher_order
blanchet@43804
   748
blanchet@43835
   749
fun mangled_const_name T_args (s, s') =
blanchet@43804
   750
  let
blanchet@43835
   751
    val ty_args = map (fo_term_from_typ false) T_args
blanchet@43804
   752
    fun type_suffix f g =
blanchet@43804
   753
      fold_rev (curry (op ^) o g o prefix mangled_type_sep
blanchet@43804
   754
                o generic_mangled_type_name f) ty_args ""
blanchet@43804
   755
  in (s ^ type_suffix fst ascii_of, s' ^ type_suffix snd I) end
blanchet@43413
   756
blanchet@43413
   757
val parse_mangled_ident =
blanchet@43413
   758
  Scan.many1 (not o member (op =) ["(", ")", ","]) >> implode
blanchet@43413
   759
blanchet@43413
   760
fun parse_mangled_type x =
blanchet@43413
   761
  (parse_mangled_ident
blanchet@43413
   762
   -- Scan.optional ($$ "(" |-- Scan.optional parse_mangled_types [] --| $$ ")")
blanchet@43413
   763
                    [] >> ATerm) x
blanchet@43413
   764
and parse_mangled_types x =
blanchet@43413
   765
  (parse_mangled_type ::: Scan.repeat ($$ "," |-- parse_mangled_type)) x
blanchet@43413
   766
blanchet@43413
   767
fun unmangled_type s =
blanchet@43413
   768
  s |> suffix ")" |> raw_explode
blanchet@43413
   769
    |> Scan.finite Symbol.stopper
blanchet@43413
   770
           (Scan.error (!! (fn _ => raise Fail ("unrecognized mangled type " ^
blanchet@43413
   771
                                                quote s)) parse_mangled_type))
blanchet@43413
   772
    |> fst
blanchet@43413
   773
blanchet@43432
   774
val unmangled_const_name = space_explode mangled_type_sep #> hd
blanchet@43413
   775
fun unmangled_const s =
blanchet@43413
   776
  let val ss = space_explode mangled_type_sep s in
blanchet@43413
   777
    (hd ss, map unmangled_type (tl ss))
blanchet@43413
   778
  end
blanchet@43413
   779
blanchet@43858
   780
fun introduce_proxies format type_sys =
blanchet@43439
   781
  let
blanchet@43858
   782
    fun intro top_level (CombApp (tm1, tm2)) =
blanchet@43858
   783
        CombApp (intro top_level tm1, intro false tm2)
blanchet@43858
   784
      | intro top_level (CombConst (name as (s, _), T, T_args)) =
blanchet@43441
   785
        (case proxify_const s of
blanchet@43858
   786
           SOME (_, proxy_base) =>
blanchet@43841
   787
           if top_level orelse is_setting_higher_order format type_sys then
blanchet@43841
   788
             case (top_level, s) of
blanchet@43841
   789
               (_, "c_False") => (`I tptp_false, [])
blanchet@43841
   790
             | (_, "c_True") => (`I tptp_true, [])
blanchet@43841
   791
             | (false, "c_Not") => (`I tptp_not, [])
blanchet@43841
   792
             | (false, "c_conj") => (`I tptp_and, [])
blanchet@43841
   793
             | (false, "c_disj") => (`I tptp_or, [])
blanchet@43841
   794
             | (false, "c_implies") => (`I tptp_implies, [])
blanchet@43841
   795
             | (false, s) =>
blanchet@43858
   796
               if is_tptp_equal s then (`I tptp_equal, [])
blanchet@43858
   797
               else (proxy_base |>> prefix const_prefix, T_args)
blanchet@43841
   798
             | _ => (name, [])
blanchet@43440
   799
           else
blanchet@43445
   800
             (proxy_base |>> prefix const_prefix, T_args)
blanchet@43445
   801
          | NONE => (name, T_args))
blanchet@43445
   802
        |> (fn (name, T_args) => CombConst (name, T, T_args))
blanchet@43858
   803
      | intro _ tm = tm
blanchet@43858
   804
  in intro true end
blanchet@43439
   805
blanchet@43835
   806
fun combformula_from_prop thy format type_sys eq_as_iff =
blanchet@38506
   807
  let
blanchet@43439
   808
    fun do_term bs t atomic_types =
blanchet@41388
   809
      combterm_from_term thy bs (Envir.eta_contract t)
blanchet@43835
   810
      |>> (introduce_proxies format type_sys #> AAtom)
blanchet@43439
   811
      ||> union (op =) atomic_types
blanchet@38506
   812
    fun do_quant bs q s T t' =
blanchet@38743
   813
      let val s = Name.variant (map fst bs) s in
blanchet@38743
   814
        do_formula ((s, T) :: bs) t'
blanchet@43433
   815
        #>> mk_aquant q [(`make_bound_var s, SOME T)]
blanchet@38743
   816
      end
blanchet@38506
   817
    and do_conn bs c t1 t2 =
blanchet@38506
   818
      do_formula bs t1 ##>> do_formula bs t2
blanchet@43402
   819
      #>> uncurry (mk_aconn c)
blanchet@38506
   820
    and do_formula bs t =
blanchet@38506
   821
      case t of
blanchet@43937
   822
        @{const Trueprop} $ t1 => do_formula bs t1
blanchet@43937
   823
      | @{const Not} $ t1 => do_formula bs t1 #>> mk_anot
blanchet@38506
   824
      | Const (@{const_name All}, _) $ Abs (s, T, t') =>
blanchet@38506
   825
        do_quant bs AForall s T t'
blanchet@38506
   826
      | Const (@{const_name Ex}, _) $ Abs (s, T, t') =>
blanchet@38506
   827
        do_quant bs AExists s T t'
haftmann@39028
   828
      | @{const HOL.conj} $ t1 $ t2 => do_conn bs AAnd t1 t2
haftmann@39028
   829
      | @{const HOL.disj} $ t1 $ t2 => do_conn bs AOr t1 t2
haftmann@39019
   830
      | @{const HOL.implies} $ t1 $ t2 => do_conn bs AImplies t1 t2
haftmann@39093
   831
      | Const (@{const_name HOL.eq}, Type (_, [@{typ bool}, _])) $ t1 $ t2 =>
blanchet@41388
   832
        if eq_as_iff then do_conn bs AIff t1 t2 else do_term bs t
blanchet@41388
   833
      | _ => do_term bs t
blanchet@38506
   834
  in do_formula [] end
blanchet@38506
   835
blanchet@43615
   836
fun presimplify_term ctxt =
blanchet@43615
   837
  Skip_Proof.make_thm (Proof_Context.theory_of ctxt)
blanchet@43615
   838
  #> Meson.presimplify ctxt
blanchet@43615
   839
  #> prop_of
blanchet@38506
   840
wenzelm@41739
   841
fun concealed_bound_name j = sledgehammer_weak_prefix ^ string_of_int j
blanchet@38506
   842
fun conceal_bounds Ts t =
blanchet@38506
   843
  subst_bounds (map (Free o apfst concealed_bound_name)
blanchet@38506
   844
                    (0 upto length Ts - 1 ~~ Ts), t)
blanchet@38506
   845
fun reveal_bounds Ts =
blanchet@38506
   846
  subst_atomic (map (fn (j, T) => (Free (concealed_bound_name j, T), Bound j))
blanchet@38506
   847
                    (0 upto length Ts - 1 ~~ Ts))
blanchet@38506
   848
blanchet@43612
   849
fun extensionalize_term ctxt t =
blanchet@43612
   850
  let val thy = Proof_Context.theory_of ctxt in
blanchet@43612
   851
    t |> cterm_of thy |> Meson.extensionalize_conv ctxt
blanchet@43612
   852
      |> prop_of |> Logic.dest_equals |> snd
blanchet@43612
   853
  end
blanchet@38831
   854
blanchet@38506
   855
fun introduce_combinators_in_term ctxt kind t =
wenzelm@43232
   856
  let val thy = Proof_Context.theory_of ctxt in
blanchet@38716
   857
    if Meson.is_fol_term thy t then
blanchet@38716
   858
      t
blanchet@38716
   859
    else
blanchet@38716
   860
      let
blanchet@38716
   861
        fun aux Ts t =
blanchet@38716
   862
          case t of
blanchet@38716
   863
            @{const Not} $ t1 => @{const Not} $ aux Ts t1
blanchet@38716
   864
          | (t0 as Const (@{const_name All}, _)) $ Abs (s, T, t') =>
blanchet@38716
   865
            t0 $ Abs (s, T, aux (T :: Ts) t')
blanchet@38890
   866
          | (t0 as Const (@{const_name All}, _)) $ t1 =>
blanchet@38890
   867
            aux Ts (t0 $ eta_expand Ts t1 1)
blanchet@38716
   868
          | (t0 as Const (@{const_name Ex}, _)) $ Abs (s, T, t') =>
blanchet@38716
   869
            t0 $ Abs (s, T, aux (T :: Ts) t')
blanchet@38890
   870
          | (t0 as Const (@{const_name Ex}, _)) $ t1 =>
blanchet@38890
   871
            aux Ts (t0 $ eta_expand Ts t1 1)
haftmann@39028
   872
          | (t0 as @{const HOL.conj}) $ t1 $ t2 => t0 $ aux Ts t1 $ aux Ts t2
haftmann@39028
   873
          | (t0 as @{const HOL.disj}) $ t1 $ t2 => t0 $ aux Ts t1 $ aux Ts t2
haftmann@39019
   874
          | (t0 as @{const HOL.implies}) $ t1 $ t2 => t0 $ aux Ts t1 $ aux Ts t2
haftmann@39093
   875
          | (t0 as Const (@{const_name HOL.eq}, Type (_, [@{typ bool}, _])))
blanchet@38716
   876
              $ t1 $ t2 =>
blanchet@38716
   877
            t0 $ aux Ts t1 $ aux Ts t2
blanchet@38716
   878
          | _ => if not (exists_subterm (fn Abs _ => true | _ => false) t) then
blanchet@38716
   879
                   t
blanchet@38716
   880
                 else
blanchet@38716
   881
                   t |> conceal_bounds Ts
blanchet@38716
   882
                     |> Envir.eta_contract
blanchet@38716
   883
                     |> cterm_of thy
blanchet@40071
   884
                     |> Meson_Clausify.introduce_combinators_in_cterm
blanchet@38716
   885
                     |> prop_of |> Logic.dest_equals |> snd
blanchet@38716
   886
                     |> reveal_bounds Ts
blanchet@39616
   887
        val (t, ctxt') = Variable.import_terms true [t] ctxt |>> the_single
blanchet@38716
   888
      in t |> aux [] |> singleton (Variable.export_terms ctxt' ctxt) end
blanchet@38716
   889
      handle THM _ =>
blanchet@38716
   890
             (* A type variable of sort "{}" will make abstraction fail. *)
blanchet@38836
   891
             if kind = Conjecture then HOLogic.false_const
blanchet@38836
   892
             else HOLogic.true_const
blanchet@38716
   893
  end
blanchet@38506
   894
blanchet@38506
   895
(* Metis's use of "resolve_tac" freezes the schematic variables. We simulate the
blanchet@43224
   896
   same in Sledgehammer to prevent the discovery of unreplayable proofs. *)
blanchet@38506
   897
fun freeze_term t =
blanchet@38506
   898
  let
blanchet@38506
   899
    fun aux (t $ u) = aux t $ aux u
blanchet@38506
   900
      | aux (Abs (s, T, t)) = Abs (s, T, aux t)
blanchet@38506
   901
      | aux (Var ((s, i), T)) =
blanchet@38506
   902
        Free (sledgehammer_weak_prefix ^ s ^ "_" ^ string_of_int i, T)
blanchet@38506
   903
      | aux t = t
blanchet@38506
   904
  in t |> exists_subterm is_Var t ? aux end
blanchet@38506
   905
blanchet@43937
   906
fun preprocess_prop ctxt presimp kind t =
blanchet@38506
   907
  let
wenzelm@43232
   908
    val thy = Proof_Context.theory_of ctxt
blanchet@38831
   909
    val t = t |> Envir.beta_eta_contract
blanchet@43785
   910
              |> transform_elim_prop
blanchet@41459
   911
              |> Object_Logic.atomize_term thy
blanchet@43434
   912
    val need_trueprop = (fastype_of t = @{typ bool})
blanchet@43937
   913
  in
blanchet@43937
   914
    t |> need_trueprop ? HOLogic.mk_Trueprop
blanchet@43937
   915
      |> Raw_Simplifier.rewrite_term thy (Meson.unfold_set_const_simps ctxt) []
blanchet@43937
   916
      |> extensionalize_term ctxt
blanchet@43937
   917
      |> presimp ? presimplify_term ctxt
blanchet@43961
   918
      |> perhaps (try (HOLogic.dest_Trueprop))
blanchet@43937
   919
      |> introduce_combinators_in_term ctxt kind
blanchet@43937
   920
  end
blanchet@43937
   921
blanchet@43937
   922
(* making fact and conjecture formulas *)
blanchet@43937
   923
fun make_formula thy format type_sys eq_as_iff name loc kind t =
blanchet@43937
   924
  let
blanchet@43803
   925
    val (combformula, atomic_types) =
blanchet@43835
   926
      combformula_from_prop thy format type_sys eq_as_iff t []
blanchet@38506
   927
  in
blanchet@43511
   928
    {name = name, locality = loc, kind = kind, combformula = combformula,
blanchet@43433
   929
     atomic_types = atomic_types}
blanchet@38506
   930
  end
blanchet@38506
   931
blanchet@43937
   932
fun make_fact ctxt format type_sys keep_trivial eq_as_iff preproc presimp
blanchet@43835
   933
              ((name, loc), t) =
blanchet@43937
   934
  let val thy = Proof_Context.theory_of ctxt in
blanchet@43937
   935
    case (keep_trivial,
blanchet@43937
   936
          t |> preproc ? preprocess_prop ctxt presimp Axiom
blanchet@43937
   937
            |> make_formula thy format type_sys eq_as_iff name loc Axiom) of
blanchet@43937
   938
      (false,
blanchet@43937
   939
       formula as {combformula = AAtom (CombConst ((s, _), _, _)), ...}) =>
blanchet@43937
   940
      if s = tptp_true then NONE else SOME formula
blanchet@43937
   941
    | (_, formula) => SOME formula
blanchet@43937
   942
  end
blanchet@43432
   943
blanchet@43937
   944
fun make_conjecture ctxt format prem_kind type_sys preproc ts =
blanchet@43937
   945
  let
blanchet@43937
   946
    val thy = Proof_Context.theory_of ctxt
blanchet@43937
   947
    val last = length ts - 1
blanchet@43937
   948
  in
blanchet@43580
   949
    map2 (fn j => fn t =>
blanchet@43580
   950
             let
blanchet@43580
   951
               val (kind, maybe_negate) =
blanchet@43580
   952
                 if j = last then
blanchet@43580
   953
                   (Conjecture, I)
blanchet@43580
   954
                 else
blanchet@43580
   955
                   (prem_kind,
blanchet@43580
   956
                    if prem_kind = Conjecture then update_combformula mk_anot
blanchet@43580
   957
                    else I)
blanchet@43580
   958
              in
blanchet@43939
   959
                t |> preproc ? (preprocess_prop ctxt true kind #> freeze_term)
blanchet@43937
   960
                  |> make_formula thy format type_sys true (string_of_int j)
blanchet@43937
   961
                                  General kind
blanchet@43803
   962
                  |> maybe_negate
blanchet@43580
   963
              end)
blanchet@38836
   964
         (0 upto last) ts
blanchet@38836
   965
  end
blanchet@38506
   966
blanchet@43552
   967
(** Finite and infinite type inference **)
blanchet@43552
   968
blanchet@43755
   969
fun deep_freeze_atyp (TVar (_, S)) = TFree ("v", S)
blanchet@43755
   970
  | deep_freeze_atyp T = T
blanchet@43755
   971
val deep_freeze_type = map_atyps deep_freeze_atyp
blanchet@43755
   972
blanchet@43552
   973
(* Finite types such as "unit", "bool", "bool * bool", and "bool => bool" are
blanchet@43552
   974
   dangerous because their "exhaust" properties can easily lead to unsound ATP
blanchet@43552
   975
   proofs. On the other hand, all HOL infinite types can be given the same
blanchet@43552
   976
   models in first-order logic (via Löwenheim-Skolem). *)
blanchet@43552
   977
blanchet@43755
   978
fun should_encode_type ctxt (nonmono_Ts as _ :: _) _ T =
blanchet@43755
   979
    exists (curry (type_instance ctxt) (deep_freeze_type T)) nonmono_Ts
blanchet@43707
   980
  | should_encode_type _ _ All_Types _ = true
blanchet@43552
   981
  | should_encode_type ctxt _ Finite_Types T = is_type_surely_finite ctxt T
blanchet@43552
   982
  | should_encode_type _ _ _ _ = false
blanchet@43552
   983
blanchet@43708
   984
fun should_predicate_on_type ctxt nonmono_Ts (Preds (_, level, heaviness))
blanchet@43705
   985
                             should_predicate_on_var T =
blanchet@43969
   986
    (heaviness = Heavyweight orelse should_predicate_on_var ()) andalso
blanchet@43747
   987
    should_encode_type ctxt nonmono_Ts level T
blanchet@43705
   988
  | should_predicate_on_type _ _ _ _ _ = false
blanchet@43552
   989
blanchet@43707
   990
fun is_var_or_bound_var (CombConst ((s, _), _, _)) =
blanchet@43707
   991
    String.isPrefix bound_var_prefix s
blanchet@43707
   992
  | is_var_or_bound_var (CombVar _) = true
blanchet@43707
   993
  | is_var_or_bound_var _ = false
blanchet@43707
   994
blanchet@43700
   995
datatype tag_site = Top_Level | Eq_Arg | Elsewhere
blanchet@43700
   996
blanchet@43700
   997
fun should_tag_with_type _ _ _ Top_Level _ _ = false
blanchet@43708
   998
  | should_tag_with_type ctxt nonmono_Ts (Tags (_, level, heaviness)) site u T =
blanchet@43708
   999
    (case heaviness of
blanchet@43969
  1000
       Heavyweight => should_encode_type ctxt nonmono_Ts level T
blanchet@43969
  1001
     | Lightweight =>
blanchet@43707
  1002
       case (site, is_var_or_bound_var u) of
blanchet@43707
  1003
         (Eq_Arg, true) => should_encode_type ctxt nonmono_Ts level T
blanchet@43700
  1004
       | _ => false)
blanchet@43700
  1005
  | should_tag_with_type _ _ _ _ _ _ = false
blanchet@43552
  1006
blanchet@43835
  1007
fun homogenized_type ctxt nonmono_Ts level =
blanchet@43835
  1008
  let
blanchet@43835
  1009
    val should_encode = should_encode_type ctxt nonmono_Ts level
blanchet@43835
  1010
    fun homo 0 T = if should_encode T then T else homo_infinite_type
blanchet@43835
  1011
      | homo ary (Type (@{type_name fun}, [T1, T2])) =
blanchet@43835
  1012
        homo 0 T1 --> homo (ary - 1) T2
blanchet@43835
  1013
      | homo _ _ = raise Fail "expected function type"
blanchet@43835
  1014
  in homo end
blanchet@43552
  1015
blanchet@43444
  1016
(** "hBOOL" and "hAPP" **)
blanchet@41561
  1017
blanchet@43445
  1018
type sym_info =
blanchet@43905
  1019
  {pred_sym : bool, min_ary : int, max_ary : int, types : typ list}
blanchet@43434
  1020
blanchet@43905
  1021
fun add_combterm_syms_to_table ctxt explicit_apply =
blanchet@43429
  1022
  let
blanchet@43905
  1023
    fun consider_var_arity const_T var_T max_ary =
blanchet@43905
  1024
      let
blanchet@43905
  1025
        fun iter ary T =
blanchet@43905
  1026
          if ary = max_ary orelse type_instance ctxt (var_T, T) then ary
blanchet@43905
  1027
          else iter (ary + 1) (range_type T)
blanchet@43905
  1028
      in iter 0 const_T end
blanchet@43905
  1029
    fun add top_level tm (accum as (ho_var_Ts, sym_tab)) =
blanchet@43429
  1030
      let val (head, args) = strip_combterm_comb tm in
blanchet@43429
  1031
        (case head of
blanchet@43434
  1032
           CombConst ((s, _), T, _) =>
blanchet@43429
  1033
           if String.isPrefix bound_var_prefix s then
blanchet@43905
  1034
             if explicit_apply = NONE andalso can dest_funT T then
blanchet@43905
  1035
               let
blanchet@43905
  1036
                 fun repair_min_arity {pred_sym, min_ary, max_ary, types} =
blanchet@43905
  1037
                   {pred_sym = pred_sym,
blanchet@43905
  1038
                    min_ary =
blanchet@43905
  1039
                      fold (fn T' => consider_var_arity T' T) types min_ary,
blanchet@43905
  1040
                    max_ary = max_ary, types = types}
blanchet@43905
  1041
                 val ho_var_Ts' = ho_var_Ts |> insert_type ctxt I T
blanchet@43905
  1042
               in
blanchet@43905
  1043
                 if pointer_eq (ho_var_Ts', ho_var_Ts) then accum
blanchet@43905
  1044
                 else (ho_var_Ts', Symtab.map (K repair_min_arity) sym_tab)
blanchet@43905
  1045
               end
blanchet@43905
  1046
             else
blanchet@43905
  1047
               accum
blanchet@43429
  1048
           else
blanchet@43905
  1049
             let
blanchet@43905
  1050
               val ary = length args
blanchet@43905
  1051
             in
blanchet@43905
  1052
               (ho_var_Ts,
blanchet@43905
  1053
                case Symtab.lookup sym_tab s of
blanchet@43905
  1054
                  SOME {pred_sym, min_ary, max_ary, types} =>
blanchet@43905
  1055
                  let
blanchet@43905
  1056
                    val types' = types |> insert_type ctxt I T
blanchet@43905
  1057
                    val min_ary =
blanchet@43905
  1058
                      if is_some explicit_apply orelse
blanchet@43905
  1059
                         pointer_eq (types', types) then
blanchet@43905
  1060
                        min_ary
blanchet@43905
  1061
                      else
blanchet@43905
  1062
                        fold (consider_var_arity T) ho_var_Ts min_ary
blanchet@43905
  1063
                  in
blanchet@43905
  1064
                    Symtab.update (s, {pred_sym = pred_sym andalso top_level,
blanchet@43905
  1065
                                       min_ary = Int.min (ary, min_ary),
blanchet@43905
  1066
                                       max_ary = Int.max (ary, max_ary),
blanchet@43905
  1067
                                       types = types'})
blanchet@43905
  1068
                                  sym_tab
blanchet@43905
  1069
                  end
blanchet@43905
  1070
                | NONE =>
blanchet@43905
  1071
                  let
blanchet@43905
  1072
                    val min_ary =
blanchet@43905
  1073
                      case explicit_apply of
blanchet@43905
  1074
                        SOME true => 0
blanchet@43905
  1075
                      | SOME false => ary
blanchet@43905
  1076
                      | NONE => fold (consider_var_arity T) ho_var_Ts ary
blanchet@43905
  1077
                  in
blanchet@43905
  1078
                    Symtab.update_new (s, {pred_sym = top_level,
blanchet@43905
  1079
                                           min_ary = min_ary, max_ary = ary,
blanchet@43905
  1080
                                           types = [T]})
blanchet@43905
  1081
                                      sym_tab
blanchet@43905
  1082
                  end)
blanchet@43905
  1083
             end
blanchet@43905
  1084
         | _ => accum)
blanchet@43905
  1085
        |> fold (add false) args
blanchet@43429
  1086
      end
blanchet@43905
  1087
  in add true end
blanchet@43905
  1088
fun add_fact_syms_to_table ctxt explicit_apply =
blanchet@43905
  1089
  fact_lift (formula_fold NONE
blanchet@43905
  1090
                          (K (add_combterm_syms_to_table ctxt explicit_apply)))
blanchet@38506
  1091
blanchet@43546
  1092
val default_sym_table_entries : (string * sym_info) list =
blanchet@43905
  1093
  [(tptp_equal, {pred_sym = true, min_ary = 2, max_ary = 2, types = []}),
blanchet@43905
  1094
   (tptp_old_equal, {pred_sym = true, min_ary = 2, max_ary = 2, types = []}),
blanchet@43807
  1095
   (make_fixed_const predicator_name,
blanchet@43905
  1096
    {pred_sym = true, min_ary = 1, max_ary = 1, types = []})] @
blanchet@43439
  1097
  ([tptp_false, tptp_true]
blanchet@43905
  1098
   |> map (rpair {pred_sym = true, min_ary = 0, max_ary = 0, types = []}))
blanchet@41388
  1099
blanchet@43905
  1100
fun sym_table_for_facts ctxt explicit_apply facts =
blanchet@43905
  1101
  Symtab.empty
blanchet@43905
  1102
  |> fold Symtab.default default_sym_table_entries
blanchet@43905
  1103
  |> pair [] |> fold (add_fact_syms_to_table ctxt explicit_apply) facts |> snd
blanchet@38506
  1104
blanchet@43429
  1105
fun min_arity_of sym_tab s =
blanchet@43429
  1106
  case Symtab.lookup sym_tab s of
blanchet@43445
  1107
    SOME ({min_ary, ...} : sym_info) => min_ary
blanchet@43429
  1108
  | NONE =>
blanchet@43429
  1109
    case strip_prefix_and_unascii const_prefix s of
blanchet@43418
  1110
      SOME s =>
blanchet@43441
  1111
      let val s = s |> unmangled_const_name |> invert_const in
blanchet@43807
  1112
        if s = predicator_name then 1
blanchet@43807
  1113
        else if s = app_op_name then 2
blanchet@43807
  1114
        else if s = type_pred_name then 1
blanchet@43428
  1115
        else 0
blanchet@43418
  1116
      end
blanchet@38506
  1117
    | NONE => 0
blanchet@38506
  1118
blanchet@38506
  1119
(* True if the constant ever appears outside of the top-level position in
blanchet@38506
  1120
   literals, or if it appears with different arities (e.g., because of different
blanchet@38506
  1121
   type instantiations). If false, the constant always receives all of its
blanchet@38506
  1122
   arguments and is used as a predicate. *)
blanchet@43429
  1123
fun is_pred_sym sym_tab s =
blanchet@43429
  1124
  case Symtab.lookup sym_tab s of
blanchet@43445
  1125
    SOME ({pred_sym, min_ary, max_ary, ...} : sym_info) =>
blanchet@43445
  1126
    pred_sym andalso min_ary = max_ary
blanchet@43429
  1127
  | NONE => false
blanchet@38506
  1128
blanchet@43439
  1129
val predicator_combconst =
blanchet@43807
  1130
  CombConst (`make_fixed_const predicator_name, @{typ "bool => bool"}, [])
blanchet@43439
  1131
fun predicator tm = CombApp (predicator_combconst, tm)
blanchet@38506
  1132
blanchet@43439
  1133
fun introduce_predicators_in_combterm sym_tab tm =
blanchet@43413
  1134
  case strip_combterm_comb tm of
blanchet@43413
  1135
    (CombConst ((s, _), _, _), _) =>
blanchet@43439
  1136
    if is_pred_sym sym_tab s then tm else predicator tm
blanchet@43439
  1137
  | _ => predicator tm
blanchet@38506
  1138
blanchet@43415
  1139
fun list_app head args = fold (curry (CombApp o swap)) args head
blanchet@38506
  1140
blanchet@43415
  1141
fun explicit_app arg head =
blanchet@43415
  1142
  let
blanchet@43433
  1143
    val head_T = combtyp_of head
blanchet@43563
  1144
    val (arg_T, res_T) = dest_funT head_T
blanchet@43415
  1145
    val explicit_app =
blanchet@43807
  1146
      CombConst (`make_fixed_const app_op_name, head_T --> head_T,
blanchet@43563
  1147
                 [arg_T, res_T])
blanchet@43415
  1148
  in list_app explicit_app [head, arg] end
blanchet@43415
  1149
fun list_explicit_app head args = fold explicit_app args head
blanchet@43415
  1150
blanchet@43436
  1151
fun introduce_explicit_apps_in_combterm sym_tab =
blanchet@43415
  1152
  let
blanchet@43415
  1153
    fun aux tm =
blanchet@43415
  1154
      case strip_combterm_comb tm of
blanchet@43415
  1155
        (head as CombConst ((s, _), _, _), args) =>
blanchet@43415
  1156
        args |> map aux
blanchet@43428
  1157
             |> chop (min_arity_of sym_tab s)
blanchet@43415
  1158
             |>> list_app head
blanchet@43415
  1159
             |-> list_explicit_app
blanchet@43415
  1160
      | (head, args) => list_explicit_app head (map aux args)
blanchet@43415
  1161
  in aux end
blanchet@43415
  1162
blanchet@43618
  1163
fun chop_fun 0 T = ([], T)
blanchet@43618
  1164
  | chop_fun n (Type (@{type_name fun}, [dom_T, ran_T])) =
blanchet@43618
  1165
    chop_fun (n - 1) ran_T |>> cons dom_T
blanchet@43618
  1166
  | chop_fun _ _ = raise Fail "unexpected non-function"
blanchet@43618
  1167
blanchet@43651
  1168
fun filter_type_args _ _ _ [] = []
blanchet@43651
  1169
  | filter_type_args thy s arity T_args =
blanchet@43705
  1170
    let
blanchet@43705
  1171
      (* will throw "TYPE" for pseudo-constants *)
blanchet@43807
  1172
      val U = if s = app_op_name then
blanchet@43705
  1173
                @{typ "('a => 'b) => 'a => 'b"} |> Logic.varifyT_global
blanchet@43705
  1174
              else
blanchet@43705
  1175
                s |> Sign.the_const_type thy
blanchet@43705
  1176
    in
blanchet@43652
  1177
      case Term.add_tvarsT (U |> chop_fun arity |> snd) [] of
blanchet@43652
  1178
        [] => []
blanchet@43652
  1179
      | res_U_vars =>
blanchet@43652
  1180
        let val U_args = (s, U) |> Sign.const_typargs thy in
blanchet@43652
  1181
          U_args ~~ T_args
blanchet@43652
  1182
          |> map_filter (fn (U, T) =>
blanchet@43652
  1183
                            if member (op =) res_U_vars (dest_TVar U) then
blanchet@43652
  1184
                              SOME T
blanchet@43652
  1185
                            else
blanchet@43652
  1186
                              NONE)
blanchet@43652
  1187
        end
blanchet@43651
  1188
    end
blanchet@43651
  1189
    handle TYPE _ => T_args
blanchet@43618
  1190
blanchet@43835
  1191
fun enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys =
blanchet@43618
  1192
  let
blanchet@43618
  1193
    val thy = Proof_Context.theory_of ctxt
blanchet@43618
  1194
    fun aux arity (CombApp (tm1, tm2)) =
blanchet@43618
  1195
        CombApp (aux (arity + 1) tm1, aux 0 tm2)
blanchet@43618
  1196
      | aux arity (CombConst (name as (s, _), T, T_args)) =
blanchet@43571
  1197
        let
blanchet@43571
  1198
          val level = level_of_type_sys type_sys
blanchet@43571
  1199
          val (T, T_args) =
blanchet@43571
  1200
            (* Aggressively merge most "hAPPs" if the type system is unsound
blanchet@43571
  1201
               anyway, by distinguishing overloads only on the homogenized
blanchet@43708
  1202
               result type. Don't do it for lightweight type systems, though,
blanchet@43708
  1203
               since it leads to too many unsound proofs. *)
blanchet@43807
  1204
            if s = const_prefix ^ app_op_name andalso
blanchet@43591
  1205
               length T_args = 2 andalso
blanchet@43707
  1206
               not (is_type_sys_virtually_sound type_sys) andalso
blanchet@43969
  1207
               heaviness_of_type_sys type_sys = Heavyweight then
blanchet@43835
  1208
              T_args |> map (homogenized_type ctxt nonmono_Ts level 0)
blanchet@43571
  1209
                     |> (fn Ts => let val T = hd Ts --> nth Ts 1 in
blanchet@43702
  1210
                                    (T --> T, tl Ts)
blanchet@43571
  1211
                                  end)
blanchet@43571
  1212
            else
blanchet@43571
  1213
              (T, T_args)
blanchet@43571
  1214
        in
blanchet@43571
  1215
          (case strip_prefix_and_unascii const_prefix s of
blanchet@43571
  1216
             NONE => (name, T_args)
blanchet@43571
  1217
           | SOME s'' =>
blanchet@43618
  1218
             let
blanchet@43618
  1219
               val s'' = invert_const s''
blanchet@43702
  1220
               fun filtered_T_args false = T_args
blanchet@43702
  1221
                 | filtered_T_args true = filter_type_args thy s'' arity T_args
blanchet@43618
  1222
             in
blanchet@43571
  1223
               case type_arg_policy type_sys s'' of
blanchet@43702
  1224
                 Explicit_Type_Args drop_args =>
blanchet@43702
  1225
                 (name, filtered_T_args drop_args)
blanchet@43702
  1226
               | Mangled_Type_Args drop_args =>
blanchet@43835
  1227
                 (mangled_const_name (filtered_T_args drop_args) name, [])
blanchet@43618
  1228
               | No_Type_Args => (name, [])
blanchet@43571
  1229
             end)
blanchet@43571
  1230
          |> (fn (name, T_args) => CombConst (name, T, T_args))
blanchet@43571
  1231
        end
blanchet@43618
  1232
      | aux _ tm = tm
blanchet@43618
  1233
  in aux 0 end
blanchet@43444
  1234
blanchet@43803
  1235
fun repair_combterm ctxt format nonmono_Ts type_sys sym_tab =
blanchet@43835
  1236
  not (is_setting_higher_order format type_sys)
blanchet@43835
  1237
  ? (introduce_explicit_apps_in_combterm sym_tab
blanchet@43835
  1238
     #> introduce_predicators_in_combterm sym_tab)
blanchet@43835
  1239
  #> enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys
blanchet@43803
  1240
fun repair_fact ctxt format nonmono_Ts type_sys sym_tab =
blanchet@43571
  1241
  update_combformula (formula_map
blanchet@43803
  1242
      (repair_combterm ctxt format nonmono_Ts type_sys sym_tab))
blanchet@43444
  1243
blanchet@43444
  1244
(** Helper facts **)
blanchet@43444
  1245
blanchet@43926
  1246
(* The Boolean indicates that a fairly sound type encoding is needed. *)
blanchet@43926
  1247
val helper_table =
blanchet@43926
  1248
  [("COMBI", (false, @{thms Meson.COMBI_def})),
blanchet@43926
  1249
   ("COMBK", (false, @{thms Meson.COMBK_def})),
blanchet@43926
  1250
   ("COMBB", (false, @{thms Meson.COMBB_def})),
blanchet@43926
  1251
   ("COMBC", (false, @{thms Meson.COMBC_def})),
blanchet@43926
  1252
   ("COMBS", (false, @{thms Meson.COMBS_def})),
blanchet@43926
  1253
   ("fequal",
blanchet@43926
  1254
    (* This is a lie: Higher-order equality doesn't need a sound type encoding.
blanchet@43926
  1255
       However, this is done so for backward compatibility: Including the
blanchet@43926
  1256
       equality helpers by default in Metis breaks a few existing proofs. *)
blanchet@43926
  1257
    (true, @{thms fequal_def [THEN Meson.iff_to_disjD, THEN conjunct1]
blanchet@43926
  1258
                  fequal_def [THEN Meson.iff_to_disjD, THEN conjunct2]})),
blanchet@43926
  1259
   ("fFalse", (true, @{thms True_or_False})),
blanchet@43926
  1260
   ("fFalse", (false, [@{lemma "~ fFalse" by (unfold fFalse_def) fast}])),
blanchet@43926
  1261
   ("fTrue", (true, @{thms True_or_False})),
blanchet@43926
  1262
   ("fTrue", (false, [@{lemma "fTrue" by (unfold fTrue_def) fast}])),
blanchet@43926
  1263
   ("fNot",
blanchet@43926
  1264
    (false, @{thms fNot_def [THEN Meson.iff_to_disjD, THEN conjunct1]
blanchet@43926
  1265
                   fNot_def [THEN Meson.iff_to_disjD, THEN conjunct2]})),
blanchet@43926
  1266
   ("fconj",
blanchet@43926
  1267
    (false,
blanchet@43926
  1268
     @{lemma "~ P | ~ Q | fconj P Q" "~ fconj P Q | P" "~ fconj P Q | Q"
blanchet@43926
  1269
         by (unfold fconj_def) fast+})),
blanchet@43926
  1270
   ("fdisj",
blanchet@43926
  1271
    (false,
blanchet@43926
  1272
     @{lemma "~ P | fdisj P Q" "~ Q | fdisj P Q" "~ fdisj P Q | P | Q"
blanchet@43926
  1273
         by (unfold fdisj_def) fast+})),
blanchet@43926
  1274
   ("fimplies",
blanchet@43926
  1275
    (false, @{lemma "P | fimplies P Q" "~ Q | fimplies P Q"
blanchet@43926
  1276
                    "~ fimplies P Q | ~ P | Q"
blanchet@43926
  1277
                by (unfold fimplies_def) fast+})),
blanchet@43926
  1278
   ("If", (true, @{thms if_True if_False True_or_False}))]
blanchet@43926
  1279
blanchet@43444
  1280
fun ti_ti_helper_fact () =
blanchet@43444
  1281
  let
blanchet@43444
  1282
    fun var s = ATerm (`I s, [])
blanchet@43460
  1283
    fun tag tm = ATerm (`make_fixed_const type_tag_name, [var "X", tm])
blanchet@43444
  1284
  in
blanchet@43483
  1285
    Formula (helper_prefix ^ "ti_ti", Axiom,
blanchet@43841
  1286
             AAtom (ATerm (`I tptp_equal, [tag (tag (var "Y")), tag (var "Y")]))
blanchet@43748
  1287
             |> close_formula_universally, simp_info, NONE)
blanchet@43444
  1288
  end
blanchet@43444
  1289
blanchet@43905
  1290
fun helper_facts_for_sym ctxt format type_sys (s, {types, ...} : sym_info) =
blanchet@43444
  1291
  case strip_prefix_and_unascii const_prefix s of
blanchet@43444
  1292
    SOME mangled_s =>
blanchet@43444
  1293
    let
blanchet@43444
  1294
      val thy = Proof_Context.theory_of ctxt
blanchet@43444
  1295
      val unmangled_s = mangled_s |> unmangled_const_name
blanchet@43764
  1296
      fun dub_and_inst c needs_fairly_sound (th, j) =
blanchet@43750
  1297
        ((c ^ "_" ^ string_of_int j ^
blanchet@43764
  1298
          (if needs_fairly_sound then typed_helper_suffix
blanchet@43750
  1299
           else untyped_helper_suffix),
blanchet@43750
  1300
          General),
blanchet@43444
  1301
         let val t = th |> prop_of in
blanchet@43618
  1302
           t |> ((case general_type_arg_policy type_sys of
blanchet@43618
  1303
                    Mangled_Type_Args _ => true
blanchet@43618
  1304
                  | _ => false) andalso
blanchet@43444
  1305
                 not (null (Term.hidden_polymorphism t)))
blanchet@43905
  1306
                ? (case types of
blanchet@43905
  1307
                     [T] => specialize_type thy (invert_const unmangled_s, T)
blanchet@43905
  1308
                   | _ => I)
blanchet@43444
  1309
         end)
blanchet@43444
  1310
      fun make_facts eq_as_iff =
blanchet@43937
  1311
        map_filter (make_fact ctxt format type_sys true false eq_as_iff false)
blanchet@43764
  1312
      val fairly_sound = is_type_sys_fairly_sound type_sys
blanchet@43444
  1313
    in
blanchet@43926
  1314
      helper_table
blanchet@43765
  1315
      |> maps (fn (metis_s, (needs_fairly_sound, ths)) =>
blanchet@43444
  1316
                  if metis_s <> unmangled_s orelse
blanchet@43765
  1317
                     (needs_fairly_sound andalso not fairly_sound) then
blanchet@43444
  1318
                    []
blanchet@43444
  1319
                  else
blanchet@43444
  1320
                    ths ~~ (1 upto length ths)
blanchet@43764
  1321
                    |> map (dub_and_inst mangled_s needs_fairly_sound)
blanchet@43764
  1322
                    |> make_facts (not needs_fairly_sound))
blanchet@43444
  1323
    end
blanchet@43444
  1324
  | NONE => []
blanchet@43803
  1325
fun helper_facts_for_sym_table ctxt format type_sys sym_tab =
blanchet@43803
  1326
  Symtab.fold_rev (append o helper_facts_for_sym ctxt format type_sys) sym_tab
blanchet@43803
  1327
                  []
blanchet@43444
  1328
blanchet@43835
  1329
fun translate_atp_fact ctxt format type_sys keep_trivial =
blanchet@43937
  1330
  `(make_fact ctxt format type_sys keep_trivial true true true o apsnd prop_of)
blanchet@43444
  1331
blanchet@43926
  1332
(***************************************************************)
blanchet@43926
  1333
(* Type Classes Present in the Axiom or Conjecture Clauses     *)
blanchet@43926
  1334
(***************************************************************)
blanchet@43926
  1335
blanchet@43926
  1336
fun set_insert (x, s) = Symtab.update (x, ()) s
blanchet@43926
  1337
blanchet@43926
  1338
fun add_classes (sorts, cset) = List.foldl set_insert cset (flat sorts)
blanchet@43926
  1339
blanchet@43926
  1340
(* Remove this trivial type class (FIXME: similar code elsewhere) *)
blanchet@43926
  1341
fun delete_type cset = Symtab.delete_safe (the_single @{sort HOL.type}) cset
blanchet@43926
  1342
blanchet@43934
  1343
fun classes_of_terms get_Ts =
blanchet@43962
  1344
  map (map snd o get_Ts)
blanchet@43934
  1345
  #> List.foldl add_classes Symtab.empty
blanchet@43934
  1346
  #> delete_type #> Symtab.keys
blanchet@43926
  1347
blanchet@43934
  1348
val tfree_classes_of_terms = classes_of_terms OldTerm.term_tfrees
blanchet@43934
  1349
val tvar_classes_of_terms = classes_of_terms OldTerm.term_tvars
blanchet@43926
  1350
blanchet@43926
  1351
(*fold type constructors*)
blanchet@43926
  1352
fun fold_type_consts f (Type (a, Ts)) x = fold (fold_type_consts f) Ts (f (a,x))
blanchet@43934
  1353
  | fold_type_consts _ _ x = x
blanchet@43926
  1354
blanchet@43926
  1355
(*Type constructors used to instantiate overloaded constants are the only ones needed.*)
blanchet@43926
  1356
fun add_type_consts_in_term thy =
blanchet@43926
  1357
  let
blanchet@43926
  1358
    fun aux (Const (@{const_name Meson.skolem}, _) $ _) = I
blanchet@43926
  1359
      | aux (t $ u) = aux t #> aux u
blanchet@43926
  1360
      | aux (Const x) =
blanchet@43926
  1361
        fold (fold_type_consts set_insert) (Sign.const_typargs thy x)
blanchet@43926
  1362
      | aux (Abs (_, _, u)) = aux u
blanchet@43926
  1363
      | aux _ = I
blanchet@43926
  1364
  in aux end
blanchet@43926
  1365
blanchet@43926
  1366
fun type_consts_of_terms thy ts =
blanchet@43934
  1367
  Symtab.keys (fold (add_type_consts_in_term thy) ts Symtab.empty)
blanchet@43926
  1368
blanchet@43937
  1369
fun translate_formulas ctxt format prem_kind type_sys preproc hyp_ts concl_t
blanchet@43803
  1370
                       rich_facts =
blanchet@43444
  1371
  let
blanchet@43444
  1372
    val thy = Proof_Context.theory_of ctxt
blanchet@43444
  1373
    val fact_ts = map (prop_of o snd o snd) rich_facts
blanchet@43444
  1374
    val (facts, fact_names) =
blanchet@43444
  1375
      rich_facts
blanchet@43444
  1376
      |> map_filter (fn (NONE, _) => NONE
blanchet@43444
  1377
                      | (SOME fact, (name, _)) => SOME (fact, name))
blanchet@43444
  1378
      |> ListPair.unzip
blanchet@43444
  1379
    (* Remove existing facts from the conjecture, as this can dramatically
blanchet@43444
  1380
       boost an ATP's performance (for some reason). *)
blanchet@43444
  1381
    val hyp_ts = hyp_ts |> filter_out (member (op aconv) fact_ts)
blanchet@43444
  1382
    val goal_t = Logic.list_implies (hyp_ts, concl_t)
blanchet@43444
  1383
    val all_ts = goal_t :: fact_ts
blanchet@43444
  1384
    val subs = tfree_classes_of_terms all_ts
blanchet@43444
  1385
    val supers = tvar_classes_of_terms all_ts
blanchet@43444
  1386
    val tycons = type_consts_of_terms thy all_ts
blanchet@43835
  1387
    val conjs =
blanchet@43937
  1388
      hyp_ts @ [concl_t]
blanchet@43937
  1389
      |> make_conjecture ctxt format prem_kind type_sys preproc
blanchet@43444
  1390
    val (supers', arity_clauses) =
blanchet@43460
  1391
      if level_of_type_sys type_sys = No_Types then ([], [])
blanchet@43444
  1392
      else make_arity_clauses thy tycons supers
blanchet@43444
  1393
    val class_rel_clauses = make_class_rel_clauses thy subs supers'
blanchet@43444
  1394
  in
blanchet@43444
  1395
    (fact_names |> map single, (conjs, facts, class_rel_clauses, arity_clauses))
blanchet@43444
  1396
  end
blanchet@43444
  1397
blanchet@43444
  1398
fun fo_literal_from_type_literal (TyLitVar (class, name)) =
blanchet@43444
  1399
    (true, ATerm (class, [ATerm (name, [])]))
blanchet@43444
  1400
  | fo_literal_from_type_literal (TyLitFree (class, name)) =
blanchet@43444
  1401
    (true, ATerm (class, [ATerm (name, [])]))
blanchet@43444
  1402
blanchet@43444
  1403
fun formula_from_fo_literal (pos, t) = AAtom t |> not pos ? mk_anot
blanchet@43444
  1404
blanchet@43835
  1405
fun type_pred_combterm ctxt nonmono_Ts type_sys T tm =
blanchet@43807
  1406
  CombApp (CombConst (`make_fixed_const type_pred_name, T --> @{typ bool}, [T])
blanchet@43835
  1407
           |> enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys,
blanchet@43444
  1408
           tm)
blanchet@43444
  1409
blanchet@43747
  1410
fun var_occurs_positively_naked_in_term _ (SOME false) _ accum = accum
blanchet@43747
  1411
  | var_occurs_positively_naked_in_term name _ (ATerm ((s, _), tms)) accum =
blanchet@43841
  1412
    accum orelse (is_tptp_equal s andalso member (op =) tms (ATerm (name, [])))
blanchet@43747
  1413
fun is_var_nonmonotonic_in_formula _ _ (SOME false) _ = false
blanchet@43747
  1414
  | is_var_nonmonotonic_in_formula pos phi _ name =
blanchet@43747
  1415
    formula_fold pos (var_occurs_positively_naked_in_term name) phi false
blanchet@43705
  1416
blanchet@43835
  1417
fun mk_const_aterm x T_args args =
blanchet@43835
  1418
  ATerm (x, map (fo_term_from_typ false) T_args @ args)
blanchet@43835
  1419
blanchet@43803
  1420
fun tag_with_type ctxt format nonmono_Ts type_sys T tm =
blanchet@43700
  1421
  CombConst (`make_fixed_const type_tag_name, T --> T, [T])
blanchet@43835
  1422
  |> enforce_type_arg_policy_in_combterm ctxt nonmono_Ts type_sys
blanchet@43803
  1423
  |> term_from_combterm ctxt format nonmono_Ts type_sys Top_Level
blanchet@43700
  1424
  |> (fn ATerm (s, tms) => ATerm (s, tms @ [tm]))
blanchet@43803
  1425
and term_from_combterm ctxt format nonmono_Ts type_sys =
blanchet@43444
  1426
  let
blanchet@43803
  1427
    fun aux site u =
blanchet@43803
  1428
      let
blanchet@43803
  1429
        val (head, args) = strip_combterm_comb u
blanchet@43803
  1430
        val (x as (s, _), T_args) =
blanchet@43803
  1431
          case head of
blanchet@43803
  1432
            CombConst (name, _, T_args) => (name, T_args)
blanchet@43803
  1433
          | CombVar (name, _) => (name, [])
blanchet@43803
  1434
          | CombApp _ => raise Fail "impossible \"CombApp\""
blanchet@43841
  1435
        val arg_site = if site = Top_Level andalso is_tptp_equal s then Eq_Arg
blanchet@43803
  1436
                       else Elsewhere
blanchet@43835
  1437
        val t = mk_const_aterm x T_args (map (aux arg_site) args)
blanchet@43803
  1438
        val T = combtyp_of u
blanchet@43803
  1439
      in
blanchet@43803
  1440
        t |> (if should_tag_with_type ctxt nonmono_Ts type_sys site u T then
blanchet@43803
  1441
                tag_with_type ctxt format nonmono_Ts type_sys T
blanchet@43803
  1442
              else
blanchet@43803
  1443
                I)
blanchet@43803
  1444
      end
blanchet@43803
  1445
  in aux end
blanchet@43803
  1446
and formula_from_combformula ctxt format nonmono_Ts type_sys
blanchet@43803
  1447
                             should_predicate_on_var =
blanchet@43700
  1448
  let
blanchet@43835
  1449
    val higher_order = is_setting_higher_order format type_sys
blanchet@43803
  1450
    val do_term = term_from_combterm ctxt format nonmono_Ts type_sys Top_Level
blanchet@43444
  1451
    val do_bound_type =
blanchet@43552
  1452
      case type_sys of
blanchet@43587
  1453
        Simple_Types level =>
blanchet@43835
  1454
        homogenized_type ctxt nonmono_Ts level 0
blanchet@43835
  1455
        #> mangled_type higher_order false 0 #> SOME
blanchet@43552
  1456
      | _ => K NONE
blanchet@43747
  1457
    fun do_out_of_bound_type pos phi universal (name, T) =
blanchet@43705
  1458
      if should_predicate_on_type ctxt nonmono_Ts type_sys
blanchet@43747
  1459
             (fn () => should_predicate_on_var pos phi universal name) T then
blanchet@43705
  1460
        CombVar (name, T)
blanchet@43835
  1461
        |> type_pred_combterm ctxt nonmono_Ts type_sys T
blanchet@43747
  1462
        |> do_term |> AAtom |> SOME
blanchet@43444
  1463
      else
blanchet@43444
  1464
        NONE
blanchet@43747
  1465
    fun do_formula pos (AQuant (q, xs, phi)) =
blanchet@43747
  1466
        let
blanchet@43747
  1467
          val phi = phi |> do_formula pos
blanchet@43747
  1468
          val universal = Option.map (q = AExists ? not) pos
blanchet@43747
  1469
        in
blanchet@43705
  1470
          AQuant (q, xs |> map (apsnd (fn NONE => NONE
blanchet@43705
  1471
                                        | SOME T => do_bound_type T)),
blanchet@43705
  1472
                  (if q = AForall then mk_ahorn else fold_rev (mk_aconn AAnd))
blanchet@43705
  1473
                      (map_filter
blanchet@43705
  1474
                           (fn (_, NONE) => NONE
blanchet@43705
  1475
                             | (s, SOME T) =>
blanchet@43747
  1476
                               do_out_of_bound_type pos phi universal (s, T))
blanchet@43747
  1477
                           xs)
blanchet@43705
  1478
                      phi)
blanchet@43705
  1479
        end
blanchet@43747
  1480
      | do_formula pos (AConn conn) = aconn_map pos do_formula conn
blanchet@43747
  1481
      | do_formula _ (AAtom tm) = AAtom (do_term tm)
blanchet@43747
  1482
  in do_formula o SOME end
blanchet@43444
  1483
blanchet@43939
  1484
fun bound_tvars type_sys Ts =
blanchet@43592
  1485
  mk_ahorn (map (formula_from_fo_literal o fo_literal_from_type_literal)
blanchet@43939
  1486
                (type_literals_for_types type_sys sorts_on_tvar Ts))
blanchet@43592
  1487
blanchet@43797
  1488
fun formula_for_fact ctxt format nonmono_Ts type_sys
blanchet@43444
  1489
                     ({combformula, atomic_types, ...} : translated_formula) =
blanchet@43592
  1490
  combformula
blanchet@43592
  1491
  |> close_combformula_universally
blanchet@43803
  1492
  |> formula_from_combformula ctxt format nonmono_Ts type_sys
blanchet@43747
  1493
                              is_var_nonmonotonic_in_formula true
blanchet@43939
  1494
  |> bound_tvars type_sys atomic_types
blanchet@43444
  1495
  |> close_formula_universally
blanchet@43444
  1496
blanchet@43444
  1497
(* Each fact is given a unique fact number to avoid name clashes (e.g., because
blanchet@43444
  1498
   of monomorphization). The TPTP explicitly forbids name clashes, and some of
blanchet@43444
  1499
   the remote provers might care. *)
blanchet@43797
  1500
fun formula_line_for_fact ctxt format prefix nonmono_Ts type_sys
blanchet@43511
  1501
                          (j, formula as {name, locality, kind, ...}) =
blanchet@43550
  1502
  Formula (prefix ^ (if polymorphism_of_type_sys type_sys = Polymorphic then ""
blanchet@43550
  1503
                     else string_of_int j ^ "_") ^
blanchet@43518
  1504
           ascii_of name,
blanchet@43797
  1505
           kind, formula_for_fact ctxt format nonmono_Ts type_sys formula, NONE,
blanchet@43748
  1506
           case locality of
blanchet@43748
  1507
             Intro => intro_info
blanchet@43748
  1508
           | Elim => elim_info
blanchet@43748
  1509
           | Simp => simp_info
blanchet@43748
  1510
           | _ => NONE)
blanchet@43444
  1511
blanchet@43927
  1512
fun formula_line_for_class_rel_clause ({name, subclass, superclass, ...}
blanchet@43927
  1513
                                       : class_rel_clause) =
blanchet@43444
  1514
  let val ty_arg = ATerm (`I "T", []) in
blanchet@43448
  1515
    Formula (class_rel_clause_prefix ^ ascii_of name, Axiom,
blanchet@43444
  1516
             AConn (AImplies, [AAtom (ATerm (subclass, [ty_arg])),
blanchet@43444
  1517
                               AAtom (ATerm (superclass, [ty_arg]))])
blanchet@43748
  1518
             |> close_formula_universally, intro_info, NONE)
blanchet@43444
  1519
  end
blanchet@43444
  1520
blanchet@43444
  1521
fun fo_literal_from_arity_literal (TConsLit (c, t, args)) =
blanchet@43444
  1522
    (true, ATerm (c, [ATerm (t, map (fn arg => ATerm (arg, [])) args)]))
blanchet@43444
  1523
  | fo_literal_from_arity_literal (TVarLit (c, sort)) =
blanchet@43444
  1524
    (false, ATerm (c, [ATerm (sort, [])]))
blanchet@43444
  1525
blanchet@43927
  1526
fun formula_line_for_arity_clause ({name, prem_lits, concl_lits, ...}
blanchet@43927
  1527
                                   : arity_clause) =
blanchet@43448
  1528
  Formula (arity_clause_prefix ^ ascii_of name, Axiom,
blanchet@43444
  1529
           mk_ahorn (map (formula_from_fo_literal o apfst not
blanchet@43766
  1530
                          o fo_literal_from_arity_literal) prem_lits)
blanchet@43444
  1531
                    (formula_from_fo_literal
blanchet@43766
  1532
                         (fo_literal_from_arity_literal concl_lits))
blanchet@43748
  1533
           |> close_formula_universally, intro_info, NONE)
blanchet@43444
  1534
blanchet@43803
  1535
fun formula_line_for_conjecture ctxt format nonmono_Ts type_sys
blanchet@43939
  1536
        ({name, kind, combformula, atomic_types, ...} : translated_formula) =
blanchet@43448
  1537
  Formula (conjecture_prefix ^ name, kind,
blanchet@43803
  1538
           formula_from_combformula ctxt format nonmono_Ts type_sys
blanchet@43780
  1539
               is_var_nonmonotonic_in_formula false
blanchet@43780
  1540
               (close_combformula_universally combformula)
blanchet@43939
  1541
           |> bound_tvars type_sys atomic_types
blanchet@43444
  1542
           |> close_formula_universally, NONE, NONE)
blanchet@43444
  1543
blanchet@43939
  1544
fun free_type_literals type_sys ({atomic_types, ...} : translated_formula) =
blanchet@43939
  1545
  atomic_types |> type_literals_for_types type_sys sorts_on_tfree
blanchet@43444
  1546
               |> map fo_literal_from_type_literal
blanchet@43444
  1547
blanchet@43444
  1548
fun formula_line_for_free_type j lit =
blanchet@43926
  1549
  Formula (tfree_clause_prefix ^ string_of_int j, Hypothesis,
blanchet@43444
  1550
           formula_from_fo_literal lit, NONE, NONE)
blanchet@43939
  1551
fun formula_lines_for_free_types type_sys facts =
blanchet@43444
  1552
  let
blanchet@43939
  1553
    val litss = map (free_type_literals type_sys) facts
blanchet@43444
  1554
    val lits = fold (union (op =)) litss []
blanchet@43444
  1555
  in map2 formula_line_for_free_type (0 upto length lits - 1) lits end
blanchet@43444
  1556
blanchet@43444
  1557
(** Symbol declarations **)
blanchet@43415
  1558
blanchet@43445
  1559
fun should_declare_sym type_sys pred_sym s =
blanchet@43839
  1560
  is_tptp_user_symbol s andalso not (String.isPrefix bound_var_prefix s) andalso
blanchet@43765
  1561
  (case type_sys of
blanchet@43765
  1562
     Simple_Types _ => true
blanchet@43969
  1563
   | Tags (_, _, Lightweight) => true
blanchet@43765
  1564
   | _ => not pred_sym)
blanchet@43413
  1565
blanchet@43755
  1566
fun sym_decl_table_for_facts ctxt type_sys repaired_sym_tab (conjs, facts) =
blanchet@43445
  1567
  let
blanchet@43568
  1568
    fun add_combterm in_conj tm =
blanchet@43445
  1569
      let val (head, args) = strip_combterm_comb tm in
blanchet@43445
  1570
        (case head of
blanchet@43445
  1571
           CombConst ((s, s'), T, T_args) =>
blanchet@43445
  1572
           let val pred_sym = is_pred_sym repaired_sym_tab s in
blanchet@43445
  1573
             if should_declare_sym type_sys pred_sym s then
blanchet@43447
  1574
               Symtab.map_default (s, [])
blanchet@43755
  1575
                   (insert_type ctxt #3 (s', T_args, T, pred_sym, length args,
blanchet@43755
  1576
                                         in_conj))
blanchet@43445
  1577
             else
blanchet@43445
  1578
               I
blanchet@43445
  1579
           end
blanchet@43445
  1580
         | _ => I)
blanchet@43568
  1581
        #> fold (add_combterm in_conj) args
blanchet@43445
  1582
      end
blanchet@43568
  1583
    fun add_fact in_conj =
blanchet@43705
  1584
      fact_lift (formula_fold NONE (K (add_combterm in_conj)))
blanchet@43568
  1585
  in
blanchet@43568
  1586
    Symtab.empty
blanchet@43568
  1587
    |> is_type_sys_fairly_sound type_sys
blanchet@43568
  1588
       ? (fold (add_fact true) conjs #> fold (add_fact false) facts)
blanchet@43568
  1589
  end
blanchet@43445
  1590
blanchet@43755
  1591
(* These types witness that the type classes they belong to allow infinite
blanchet@43755
  1592
   models and hence that any types with these type classes is monotonic. *)
blanchet@43926
  1593
val known_infinite_types =
blanchet@43926
  1594
  [@{typ nat}, Type ("Int.int", []), @{typ "nat => bool"}]
blanchet@43755
  1595
blanchet@43555
  1596
(* This inference is described in section 2.3 of Claessen et al.'s "Sorting it
blanchet@43555
  1597
   out with monotonicity" paper presented at CADE 2011. *)
blanchet@43755
  1598
fun add_combterm_nonmonotonic_types _ _ (SOME false) _ = I
blanchet@43700
  1599
  | add_combterm_nonmonotonic_types ctxt level _
blanchet@43841
  1600
        (CombApp (CombApp (CombConst ((s, _), Type (_, [T, _]), _), tm1), tm2)) =
blanchet@43841
  1601
    (is_tptp_equal s andalso exists is_var_or_bound_var [tm1, tm2] andalso
blanchet@43700
  1602
     (case level of
blanchet@43755
  1603
        Nonmonotonic_Types =>
blanchet@43755
  1604
        not (is_type_surely_infinite ctxt known_infinite_types T)
blanchet@43700
  1605
      | Finite_Types => is_type_surely_finite ctxt T
blanchet@43755
  1606
      | _ => true)) ? insert_type ctxt I (deep_freeze_type T)
blanchet@43700
  1607
  | add_combterm_nonmonotonic_types _ _ _ _ = I
blanchet@43700
  1608
fun add_fact_nonmonotonic_types ctxt level ({kind, combformula, ...}
blanchet@43700
  1609
                                            : translated_formula) =
blanchet@43705
  1610
  formula_fold (SOME (kind <> Conjecture))
blanchet@43700
  1611
               (add_combterm_nonmonotonic_types ctxt level) combformula
blanchet@43755
  1612
fun nonmonotonic_types_for_facts ctxt type_sys facts =
blanchet@43700
  1613
  let val level = level_of_type_sys type_sys in
blanchet@43755
  1614
    if level = Nonmonotonic_Types orelse level = Finite_Types then
blanchet@43755
  1615
      [] |> fold (add_fact_nonmonotonic_types ctxt level) facts
blanchet@43755
  1616
         (* We must add "bool" in case the helper "True_or_False" is added
blanchet@43755
  1617
            later. In addition, several places in the code rely on the list of
blanchet@43755
  1618
            nonmonotonic types not being empty. *)
blanchet@43755
  1619
         |> insert_type ctxt I @{typ bool}
blanchet@43755
  1620
    else
blanchet@43755
  1621
      []
blanchet@43700
  1622
  end
blanchet@43547
  1623
blanchet@43835
  1624
fun decl_line_for_sym ctxt format nonmono_Ts type_sys s
blanchet@43835
  1625
                      (s', T_args, T, pred_sym, ary, _) =
blanchet@43835
  1626
  let
blanchet@43835
  1627
    val (higher_order, T_arg_Ts, level) =
blanchet@43835
  1628
      case type_sys of
blanchet@43835
  1629
        Simple_Types level => (format = THF, [], level)
blanchet@43835
  1630
      | _ => (false, replicate (length T_args) homo_infinite_type, No_Types)
blanchet@43835
  1631
  in
blanchet@43839
  1632
    Decl (sym_decl_prefix ^ s, (s, s'),
blanchet@43835
  1633
          (T_arg_Ts ---> (T |> homogenized_type ctxt nonmono_Ts level ary))
blanchet@43835
  1634
          |> mangled_type higher_order pred_sym (length T_arg_Ts + ary))
blanchet@43835
  1635
  end
blanchet@43450
  1636
blanchet@43463
  1637
fun is_polymorphic_type T = fold_atyps (fn TVar _ => K true | _ => I) T false
blanchet@43463
  1638
blanchet@43966
  1639
fun formula_line_for_preds_sym_decl ctxt format conj_sym_kind nonmono_Ts
blanchet@43966
  1640
        type_sys n s j (s', T_args, T, _, ary, in_conj) =
blanchet@43450
  1641
  let
blanchet@43580
  1642
    val (kind, maybe_negate) =
blanchet@43580
  1643
      if in_conj then (conj_sym_kind, conj_sym_kind = Conjecture ? mk_anot)
blanchet@43580
  1644
      else (Axiom, I)
blanchet@43618
  1645
    val (arg_Ts, res_T) = chop_fun ary T
blanchet@43450
  1646
    val bound_names =
blanchet@43450
  1647
      1 upto length arg_Ts |> map (`I o make_bound_var o string_of_int)
blanchet@43700
  1648
    val bounds =
blanchet@43450
  1649
      bound_names ~~ arg_Ts |> map (fn (name, T) => CombConst (name, T, []))
blanchet@43450
  1650
    val bound_Ts =
blanchet@43463
  1651
      arg_Ts |> map (fn T => if n > 1 orelse is_polymorphic_type T then SOME T
blanchet@43463
  1652
                             else NONE)
blanchet@43450
  1653
  in
blanchet@43966
  1654
    Formula (preds_sym_formula_prefix ^ s ^
blanchet@43580
  1655
             (if n > 1 then "_" ^ string_of_int j else ""), kind,
blanchet@43450
  1656
             CombConst ((s, s'), T, T_args)
blanchet@43700
  1657
             |> fold (curry (CombApp o swap)) bounds
blanchet@43835
  1658
             |> type_pred_combterm ctxt nonmono_Ts type_sys res_T
blanchet@43804
  1659
             |> AAtom |> mk_aquant AForall (bound_names ~~ bound_Ts)
blanchet@43803
  1660
             |> formula_from_combformula ctxt format nonmono_Ts type_sys
blanchet@43747
  1661
                                         (K (K (K (K true)))) true
blanchet@43939
  1662
             |> n > 1 ? bound_tvars type_sys (atyps_of T)
blanchet@43580
  1663
             |> close_formula_universally
blanchet@43580
  1664
             |> maybe_negate,
blanchet@43748
  1665
             intro_info, NONE)
blanchet@43450
  1666
  end
blanchet@43450
  1667
blanchet@43966
  1668
fun formula_lines_for_tags_sym_decl ctxt format conj_sym_kind nonmono_Ts
blanchet@43966
  1669
        type_sys n s (j, (s', T_args, T, pred_sym, ary, in_conj)) =
blanchet@43700
  1670
  let
blanchet@43700
  1671
    val ident_base =
blanchet@43966
  1672
      tags_sym_formula_prefix ^ s ^
blanchet@43966
  1673
      (if n > 1 then "_" ^ string_of_int j else "")
blanchet@43721
  1674
    val (kind, maybe_negate) =
blanchet@43721
  1675
      if in_conj then (conj_sym_kind, conj_sym_kind = Conjecture ? mk_anot)
blanchet@43721
  1676
      else (Axiom, I)
blanchet@43700
  1677
    val (arg_Ts, res_T) = chop_fun ary T
blanchet@43700
  1678
    val bound_names =
blanchet@43700
  1679
      1 upto length arg_Ts |> map (`I o make_bound_var o string_of_int)
blanchet@43700
  1680
    val bounds = bound_names |> map (fn name => ATerm (name, []))
blanchet@43835
  1681
    val cst = mk_const_aterm (s, s') T_args
blanchet@43701
  1682
    val atomic_Ts = atyps_of T
blanchet@43705
  1683
    fun eq tms =
blanchet@43705
  1684
      (if pred_sym then AConn (AIff, map AAtom tms)
blanchet@43841
  1685
       else AAtom (ATerm (`I tptp_equal, tms)))
blanchet@43939
  1686
      |> bound_tvars type_sys atomic_Ts
blanchet@43701
  1687
      |> close_formula_universally
blanchet@43721
  1688
      |> maybe_negate
blanchet@43707
  1689
    val should_encode = should_encode_type ctxt nonmono_Ts All_Types
blanchet@43803
  1690
    val tag_with = tag_with_type ctxt format nonmono_Ts type_sys
blanchet@43700
  1691
    val add_formula_for_res =
blanchet@43700
  1692
      if should_encode res_T then
blanchet@43721
  1693
        cons (Formula (ident_base ^ "_res", kind,
blanchet@43835
  1694
                       eq [tag_with res_T (cst bounds), cst bounds],
blanchet@43748
  1695
                       simp_info, NONE))
blanchet@43700
  1696
      else
blanchet@43700
  1697
        I
blanchet@43700
  1698
    fun add_formula_for_arg k =
blanchet@43700
  1699
      let val arg_T = nth arg_Ts k in
blanchet@43700
  1700
        if should_encode arg_T then
blanchet@43700
  1701
          case chop k bounds of
blanchet@43700
  1702
            (bounds1, bound :: bounds2) =>
blanchet@43721
  1703
            cons (Formula (ident_base ^ "_arg" ^ string_of_int (k + 1), kind,
blanchet@43835
  1704
                           eq [cst (bounds1 @ tag_with arg_T bound :: bounds2),
blanchet@43835
  1705
                               cst bounds],
blanchet@43748
  1706
                           simp_info, NONE))
blanchet@43700
  1707
          | _ => raise Fail "expected nonempty tail"
blanchet@43700
  1708
        else
blanchet@43700
  1709
          I
blanchet@43700
  1710
      end
blanchet@43700
  1711
  in
blanchet@43705
  1712
    [] |> not pred_sym ? add_formula_for_res
blanchet@43700
  1713
       |> fold add_formula_for_arg (ary - 1 downto 0)
blanchet@43700
  1714
  end
blanchet@43700
  1715
blanchet@43707
  1716
fun result_type_of_decl (_, _, T, _, ary, _) = chop_fun ary T |> snd
blanchet@43707
  1717
blanchet@43797
  1718
fun problem_lines_for_sym_decls ctxt format conj_sym_kind nonmono_Ts type_sys
blanchet@43580
  1719
                                (s, decls) =
blanchet@43839
  1720
  case type_sys of
blanchet@43839
  1721
    Simple_Types _ =>
blanchet@43839
  1722
    decls |> map (decl_line_for_sym ctxt format nonmono_Ts type_sys s)
blanchet@43839
  1723
  | Preds _ =>
blanchet@43839
  1724
    let
blanchet@43839
  1725
      val decls =
blanchet@43839
  1726
        case decls of
blanchet@43839
  1727
          decl :: (decls' as _ :: _) =>
blanchet@43839
  1728
          let val T = result_type_of_decl decl in
blanchet@43839
  1729
            if forall (curry (type_instance ctxt o swap) T
blanchet@43839
  1730
                       o result_type_of_decl) decls' then
blanchet@43839
  1731
              [decl]
blanchet@43839
  1732
            else
blanchet@43839
  1733
              decls
blanchet@43839
  1734
          end
blanchet@43839
  1735
        | _ => decls
blanchet@43839
  1736
      val n = length decls
blanchet@43839
  1737
      val decls =
blanchet@43839
  1738
        decls
blanchet@43839
  1739
        |> filter (should_predicate_on_type ctxt nonmono_Ts type_sys (K true)
blanchet@43839
  1740
                   o result_type_of_decl)
blanchet@43839
  1741
    in
blanchet@43839
  1742
      (0 upto length decls - 1, decls)
blanchet@43966
  1743
      |-> map2 (formula_line_for_preds_sym_decl ctxt format conj_sym_kind
blanchet@43966
  1744
                                                nonmono_Ts type_sys n s)
blanchet@43839
  1745
    end
blanchet@43839
  1746
  | Tags (_, _, heaviness) =>
blanchet@43839
  1747
    (case heaviness of
blanchet@43969
  1748
       Heavyweight => []
blanchet@43969
  1749
     | Lightweight =>
blanchet@43839
  1750
       let val n = length decls in
blanchet@43839
  1751
         (0 upto n - 1 ~~ decls)
blanchet@43966
  1752
         |> maps (formula_lines_for_tags_sym_decl ctxt format conj_sym_kind
blanchet@43966
  1753
                                                  nonmono_Ts type_sys n s)
blanchet@43839
  1754
       end)
blanchet@43450
  1755
blanchet@43797
  1756
fun problem_lines_for_sym_decl_table ctxt format conj_sym_kind nonmono_Ts
blanchet@43797
  1757
                                     type_sys sym_decl_tab =
blanchet@43839
  1758
  sym_decl_tab
blanchet@43839
  1759
  |> Symtab.dest
blanchet@43839
  1760
  |> sort_wrt fst
blanchet@43839
  1761
  |> rpair []
blanchet@43839
  1762
  |-> fold_rev (append o problem_lines_for_sym_decls ctxt format conj_sym_kind
blanchet@43839
  1763
                                                     nonmono_Ts type_sys)
blanchet@43414
  1764
blanchet@43969
  1765
fun should_add_ti_ti_helper (Tags (Polymorphic, level, Heavyweight)) =
blanchet@43702
  1766
    level = Nonmonotonic_Types orelse level = Finite_Types
blanchet@43702
  1767
  | should_add_ti_ti_helper _ = false
blanchet@43702
  1768
blanchet@43780
  1769
fun offset_of_heading_in_problem _ [] j = j
blanchet@43780
  1770
  | offset_of_heading_in_problem needle ((heading, lines) :: problem) j =
blanchet@43780
  1771
    if heading = needle then j
blanchet@43780
  1772
    else offset_of_heading_in_problem needle problem (j + length lines)
blanchet@43780
  1773
blanchet@43839
  1774
val implicit_declsN = "Should-be-implicit typings"
blanchet@43839
  1775
val explicit_declsN = "Explicit typings"
blanchet@41405
  1776
val factsN = "Relevant facts"
blanchet@41405
  1777
val class_relsN = "Class relationships"
blanchet@43414
  1778
val aritiesN = "Arities"
blanchet@41405
  1779
val helpersN = "Helper facts"
blanchet@41405
  1780
val conjsN = "Conjectures"
blanchet@41561
  1781
val free_typesN = "Type variables"
blanchet@41405
  1782
blanchet@43780
  1783
fun prepare_atp_problem ctxt format conj_sym_kind prem_kind type_sys
blanchet@43937
  1784
                        explicit_apply readable_names preproc hyp_ts concl_t
blanchet@43937
  1785
                        facts =
blanchet@38506
  1786
  let
blanchet@43942
  1787
    val (format, type_sys) = choose_format [format] type_sys
blanchet@41561
  1788
    val (fact_names, (conjs, facts, class_rel_clauses, arity_clauses)) =
blanchet@43937
  1789
      translate_formulas ctxt format prem_kind type_sys preproc hyp_ts concl_t
blanchet@43937
  1790
                         facts
blanchet@43905
  1791
    val sym_tab = conjs @ facts |> sym_table_for_facts ctxt explicit_apply
blanchet@43755
  1792
    val nonmono_Ts = conjs @ facts |> nonmonotonic_types_for_facts ctxt type_sys
blanchet@43803
  1793
    val repair = repair_fact ctxt format nonmono_Ts type_sys sym_tab
blanchet@43552
  1794
    val (conjs, facts) = (conjs, facts) |> pairself (map repair)
blanchet@43905
  1795
    val repaired_sym_tab =
blanchet@43905
  1796
      conjs @ facts |> sym_table_for_facts ctxt (SOME false)
blanchet@43444
  1797
    val helpers =
blanchet@43803
  1798
      repaired_sym_tab |> helper_facts_for_sym_table ctxt format type_sys
blanchet@43803
  1799
                       |> map repair
blanchet@43765
  1800
    val lavish_nonmono_Ts =
blanchet@43765
  1801
      if null nonmono_Ts orelse
blanchet@43765
  1802
         polymorphism_of_type_sys type_sys <> Polymorphic then
blanchet@43765
  1803
        nonmono_Ts
blanchet@43765
  1804
      else
blanchet@43765
  1805
        [TVar (("'a", 0), HOLogic.typeS)]
blanchet@43550
  1806
    val sym_decl_lines =
blanchet@43596
  1807
      (conjs, helpers @ facts)
blanchet@43755
  1808
      |> sym_decl_table_for_facts ctxt type_sys repaired_sym_tab
blanchet@43797
  1809
      |> problem_lines_for_sym_decl_table ctxt format conj_sym_kind
blanchet@43797
  1810
                                          lavish_nonmono_Ts type_sys
blanchet@43750
  1811
    val helper_lines =
blanchet@43797
  1812
      0 upto length helpers - 1 ~~ helpers
blanchet@43797
  1813
      |> map (formula_line_for_fact ctxt format helper_prefix lavish_nonmono_Ts
blanchet@43797
  1814
                                    type_sys)
blanchet@43797
  1815
      |> (if should_add_ti_ti_helper type_sys then cons (ti_ti_helper_fact ())
blanchet@43797
  1816
          else I)
blanchet@43393
  1817
    (* Reordering these might confuse the proof reconstruction code or the SPASS
blanchet@43880
  1818
       FLOTTER hack. *)
blanchet@38506
  1819
    val problem =
blanchet@43839
  1820
      [(explicit_declsN, sym_decl_lines),
blanchet@43797
  1821
       (factsN,
blanchet@43797
  1822
        map (formula_line_for_fact ctxt format fact_prefix nonmono_Ts type_sys)
blanchet@43797
  1823
            (0 upto length facts - 1 ~~ facts)),
blanchet@43416
  1824
       (class_relsN, map formula_line_for_class_rel_clause class_rel_clauses),
blanchet@43416
  1825
       (aritiesN, map formula_line_for_arity_clause arity_clauses),
blanchet@43750
  1826
       (helpersN, helper_lines),
blanchet@43803
  1827
       (conjsN,
blanchet@43803
  1828
        map (formula_line_for_conjecture ctxt format nonmono_Ts type_sys)
blanchet@43803
  1829
            conjs),
blanchet@43939
  1830
       (free_typesN, formula_lines_for_free_types type_sys (facts @ conjs))]
blanchet@43414
  1831
    val problem =
blanchet@43432
  1832
      problem
blanchet@43933
  1833
      |> (case format of
blanchet@43933
  1834
            CNF => ensure_cnf_problem
blanchet@43933
  1835
          | CNF_UEQ => filter_cnf_ueq_problem
blanchet@43933
  1836
          | _ => I)
blanchet@43839
  1837
      |> (if is_format_typed format then
blanchet@43839
  1838
            declare_undeclared_syms_in_atp_problem type_decl_prefix
blanchet@43839
  1839
                                                   implicit_declsN
blanchet@43839
  1840
          else
blanchet@43839
  1841
            I)
blanchet@43933
  1842
    val (problem, pool) = problem |> nice_atp_problem readable_names
blanchet@43750
  1843
    val helpers_offset = offset_of_heading_in_problem helpersN problem 0
blanchet@43750
  1844
    val typed_helpers =
blanchet@43750
  1845
      map_filter (fn (j, {name, ...}) =>
blanchet@43750
  1846
                     if String.isSuffix typed_helper_suffix name then SOME j
blanchet@43750
  1847
                     else NONE)
blanchet@43750
  1848
                 ((helpers_offset + 1 upto helpers_offset + length helpers)
blanchet@43750
  1849
                  ~~ helpers)
blanchet@43649
  1850
    fun add_sym_arity (s, {min_ary, ...} : sym_info) =
blanchet@43620
  1851
      if min_ary > 0 then
blanchet@43620
  1852
        case strip_prefix_and_unascii const_prefix s of
blanchet@43620
  1853
          SOME s => Symtab.insert (op =) (s, min_ary)
blanchet@43620
  1854
        | NONE => I
blanchet@43620
  1855
      else
blanchet@43620
  1856
        I
blanchet@38506
  1857
  in
blanchet@38506
  1858
    (problem,
blanchet@38506
  1859
     case pool of SOME the_pool => snd the_pool | NONE => Symtab.empty,
blanchet@43456
  1860
     offset_of_heading_in_problem conjsN problem 0,
blanchet@43412
  1861
     offset_of_heading_in_problem factsN problem 0,
blanchet@43620
  1862
     fact_names |> Vector.fromList,
blanchet@43750
  1863
     typed_helpers,
blanchet@43620
  1864
     Symtab.empty |> Symtab.fold add_sym_arity sym_tab)
blanchet@38506
  1865
  end
blanchet@38506
  1866
blanchet@41561
  1867
(* FUDGE *)
blanchet@41561
  1868
val conj_weight = 0.0
blanchet@42641
  1869
val hyp_weight = 0.1
blanchet@42641
  1870
val fact_min_weight = 0.2
blanchet@41561
  1871
val fact_max_weight = 1.0
blanchet@43479
  1872
val type_info_default_weight = 0.8
blanchet@41561
  1873
blanchet@41561
  1874
fun add_term_weights weight (ATerm (s, tms)) =
blanchet@43839
  1875
  is_tptp_user_symbol s ? Symtab.default (s, weight)
blanchet@41561
  1876
  #> fold (add_term_weights weight) tms
blanchet@43448
  1877
fun add_problem_line_weights weight (Formula (_, _, phi, _, _)) =
blanchet@43705
  1878
    formula_fold NONE (K (add_term_weights weight)) phi
blanchet@43399
  1879
  | add_problem_line_weights _ _ = I
blanchet@41561
  1880
blanchet@41561
  1881
fun add_conjectures_weights [] = I
blanchet@41561
  1882
  | add_conjectures_weights conjs =
blanchet@41561
  1883
    let val (hyps, conj) = split_last conjs in
blanchet@41561
  1884
      add_problem_line_weights conj_weight conj
blanchet@41561
  1885
      #> fold (add_problem_line_weights hyp_weight) hyps
blanchet@41561
  1886
    end
blanchet@41561
  1887
blanchet@41561
  1888
fun add_facts_weights facts =
blanchet@41561
  1889
  let
blanchet@41561
  1890
    val num_facts = length facts
blanchet@41561
  1891
    fun weight_of j =
blanchet@41561
  1892
      fact_min_weight + (fact_max_weight - fact_min_weight) * Real.fromInt j
blanchet@41561
  1893
                        / Real.fromInt num_facts
blanchet@41561
  1894
  in
blanchet@41561
  1895
    map weight_of (0 upto num_facts - 1) ~~ facts
blanchet@41561
  1896
    |> fold (uncurry add_problem_line_weights)
blanchet@41561
  1897
  end
blanchet@41561
  1898
blanchet@41561
  1899
(* Weights are from 0.0 (most important) to 1.0 (least important). *)
blanchet@41561
  1900
fun atp_problem_weights problem =
blanchet@43479
  1901
  let val get = these o AList.lookup (op =) problem in
blanchet@43479
  1902
    Symtab.empty
blanchet@43479
  1903
    |> add_conjectures_weights (get free_typesN @ get conjsN)
blanchet@43479
  1904
    |> add_facts_weights (get factsN)
blanchet@43479
  1905
    |> fold (fold (add_problem_line_weights type_info_default_weight) o get)
blanchet@43839
  1906
            [explicit_declsN, class_relsN, aritiesN]
blanchet@43479
  1907
    |> Symtab.dest
blanchet@43479
  1908
    |> sort (prod_ord Real.compare string_ord o pairself swap)
blanchet@43479
  1909
  end
blanchet@41561
  1910
blanchet@38506
  1911
end;