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