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