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