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