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