src/HOL/Tools/Nitpick/nitpick_hol.ML
author blanchet
Thu, 05 Nov 2009 17:03:22 +0100
changeset 33571 45c33e97cb86
parent 33569 0c3ba1e010d2
child 33572 e1e77265fb1d
permissions -rw-r--r--
added datatype constructor cache in Nitpick (to speed up the scope enumeration) and never test more than 4096 scopes
blanchet@33192
     1
(*  Title:      HOL/Nitpick/Tools/nitpick_hol.ML
blanchet@33192
     2
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@33192
     3
    Copyright   2008, 2009
blanchet@33192
     4
blanchet@33192
     5
Auxiliary HOL-related functions used by Nitpick.
blanchet@33192
     6
*)
blanchet@33192
     7
blanchet@33192
     8
signature NITPICK_HOL =
blanchet@33192
     9
sig
blanchet@33192
    10
  type const_table = term list Symtab.table
blanchet@33192
    11
  type special_fun = (styp * int list * term list) * styp
blanchet@33192
    12
  type unrolled = styp * styp
blanchet@33192
    13
  type wf_cache = (styp * (bool * bool)) list
blanchet@33192
    14
blanchet@33192
    15
  type extended_context = {
blanchet@33192
    16
    thy: theory,
blanchet@33192
    17
    ctxt: Proof.context,
blanchet@33192
    18
    max_bisim_depth: int,
blanchet@33192
    19
    boxes: (typ option * bool option) list,
blanchet@33192
    20
    wfs: (styp option * bool option) list,
blanchet@33192
    21
    user_axioms: bool option,
blanchet@33192
    22
    debug: bool,
blanchet@33192
    23
    destroy_constrs: bool,
blanchet@33192
    24
    specialize: bool,
blanchet@33192
    25
    skolemize: bool,
blanchet@33192
    26
    star_linear_preds: bool,
blanchet@33192
    27
    uncurry: bool,
blanchet@33192
    28
    fast_descrs: bool,
blanchet@33192
    29
    tac_timeout: Time.time option,
blanchet@33192
    30
    evals: term list,
blanchet@33192
    31
    case_names: (string * int) list,
blanchet@33192
    32
    def_table: const_table,
blanchet@33192
    33
    nondef_table: const_table,
blanchet@33192
    34
    user_nondefs: term list,
blanchet@33192
    35
    simp_table: const_table Unsynchronized.ref,
blanchet@33192
    36
    psimp_table: const_table,
blanchet@33192
    37
    intro_table: const_table,
blanchet@33192
    38
    ground_thm_table: term list Inttab.table,
blanchet@33192
    39
    ersatz_table: (string * string) list,
blanchet@33192
    40
    skolems: (string * string list) list Unsynchronized.ref,
blanchet@33192
    41
    special_funs: special_fun list Unsynchronized.ref,
blanchet@33192
    42
    unrolled_preds: unrolled list Unsynchronized.ref,
blanchet@33571
    43
    wf_cache: wf_cache Unsynchronized.ref,
blanchet@33571
    44
    constr_cache: (typ * styp list) list Unsynchronized.ref}
blanchet@33192
    45
blanchet@33192
    46
  val name_sep : string
blanchet@33192
    47
  val numeral_prefix : string
blanchet@33192
    48
  val skolem_prefix : string
blanchet@33192
    49
  val eval_prefix : string
blanchet@33192
    50
  val original_name : string -> string
blanchet@33192
    51
  val unbox_type : typ -> typ
blanchet@33192
    52
  val string_for_type : Proof.context -> typ -> string
blanchet@33192
    53
  val prefix_name : string -> string -> string
blanchet@33192
    54
  val short_name : string -> string
blanchet@33192
    55
  val short_const_name : string -> string
blanchet@33192
    56
  val shorten_const_names_in_term : term -> term
blanchet@33192
    57
  val type_match : theory -> typ * typ -> bool
blanchet@33192
    58
  val const_match : theory -> styp * styp -> bool
blanchet@33192
    59
  val term_match : theory -> term * term -> bool
blanchet@33192
    60
  val is_TFree : typ -> bool
blanchet@33192
    61
  val is_higher_order_type : typ -> bool
blanchet@33192
    62
  val is_fun_type : typ -> bool
blanchet@33192
    63
  val is_set_type : typ -> bool
blanchet@33192
    64
  val is_pair_type : typ -> bool
blanchet@33192
    65
  val is_lfp_iterator_type : typ -> bool
blanchet@33192
    66
  val is_gfp_iterator_type : typ -> bool
blanchet@33192
    67
  val is_fp_iterator_type : typ -> bool
blanchet@33192
    68
  val is_boolean_type : typ -> bool
blanchet@33192
    69
  val is_integer_type : typ -> bool
blanchet@33192
    70
  val is_record_type : typ -> bool
blanchet@33192
    71
  val is_number_type : theory -> typ -> bool
blanchet@33192
    72
  val const_for_iterator_type : typ -> styp
blanchet@33192
    73
  val nth_range_type : int -> typ -> typ
blanchet@33192
    74
  val num_factors_in_type : typ -> int
blanchet@33192
    75
  val num_binder_types : typ -> int
blanchet@33192
    76
  val curried_binder_types : typ -> typ list
blanchet@33192
    77
  val mk_flat_tuple : typ -> term list -> term
blanchet@33192
    78
  val dest_n_tuple : int -> term -> term list
blanchet@33192
    79
  val instantiate_type : theory -> typ -> typ -> typ -> typ
blanchet@33192
    80
  val is_codatatype : theory -> typ -> bool
blanchet@33192
    81
  val is_pure_typedef : theory -> typ -> bool
blanchet@33192
    82
  val is_univ_typedef : theory -> typ -> bool
blanchet@33192
    83
  val is_datatype : theory -> typ -> bool
blanchet@33192
    84
  val is_record_constr : styp -> bool
blanchet@33192
    85
  val is_record_get : theory -> styp -> bool
blanchet@33192
    86
  val is_record_update : theory -> styp -> bool
blanchet@33192
    87
  val is_abs_fun : theory -> styp -> bool
blanchet@33192
    88
  val is_rep_fun : theory -> styp -> bool
blanchet@33192
    89
  val is_constr : theory -> styp -> bool
blanchet@33192
    90
  val is_sel : string -> bool
blanchet@33192
    91
  val discr_for_constr : styp -> styp
blanchet@33192
    92
  val num_sels_for_constr_type : typ -> int
blanchet@33192
    93
  val nth_sel_name_for_constr_name : string -> int -> string
blanchet@33192
    94
  val nth_sel_for_constr : styp -> int -> styp
blanchet@33192
    95
  val boxed_nth_sel_for_constr : extended_context -> styp -> int -> styp
blanchet@33192
    96
  val sel_no_from_name : string -> int
blanchet@33192
    97
  val eta_expand : typ list -> term -> int -> term
blanchet@33192
    98
  val extensionalize : term -> term
blanchet@33192
    99
  val distinctness_formula : typ -> term list -> term
blanchet@33192
   100
  val register_frac_type : string -> (string * string) list -> theory -> theory
blanchet@33192
   101
  val unregister_frac_type : string -> theory -> theory
blanchet@33192
   102
  val register_codatatype : typ -> string -> styp list -> theory -> theory
blanchet@33192
   103
  val unregister_codatatype : typ -> theory -> theory
blanchet@33571
   104
  val datatype_constrs : extended_context -> typ -> styp list
blanchet@33192
   105
  val boxed_datatype_constrs : extended_context -> typ -> styp list
blanchet@33571
   106
  val num_datatype_constrs : extended_context -> typ -> int
blanchet@33192
   107
  val constr_name_for_sel_like : string -> string
blanchet@33192
   108
  val boxed_constr_for_sel : extended_context -> styp -> styp
blanchet@33192
   109
  val card_of_type : (typ * int) list -> typ -> int
blanchet@33192
   110
  val bounded_card_of_type : int -> int -> (typ * int) list -> typ -> int
blanchet@33192
   111
  val bounded_precise_card_of_type :
blanchet@33571
   112
    extended_context -> int -> int -> (typ * int) list -> typ -> int
blanchet@33571
   113
  val is_finite_type : extended_context -> typ -> bool
blanchet@33192
   114
  val all_axioms_of : theory -> term list * term list * term list
blanchet@33192
   115
  val arity_of_built_in_const : bool -> styp -> int option
blanchet@33192
   116
  val is_built_in_const : bool -> styp -> bool
blanchet@33192
   117
  val case_const_names : theory -> (string * int) list
blanchet@33192
   118
  val const_def_table : Proof.context -> term list -> const_table
blanchet@33192
   119
  val const_nondef_table : term list -> const_table
blanchet@33192
   120
  val const_simp_table : Proof.context -> const_table
blanchet@33192
   121
  val const_psimp_table : Proof.context -> const_table
blanchet@33192
   122
  val inductive_intro_table : Proof.context -> const_table -> const_table
blanchet@33192
   123
  val ground_theorem_table : theory -> term list Inttab.table
blanchet@33192
   124
  val ersatz_table : theory -> (string * string) list
blanchet@33192
   125
  val def_of_const : theory -> const_table -> styp -> term option
blanchet@33192
   126
  val is_inductive_pred : extended_context -> styp -> bool
blanchet@33192
   127
  val is_constr_pattern_lhs : theory -> term -> bool
blanchet@33192
   128
  val is_constr_pattern_formula : theory -> term -> bool
blanchet@33547
   129
  val merge_type_vars_in_terms : term list -> term list
blanchet@33192
   130
  val ground_types_in_type : extended_context -> typ -> typ list
blanchet@33192
   131
  val ground_types_in_terms : extended_context -> term list -> typ list
blanchet@33192
   132
  val format_type : int list -> int list -> typ -> typ
blanchet@33192
   133
  val format_term_type :
blanchet@33192
   134
    theory -> const_table -> (term option * int list) list -> term -> typ
blanchet@33192
   135
  val user_friendly_const :
blanchet@33192
   136
   extended_context -> string * string -> (term option * int list) list
blanchet@33192
   137
   -> styp -> term * typ
blanchet@33192
   138
  val assign_operator_for_const : styp -> string
blanchet@33192
   139
  val preprocess_term :
blanchet@33192
   140
    extended_context -> term -> ((term list * term list) * (bool * bool)) * term
blanchet@33192
   141
end;
blanchet@33192
   142
blanchet@33224
   143
structure Nitpick_HOL : NITPICK_HOL =
blanchet@33192
   144
struct
blanchet@33192
   145
blanchet@33224
   146
open Nitpick_Util
blanchet@33192
   147
blanchet@33192
   148
type const_table = term list Symtab.table
blanchet@33192
   149
type special_fun = (styp * int list * term list) * styp
blanchet@33192
   150
type unrolled = styp * styp
blanchet@33192
   151
type wf_cache = (styp * (bool * bool)) list
blanchet@33192
   152
blanchet@33192
   153
type extended_context = {
blanchet@33192
   154
  thy: theory,
blanchet@33192
   155
  ctxt: Proof.context,
blanchet@33192
   156
  max_bisim_depth: int,
blanchet@33192
   157
  boxes: (typ option * bool option) list,
blanchet@33192
   158
  wfs: (styp option * bool option) list,
blanchet@33192
   159
  user_axioms: bool option,
blanchet@33192
   160
  debug: bool,
blanchet@33192
   161
  destroy_constrs: bool,
blanchet@33192
   162
  specialize: bool,
blanchet@33192
   163
  skolemize: bool,
blanchet@33192
   164
  star_linear_preds: bool,
blanchet@33192
   165
  uncurry: bool,
blanchet@33192
   166
  fast_descrs: bool,
blanchet@33192
   167
  tac_timeout: Time.time option,
blanchet@33192
   168
  evals: term list,
blanchet@33192
   169
  case_names: (string * int) list,
blanchet@33192
   170
  def_table: const_table,
blanchet@33192
   171
  nondef_table: const_table,
blanchet@33192
   172
  user_nondefs: term list,
blanchet@33192
   173
  simp_table: const_table Unsynchronized.ref,
blanchet@33192
   174
  psimp_table: const_table,
blanchet@33192
   175
  intro_table: const_table,
blanchet@33192
   176
  ground_thm_table: term list Inttab.table,
blanchet@33192
   177
  ersatz_table: (string * string) list,
blanchet@33192
   178
  skolems: (string * string list) list Unsynchronized.ref,
blanchet@33192
   179
  special_funs: special_fun list Unsynchronized.ref,
blanchet@33192
   180
  unrolled_preds: unrolled list Unsynchronized.ref,
blanchet@33571
   181
  wf_cache: wf_cache Unsynchronized.ref,
blanchet@33571
   182
  constr_cache: (typ * styp list) list Unsynchronized.ref}
blanchet@33192
   183
blanchet@33192
   184
structure TheoryData = TheoryDataFun(
blanchet@33192
   185
  type T = {frac_types: (string * (string * string) list) list,
blanchet@33192
   186
            codatatypes: (string * (string * styp list)) list}
blanchet@33192
   187
  val empty = {frac_types = [], codatatypes = []}
blanchet@33192
   188
  val copy = I
blanchet@33192
   189
  val extend = I
blanchet@33192
   190
  fun merge _ ({frac_types = fs1, codatatypes = cs1},
blanchet@33192
   191
               {frac_types = fs2, codatatypes = cs2}) =
blanchet@33192
   192
    {frac_types = AList.merge (op =) (op =) (fs1, fs2),
blanchet@33192
   193
     codatatypes = AList.merge (op =) (op =) (cs1, cs2)})
blanchet@33192
   194
blanchet@33192
   195
(* term * term -> term *)
blanchet@33192
   196
fun s_conj (t1, @{const True}) = t1
blanchet@33192
   197
  | s_conj (@{const True}, t2) = t2
blanchet@33192
   198
  | s_conj (t1, t2) = if @{const False} mem [t1, t2] then @{const False}
blanchet@33192
   199
                      else HOLogic.mk_conj (t1, t2)
blanchet@33192
   200
fun s_disj (t1, @{const False}) = t1
blanchet@33192
   201
  | s_disj (@{const False}, t2) = t2
blanchet@33192
   202
  | s_disj (t1, t2) = if @{const True} mem [t1, t2] then @{const True}
blanchet@33192
   203
                      else HOLogic.mk_disj (t1, t2)
blanchet@33192
   204
(* term -> term -> term *)
blanchet@33192
   205
fun mk_exists v t =
blanchet@33192
   206
  HOLogic.exists_const (fastype_of v) $ lambda v (incr_boundvars 1 t)
blanchet@33192
   207
blanchet@33192
   208
(* term -> term -> term list *)
blanchet@33192
   209
fun strip_connective conn_t (t as (t0 $ t1 $ t2)) =
blanchet@33192
   210
    if t0 = conn_t then strip_connective t0 t2 @ strip_connective t0 t1 else [t]
blanchet@33192
   211
  | strip_connective _ t = [t]
blanchet@33192
   212
(* term -> term list * term *)
blanchet@33192
   213
fun strip_any_connective (t as (t0 $ t1 $ t2)) =
blanchet@33192
   214
    if t0 mem [@{const "op &"}, @{const "op |"}] then
blanchet@33192
   215
      (strip_connective t0 t, t0)
blanchet@33192
   216
    else
blanchet@33192
   217
      ([t], @{const Not})
blanchet@33192
   218
  | strip_any_connective t = ([t], @{const Not})
blanchet@33192
   219
(* term -> term list *)
blanchet@33192
   220
val conjuncts = strip_connective @{const "op &"}
blanchet@33192
   221
val disjuncts = strip_connective @{const "op |"}
blanchet@33192
   222
blanchet@33192
   223
val name_sep = "$"
blanchet@33192
   224
val numeral_prefix = nitpick_prefix ^ "num" ^ name_sep
blanchet@33192
   225
val sel_prefix = nitpick_prefix ^ "sel"
blanchet@33192
   226
val discr_prefix = nitpick_prefix ^ "is" ^ name_sep
blanchet@33192
   227
val set_prefix = nitpick_prefix ^ "set" ^ name_sep
blanchet@33192
   228
val lfp_iterator_prefix = nitpick_prefix ^ "lfpit" ^ name_sep
blanchet@33192
   229
val gfp_iterator_prefix = nitpick_prefix ^ "gfpit" ^ name_sep
blanchet@33192
   230
val nwf_prefix = nitpick_prefix ^ "nwf" ^ name_sep
blanchet@33192
   231
val unrolled_prefix = nitpick_prefix ^ "unroll" ^ name_sep
blanchet@33192
   232
val base_prefix = nitpick_prefix ^ "base" ^ name_sep
blanchet@33192
   233
val step_prefix = nitpick_prefix ^ "step" ^ name_sep
blanchet@33192
   234
val ubfp_prefix = nitpick_prefix ^ "ubfp" ^ name_sep
blanchet@33192
   235
val lbfp_prefix = nitpick_prefix ^ "lbfp" ^ name_sep
blanchet@33192
   236
val skolem_prefix = nitpick_prefix ^ "sk"
blanchet@33192
   237
val special_prefix = nitpick_prefix ^ "sp"
blanchet@33192
   238
val uncurry_prefix = nitpick_prefix ^ "unc"
blanchet@33192
   239
val eval_prefix = nitpick_prefix ^ "eval"
blanchet@33192
   240
val bound_var_prefix = "b"
blanchet@33192
   241
val cong_var_prefix = "c"
blanchet@33192
   242
val iter_var_prefix = "i"
blanchet@33192
   243
val val_var_prefix = nitpick_prefix ^ "v"
blanchet@33192
   244
val arg_var_prefix = "x"
blanchet@33192
   245
blanchet@33192
   246
(* int -> string *)
blanchet@33192
   247
fun sel_prefix_for j = sel_prefix ^ string_of_int j ^ name_sep
blanchet@33192
   248
fun special_prefix_for j = special_prefix ^ string_of_int j ^ name_sep
blanchet@33192
   249
(* int -> int -> string *)
blanchet@33192
   250
fun skolem_prefix_for k j =
blanchet@33192
   251
  skolem_prefix ^ string_of_int k ^ "@" ^ string_of_int j ^ name_sep
blanchet@33192
   252
fun uncurry_prefix_for k j =
blanchet@33192
   253
  uncurry_prefix ^ string_of_int k ^ "@" ^ string_of_int j ^ name_sep
blanchet@33192
   254
blanchet@33192
   255
(* string -> string * string *)
blanchet@33192
   256
val strip_first_name_sep =
blanchet@33192
   257
  Substring.full #> Substring.position name_sep ##> Substring.triml 1
blanchet@33192
   258
  #> pairself Substring.string
blanchet@33192
   259
(* string -> string *)
blanchet@33192
   260
fun original_name s =
blanchet@33192
   261
  if String.isPrefix nitpick_prefix s then
blanchet@33192
   262
    case strip_first_name_sep s of (s1, "") => s1 | (_, s2) => original_name s2
blanchet@33192
   263
  else
blanchet@33192
   264
    s
blanchet@33192
   265
val after_name_sep = snd o strip_first_name_sep
blanchet@33192
   266
blanchet@33192
   267
(* When you add constants to these lists, make sure to handle them in
blanchet@33224
   268
   "Nitpick_Nut.nut_from_term", and perhaps in "Nitpick_Mono.consider_term" as
blanchet@33192
   269
   well. *)
blanchet@33192
   270
val built_in_consts =
blanchet@33192
   271
  [(@{const_name all}, 1),
blanchet@33192
   272
   (@{const_name "=="}, 2),
blanchet@33192
   273
   (@{const_name "==>"}, 2),
blanchet@33192
   274
   (@{const_name Pure.conjunction}, 2),
blanchet@33192
   275
   (@{const_name Trueprop}, 1),
blanchet@33192
   276
   (@{const_name Not}, 1),
blanchet@33192
   277
   (@{const_name False}, 0),
blanchet@33192
   278
   (@{const_name True}, 0),
blanchet@33192
   279
   (@{const_name All}, 1),
blanchet@33192
   280
   (@{const_name Ex}, 1),
blanchet@33192
   281
   (@{const_name "op ="}, 2),
blanchet@33192
   282
   (@{const_name "op &"}, 2),
blanchet@33192
   283
   (@{const_name "op |"}, 2),
blanchet@33192
   284
   (@{const_name "op -->"}, 2),
blanchet@33192
   285
   (@{const_name If}, 3),
blanchet@33192
   286
   (@{const_name Let}, 2),
blanchet@33192
   287
   (@{const_name Unity}, 0),
blanchet@33192
   288
   (@{const_name Pair}, 2),
blanchet@33192
   289
   (@{const_name fst}, 1),
blanchet@33192
   290
   (@{const_name snd}, 1),
blanchet@33192
   291
   (@{const_name Id}, 0),
blanchet@33192
   292
   (@{const_name insert}, 2),
blanchet@33192
   293
   (@{const_name converse}, 1),
blanchet@33192
   294
   (@{const_name trancl}, 1),
blanchet@33192
   295
   (@{const_name rel_comp}, 2),
blanchet@33192
   296
   (@{const_name image}, 2),
blanchet@33192
   297
   (@{const_name Suc}, 0),
blanchet@33192
   298
   (@{const_name finite}, 1),
blanchet@33192
   299
   (@{const_name nat}, 0),
blanchet@33192
   300
   (@{const_name zero_nat_inst.zero_nat}, 0),
blanchet@33192
   301
   (@{const_name one_nat_inst.one_nat}, 0),
blanchet@33192
   302
   (@{const_name plus_nat_inst.plus_nat}, 0),
blanchet@33192
   303
   (@{const_name minus_nat_inst.minus_nat}, 0),
blanchet@33192
   304
   (@{const_name times_nat_inst.times_nat}, 0),
blanchet@33192
   305
   (@{const_name div_nat_inst.div_nat}, 0),
blanchet@33192
   306
   (@{const_name div_nat_inst.mod_nat}, 0),
blanchet@33192
   307
   (@{const_name ord_nat_inst.less_nat}, 2),
blanchet@33192
   308
   (@{const_name ord_nat_inst.less_eq_nat}, 2),
blanchet@33192
   309
   (@{const_name nat_gcd}, 0),
blanchet@33192
   310
   (@{const_name nat_lcm}, 0),
blanchet@33192
   311
   (@{const_name zero_int_inst.zero_int}, 0),
blanchet@33192
   312
   (@{const_name one_int_inst.one_int}, 0),
blanchet@33192
   313
   (@{const_name plus_int_inst.plus_int}, 0),
blanchet@33192
   314
   (@{const_name minus_int_inst.minus_int}, 0),
blanchet@33192
   315
   (@{const_name times_int_inst.times_int}, 0),
blanchet@33192
   316
   (@{const_name div_int_inst.div_int}, 0),
blanchet@33192
   317
   (@{const_name div_int_inst.mod_int}, 0),
blanchet@33562
   318
   (@{const_name uminus_int_inst.uminus_int}, 0),
blanchet@33192
   319
   (@{const_name ord_int_inst.less_int}, 2),
blanchet@33192
   320
   (@{const_name ord_int_inst.less_eq_int}, 2),
blanchet@33192
   321
   (@{const_name Tha}, 1),
blanchet@33192
   322
   (@{const_name Frac}, 0),
blanchet@33192
   323
   (@{const_name norm_frac}, 0)]
blanchet@33192
   324
val built_in_descr_consts =
blanchet@33192
   325
  [(@{const_name The}, 1),
blanchet@33192
   326
   (@{const_name Eps}, 1)]
blanchet@33192
   327
val built_in_typed_consts =
blanchet@33192
   328
  [((@{const_name of_nat}, nat_T --> int_T), 0)]
blanchet@33192
   329
val built_in_set_consts =
blanchet@33192
   330
  [(@{const_name lower_semilattice_fun_inst.inf_fun}, 2),
blanchet@33192
   331
   (@{const_name upper_semilattice_fun_inst.sup_fun}, 2),
blanchet@33192
   332
   (@{const_name minus_fun_inst.minus_fun}, 2),
blanchet@33192
   333
   (@{const_name ord_fun_inst.less_eq_fun}, 2)]
blanchet@33192
   334
blanchet@33192
   335
(* typ -> typ *)
blanchet@33192
   336
fun unbox_type (Type (@{type_name fun_box}, Ts)) =
blanchet@33192
   337
    Type ("fun", map unbox_type Ts)
blanchet@33192
   338
  | unbox_type (Type (@{type_name pair_box}, Ts)) =
blanchet@33192
   339
    Type ("*", map unbox_type Ts)
blanchet@33192
   340
  | unbox_type (Type (s, Ts)) = Type (s, map unbox_type Ts)
blanchet@33192
   341
  | unbox_type T = T
blanchet@33192
   342
(* Proof.context -> typ -> string *)
blanchet@33192
   343
fun string_for_type ctxt = Syntax.string_of_typ ctxt o unbox_type
blanchet@33192
   344
blanchet@33192
   345
(* string -> string -> string *)
blanchet@33192
   346
val prefix_name = Long_Name.qualify o Long_Name.base_name
blanchet@33192
   347
(* string -> string *)
blanchet@33192
   348
fun short_name s = List.last (space_explode "." s) handle List.Empty => ""
blanchet@33192
   349
(* string -> term -> term *)
blanchet@33192
   350
val prefix_abs_vars = Term.map_abs_vars o prefix_name
blanchet@33192
   351
(* term -> term *)
blanchet@33192
   352
val shorten_abs_vars = Term.map_abs_vars short_name
blanchet@33192
   353
(* string -> string *)
blanchet@33192
   354
fun short_const_name s =
blanchet@33192
   355
  case space_explode name_sep s of
blanchet@33192
   356
    [_] => s |> String.isPrefix nitpick_prefix s ? unprefix nitpick_prefix
blanchet@33192
   357
  | ss => map short_name ss |> space_implode "_"
blanchet@33192
   358
(* term -> term *)
blanchet@33192
   359
val shorten_const_names_in_term =
blanchet@33192
   360
  map_aterms (fn Const (s, T) => Const (short_const_name s, T) | t => t)
blanchet@33192
   361
blanchet@33192
   362
(* theory -> typ * typ -> bool *)
blanchet@33192
   363
fun type_match thy (T1, T2) =
blanchet@33192
   364
  (Sign.typ_match thy (T2, T1) Vartab.empty; true)
blanchet@33192
   365
  handle Type.TYPE_MATCH => false
blanchet@33192
   366
(* theory -> styp * styp -> bool *)
blanchet@33192
   367
fun const_match thy ((s1, T1), (s2, T2)) =
blanchet@33192
   368
  s1 = s2 andalso type_match thy (T1, T2)
blanchet@33192
   369
(* theory -> term * term -> bool *)
blanchet@33192
   370
fun term_match thy (Const x1, Const x2) = const_match thy (x1, x2)
blanchet@33192
   371
  | term_match thy (Free (s1, T1), Free (s2, T2)) =
blanchet@33192
   372
    const_match thy ((short_name s1, T1), (short_name s2, T2))
blanchet@33192
   373
  | term_match thy (t1, t2) = t1 aconv t2
blanchet@33192
   374
blanchet@33192
   375
(* typ -> bool *)
blanchet@33192
   376
fun is_TFree (TFree _) = true
blanchet@33192
   377
  | is_TFree _ = false
blanchet@33192
   378
fun is_higher_order_type (Type ("fun", _)) = true
blanchet@33192
   379
  | is_higher_order_type (Type (_, Ts)) = exists is_higher_order_type Ts
blanchet@33192
   380
  | is_higher_order_type _ = false
blanchet@33192
   381
fun is_fun_type (Type ("fun", _)) = true
blanchet@33192
   382
  | is_fun_type _ = false
blanchet@33192
   383
fun is_set_type (Type ("fun", [_, @{typ bool}])) = true
blanchet@33192
   384
  | is_set_type _ = false
blanchet@33192
   385
fun is_pair_type (Type ("*", _)) = true
blanchet@33192
   386
  | is_pair_type _ = false
blanchet@33192
   387
fun is_lfp_iterator_type (Type (s, _)) = String.isPrefix lfp_iterator_prefix s
blanchet@33192
   388
  | is_lfp_iterator_type _ = false
blanchet@33192
   389
fun is_gfp_iterator_type (Type (s, _)) = String.isPrefix gfp_iterator_prefix s
blanchet@33192
   390
  | is_gfp_iterator_type _ = false
blanchet@33192
   391
val is_fp_iterator_type = is_lfp_iterator_type orf is_gfp_iterator_type
blanchet@33192
   392
val is_boolean_type = equal prop_T orf equal bool_T
blanchet@33192
   393
val is_integer_type =
blanchet@33192
   394
  member (op =) [nat_T, int_T, @{typ bisim_iterator}] orf is_fp_iterator_type
blanchet@33192
   395
val is_record_type = not o null o Record.dest_recTs
blanchet@33192
   396
(* theory -> typ -> bool *)
blanchet@33192
   397
fun is_frac_type thy (Type (s, [])) =
blanchet@33192
   398
    not (null (these (AList.lookup (op =) (#frac_types (TheoryData.get thy))
blanchet@33192
   399
                                          s)))
blanchet@33192
   400
  | is_frac_type _ _ = false
blanchet@33192
   401
fun is_number_type thy = is_integer_type orf is_frac_type thy
blanchet@33192
   402
blanchet@33192
   403
(* bool -> styp -> typ *)
blanchet@33192
   404
fun iterator_type_for_const gfp (s, T) =
blanchet@33192
   405
  Type ((if gfp then gfp_iterator_prefix else lfp_iterator_prefix) ^ s,
blanchet@33192
   406
        binder_types T)
blanchet@33192
   407
(* typ -> styp *)
blanchet@33192
   408
fun const_for_iterator_type (Type (s, Ts)) = (after_name_sep s, Ts ---> bool_T)
blanchet@33192
   409
  | const_for_iterator_type T =
blanchet@33224
   410
    raise TYPE ("Nitpick_HOL.const_for_iterator_type", [T], [])
blanchet@33192
   411
blanchet@33192
   412
(* int -> typ -> typ * typ *)
blanchet@33192
   413
fun strip_n_binders 0 T = ([], T)
blanchet@33192
   414
  | strip_n_binders n (Type ("fun", [T1, T2])) =
blanchet@33192
   415
    strip_n_binders (n - 1) T2 |>> cons T1
blanchet@33192
   416
  | strip_n_binders n (Type (@{type_name fun_box}, Ts)) =
blanchet@33192
   417
    strip_n_binders n (Type ("fun", Ts))
blanchet@33224
   418
  | strip_n_binders _ T = raise TYPE ("Nitpick_HOL.strip_n_binders", [T], [])
blanchet@33192
   419
(* typ -> typ *)
blanchet@33192
   420
val nth_range_type = snd oo strip_n_binders
blanchet@33192
   421
blanchet@33192
   422
(* typ -> int *)
blanchet@33192
   423
fun num_factors_in_type (Type ("*", [T1, T2])) =
blanchet@33192
   424
    fold (Integer.add o num_factors_in_type) [T1, T2] 0
blanchet@33192
   425
  | num_factors_in_type _ = 1
blanchet@33192
   426
fun num_binder_types (Type ("fun", [_, T2])) = 1 + num_binder_types T2
blanchet@33192
   427
  | num_binder_types _ = 0
blanchet@33192
   428
(* typ -> typ list *)
blanchet@33192
   429
val curried_binder_types = maps HOLogic.flatten_tupleT o binder_types
blanchet@33192
   430
fun maybe_curried_binder_types T =
blanchet@33192
   431
  (if is_pair_type (body_type T) then binder_types else curried_binder_types) T
blanchet@33192
   432
blanchet@33192
   433
(* typ -> term list -> term *)
blanchet@33192
   434
fun mk_flat_tuple _ [t] = t
blanchet@33192
   435
  | mk_flat_tuple (Type ("*", [T1, T2])) (t :: ts) =
blanchet@33192
   436
    HOLogic.pair_const T1 T2 $ t $ (mk_flat_tuple T2 ts)
blanchet@33224
   437
  | mk_flat_tuple T ts = raise TYPE ("Nitpick_HOL.mk_flat_tuple", [T], ts)
blanchet@33192
   438
(* int -> term -> term list *)
blanchet@33192
   439
fun dest_n_tuple 1 t = [t]
blanchet@33192
   440
  | dest_n_tuple n t = HOLogic.dest_prod t ||> dest_n_tuple (n - 1) |> op ::
blanchet@33192
   441
blanchet@33192
   442
(* int -> typ -> typ list *)
blanchet@33192
   443
fun dest_n_tuple_type 1 T = [T]
blanchet@33192
   444
  | dest_n_tuple_type n (Type (_, [T1, T2])) =
blanchet@33192
   445
    T1 :: dest_n_tuple_type (n - 1) T2
blanchet@33224
   446
  | dest_n_tuple_type _ T =
blanchet@33224
   447
    raise TYPE ("Nitpick_HOL.dest_n_tuple_type", [T], [])
blanchet@33192
   448
blanchet@33192
   449
(* (typ * typ) list -> typ -> typ *)
blanchet@33192
   450
fun typ_subst [] T = T
blanchet@33192
   451
  | typ_subst ps T =
blanchet@33192
   452
    let
blanchet@33192
   453
      (* typ -> typ *)
blanchet@33192
   454
      fun subst T =
blanchet@33192
   455
        case AList.lookup (op =) ps T of
blanchet@33192
   456
          SOME T' => T'
blanchet@33192
   457
        | NONE => case T of Type (s, Ts) => Type (s, map subst Ts) | _ => T
blanchet@33192
   458
    in subst T end
blanchet@33192
   459
blanchet@33192
   460
(* theory -> typ -> typ -> typ -> typ *)
blanchet@33192
   461
fun instantiate_type thy T1 T1' T2 =
blanchet@33192
   462
  Same.commit (Envir.subst_type_same
blanchet@33192
   463
                   (Sign.typ_match thy (Logic.varifyT T1, T1') Vartab.empty))
blanchet@33192
   464
              (Logic.varifyT T2)
blanchet@33192
   465
  handle Type.TYPE_MATCH =>
blanchet@33224
   466
         raise TYPE ("Nitpick_HOL.instantiate_type", [T1, T1'], [])
blanchet@33192
   467
blanchet@33192
   468
(* theory -> typ -> typ -> styp *)
blanchet@33192
   469
fun repair_constr_type thy body_T' T =
blanchet@33192
   470
  instantiate_type thy (body_type T) body_T' T
blanchet@33192
   471
blanchet@33192
   472
(* string -> (string * string) list -> theory -> theory *)
blanchet@33192
   473
fun register_frac_type frac_s ersaetze thy =
blanchet@33192
   474
  let
blanchet@33192
   475
    val {frac_types, codatatypes} = TheoryData.get thy
blanchet@33192
   476
    val frac_types = AList.update (op =) (frac_s, ersaetze) frac_types
blanchet@33192
   477
  in TheoryData.put {frac_types = frac_types, codatatypes = codatatypes} thy end
blanchet@33192
   478
(* string -> theory -> theory *)
blanchet@33192
   479
fun unregister_frac_type frac_s = register_frac_type frac_s []
blanchet@33192
   480
blanchet@33192
   481
(* typ -> string -> styp list -> theory -> theory *)
blanchet@33192
   482
fun register_codatatype co_T case_name constr_xs thy =
blanchet@33192
   483
  let
blanchet@33192
   484
    val {frac_types, codatatypes} = TheoryData.get thy
blanchet@33192
   485
    val constr_xs = map (apsnd (repair_constr_type thy co_T)) constr_xs
blanchet@33192
   486
    val (co_s, co_Ts) = dest_Type co_T
blanchet@33192
   487
    val _ =
blanchet@33192
   488
      if forall is_TFree co_Ts andalso not (has_duplicates (op =) co_Ts) then ()
blanchet@33224
   489
      else raise TYPE ("Nitpick_HOL.register_codatatype", [co_T], [])
blanchet@33192
   490
    val codatatypes = AList.update (op =) (co_s, (case_name, constr_xs))
blanchet@33192
   491
                                   codatatypes
blanchet@33192
   492
  in TheoryData.put {frac_types = frac_types, codatatypes = codatatypes} thy end
blanchet@33192
   493
(* typ -> theory -> theory *)
blanchet@33192
   494
fun unregister_codatatype co_T = register_codatatype co_T "" []
blanchet@33192
   495
blanchet@33192
   496
type typedef_info =
blanchet@33192
   497
  {rep_type: typ, abs_type: typ, Rep_name: string, Abs_name: string,
blanchet@33192
   498
   set_def: thm option, prop_of_Rep: thm, set_name: string,
blanchet@33192
   499
   Rep_inverse: thm option}
blanchet@33192
   500
blanchet@33192
   501
(* theory -> string -> typedef_info *)
blanchet@33192
   502
fun typedef_info thy s =
blanchet@33192
   503
  if is_frac_type thy (Type (s, [])) then
blanchet@33192
   504
    SOME {abs_type = Type (s, []), rep_type = @{typ "int * int"},
blanchet@33192
   505
          Abs_name = @{const_name Abs_Frac}, Rep_name = @{const_name Rep_Frac},
blanchet@33192
   506
          set_def = NONE, prop_of_Rep = @{prop "Rep_Frac x \<in> Frac"}
blanchet@33192
   507
                          |> Logic.varify,
blanchet@33192
   508
          set_name = @{const_name Frac}, Rep_inverse = NONE}
blanchet@33192
   509
  else case Typedef.get_info thy s of
blanchet@33192
   510
    SOME {abs_type, rep_type, Abs_name, Rep_name, set_def, Rep, Rep_inverse,
blanchet@33192
   511
          ...} =>
blanchet@33192
   512
    SOME {abs_type = abs_type, rep_type = rep_type, Abs_name = Abs_name,
blanchet@33192
   513
          Rep_name = Rep_name, set_def = set_def, prop_of_Rep = prop_of Rep,
blanchet@33192
   514
          set_name = set_prefix ^ s, Rep_inverse = SOME Rep_inverse}
blanchet@33192
   515
  | NONE => NONE
blanchet@33192
   516
blanchet@33192
   517
(* string -> bool *)
blanchet@33192
   518
fun is_basic_datatype s =
blanchet@33192
   519
    s mem [@{type_name "*"}, @{type_name bool}, @{type_name unit},
blanchet@33192
   520
           @{type_name nat}, @{type_name int}]
blanchet@33192
   521
(* theory -> string -> bool *)
blanchet@33192
   522
val is_typedef = is_some oo typedef_info
blanchet@33192
   523
val is_real_datatype = is_some oo Datatype.get_info
blanchet@33192
   524
(* theory -> typ -> bool *)
blanchet@33192
   525
fun is_codatatype thy (T as Type (s, _)) =
blanchet@33192
   526
    not (null (AList.lookup (op =) (#codatatypes (TheoryData.get thy)) s
blanchet@33192
   527
               |> Option.map snd |> these))
blanchet@33192
   528
  | is_codatatype _ _ = false
blanchet@33192
   529
fun is_pure_typedef thy (T as Type (s, _)) =
blanchet@33192
   530
    is_typedef thy s andalso
blanchet@33192
   531
    not (is_real_datatype thy s orelse is_codatatype thy T
blanchet@33192
   532
         orelse is_record_type T orelse is_integer_type T)
blanchet@33192
   533
  | is_pure_typedef _ _ = false
blanchet@33192
   534
fun is_univ_typedef thy (Type (s, _)) =
blanchet@33192
   535
    (case typedef_info thy s of
blanchet@33192
   536
       SOME {set_def, prop_of_Rep, ...} =>
blanchet@33192
   537
       (case set_def of
blanchet@33192
   538
          SOME thm =>
blanchet@33192
   539
          try (fst o dest_Const o snd o Logic.dest_equals o prop_of) thm
blanchet@33192
   540
        | NONE =>
blanchet@33192
   541
          try (fst o dest_Const o snd o HOLogic.dest_mem
blanchet@33192
   542
               o HOLogic.dest_Trueprop) prop_of_Rep) = SOME @{const_name UNIV}
blanchet@33192
   543
     | NONE => false)
blanchet@33192
   544
  | is_univ_typedef _ _ = false
blanchet@33192
   545
fun is_datatype thy (T as Type (s, _)) =
blanchet@33192
   546
    (is_typedef thy s orelse is_codatatype thy T orelse T = @{typ ind})
blanchet@33192
   547
    andalso not (is_basic_datatype s)
blanchet@33192
   548
  | is_datatype _ _ = false
blanchet@33192
   549
blanchet@33192
   550
(* theory -> typ -> (string * typ) list * (string * typ) *)
blanchet@33192
   551
fun all_record_fields thy T =
blanchet@33192
   552
  let val (recs, more) = Record.get_extT_fields thy T in
blanchet@33192
   553
    recs @ more :: all_record_fields thy (snd more)
blanchet@33192
   554
  end
blanchet@33192
   555
  handle TYPE _ => []
blanchet@33192
   556
(* styp -> bool *)
blanchet@33192
   557
fun is_record_constr (x as (s, T)) =
blanchet@33192
   558
  String.isSuffix Record.extN s andalso
blanchet@33192
   559
  let val dataT = body_type T in
blanchet@33192
   560
    is_record_type dataT andalso
blanchet@33192
   561
    s = unsuffix Record.ext_typeN (fst (dest_Type dataT)) ^ Record.extN
blanchet@33192
   562
  end
blanchet@33192
   563
(* theory -> typ -> int *)
blanchet@33192
   564
val num_record_fields = Integer.add 1 o length o fst oo Record.get_extT_fields
blanchet@33192
   565
(* theory -> string -> typ -> int *)
blanchet@33192
   566
fun no_of_record_field thy s T1 =
blanchet@33192
   567
  find_index (equal s o fst) (Record.get_extT_fields thy T1 ||> single |> op @)
blanchet@33192
   568
(* theory -> styp -> bool *)
blanchet@33192
   569
fun is_record_get thy (s, Type ("fun", [T1, _])) =
blanchet@33192
   570
    exists (equal s o fst) (all_record_fields thy T1)
blanchet@33192
   571
  | is_record_get _ _ = false
blanchet@33192
   572
fun is_record_update thy (s, T) =
blanchet@33192
   573
  String.isSuffix Record.updateN s andalso
blanchet@33192
   574
  exists (equal (unsuffix Record.updateN s) o fst)
blanchet@33192
   575
         (all_record_fields thy (body_type T))
blanchet@33192
   576
  handle TYPE _ => false
blanchet@33192
   577
fun is_abs_fun thy (s, Type ("fun", [_, Type (s', _)])) =
blanchet@33192
   578
    (case typedef_info thy s' of
blanchet@33192
   579
       SOME {Abs_name, ...} => s = Abs_name
blanchet@33192
   580
     | NONE => false)
blanchet@33192
   581
  | is_abs_fun _ _ = false
blanchet@33192
   582
fun is_rep_fun thy (s, Type ("fun", [Type (s', _), _])) =
blanchet@33192
   583
    (case typedef_info thy s' of
blanchet@33192
   584
       SOME {Rep_name, ...} => s = Rep_name
blanchet@33192
   585
     | NONE => false)
blanchet@33192
   586
  | is_rep_fun _ _ = false
blanchet@33192
   587
blanchet@33192
   588
(* theory -> styp -> styp *)
blanchet@33192
   589
fun mate_of_rep_fun thy (x as (_, Type ("fun", [T1 as Type (s', _), T2]))) =
blanchet@33192
   590
    (case typedef_info thy s' of
blanchet@33192
   591
       SOME {Abs_name, ...} => (Abs_name, Type ("fun", [T2, T1]))
blanchet@33224
   592
     | NONE => raise TERM ("Nitpick_HOL.mate_of_rep_fun", [Const x]))
blanchet@33224
   593
  | mate_of_rep_fun _ x = raise TERM ("Nitpick_HOL.mate_of_rep_fun", [Const x])
blanchet@33192
   594
blanchet@33192
   595
(* theory -> styp -> bool *)
blanchet@33192
   596
fun is_coconstr thy (s, T) =
blanchet@33192
   597
  let
blanchet@33192
   598
    val {codatatypes, ...} = TheoryData.get thy
blanchet@33192
   599
    val co_T = body_type T
blanchet@33192
   600
    val co_s = dest_Type co_T |> fst
blanchet@33192
   601
  in
blanchet@33192
   602
    exists (fn (s', T') => s = s' andalso repair_constr_type thy co_T T' = T)
blanchet@33192
   603
           (AList.lookup (op =) codatatypes co_s |> Option.map snd |> these)
blanchet@33192
   604
  end
blanchet@33192
   605
  handle TYPE ("dest_Type", _, _) => false
blanchet@33192
   606
fun is_constr_like thy (s, T) =
blanchet@33192
   607
  s mem [@{const_name FunBox}, @{const_name PairBox}] orelse
blanchet@33192
   608
  let val (x as (s, T)) = (s, unbox_type T) in
blanchet@33192
   609
    Refute.is_IDT_constructor thy x orelse is_record_constr x
blanchet@33192
   610
    orelse (is_abs_fun thy x andalso is_pure_typedef thy (range_type T))
blanchet@33192
   611
    orelse s mem [@{const_name Zero_Rep}, @{const_name Suc_Rep}]
blanchet@33192
   612
    orelse x = (@{const_name zero_nat_inst.zero_nat}, nat_T)
blanchet@33192
   613
    orelse is_coconstr thy x
blanchet@33192
   614
  end
blanchet@33192
   615
fun is_constr thy (x as (_, T)) =
blanchet@33192
   616
  is_constr_like thy x
blanchet@33192
   617
  andalso not (is_basic_datatype (fst (dest_Type (body_type T))))
blanchet@33192
   618
(* string -> bool *)
blanchet@33192
   619
val is_sel = String.isPrefix discr_prefix orf String.isPrefix sel_prefix
blanchet@33192
   620
val is_sel_like_and_no_discr =
blanchet@33192
   621
  String.isPrefix sel_prefix
blanchet@33192
   622
  orf (member (op =) [@{const_name fst}, @{const_name snd}])
blanchet@33192
   623
blanchet@33192
   624
datatype boxability =
blanchet@33192
   625
  InConstr | InSel | InExpr | InPair | InFunLHS | InFunRHS1 | InFunRHS2
blanchet@33192
   626
blanchet@33192
   627
(* boxability -> boxability *)
blanchet@33192
   628
fun in_fun_lhs_for InConstr = InSel
blanchet@33192
   629
  | in_fun_lhs_for _ = InFunLHS
blanchet@33192
   630
fun in_fun_rhs_for InConstr = InConstr
blanchet@33192
   631
  | in_fun_rhs_for InSel = InSel
blanchet@33192
   632
  | in_fun_rhs_for InFunRHS1 = InFunRHS2
blanchet@33192
   633
  | in_fun_rhs_for _ = InFunRHS1
blanchet@33192
   634
blanchet@33192
   635
(* extended_context -> boxability -> typ -> bool *)
blanchet@33192
   636
fun is_boxing_worth_it (ext_ctxt : extended_context) boxy T =
blanchet@33192
   637
  case T of
blanchet@33192
   638
    Type ("fun", _) =>
blanchet@33192
   639
    boxy mem [InPair, InFunLHS] andalso not (is_boolean_type (body_type T))
blanchet@33192
   640
  | Type ("*", Ts) =>
blanchet@33192
   641
    boxy mem [InPair, InFunRHS1, InFunRHS2]
blanchet@33192
   642
    orelse (boxy mem [InExpr, InFunLHS]
blanchet@33192
   643
            andalso exists (is_boxing_worth_it ext_ctxt InPair)
blanchet@33192
   644
                           (map (box_type ext_ctxt InPair) Ts))
blanchet@33192
   645
  | _ => false
blanchet@33192
   646
(* extended_context -> boxability -> string * typ list -> string *)
blanchet@33192
   647
and should_box_type (ext_ctxt as {thy, boxes, ...}) boxy (z as (s, Ts)) =
blanchet@33192
   648
  case triple_lookup (type_match thy) boxes (Type z) of
blanchet@33192
   649
    SOME (SOME box_me) => box_me
blanchet@33192
   650
  | _ => is_boxing_worth_it ext_ctxt boxy (Type z)
blanchet@33192
   651
(* extended_context -> boxability -> typ -> typ *)
blanchet@33192
   652
and box_type ext_ctxt boxy T =
blanchet@33192
   653
  case T of
blanchet@33192
   654
    Type (z as ("fun", [T1, T2])) =>
blanchet@33192
   655
    if not (boxy mem [InConstr, InSel])
blanchet@33192
   656
       andalso should_box_type ext_ctxt boxy z then
blanchet@33192
   657
      Type (@{type_name fun_box},
blanchet@33192
   658
            [box_type ext_ctxt InFunLHS T1, box_type ext_ctxt InFunRHS1 T2])
blanchet@33192
   659
    else
blanchet@33192
   660
      box_type ext_ctxt (in_fun_lhs_for boxy) T1
blanchet@33192
   661
      --> box_type ext_ctxt (in_fun_rhs_for boxy) T2
blanchet@33192
   662
  | Type (z as ("*", Ts)) =>
blanchet@33192
   663
    if should_box_type ext_ctxt boxy z then
blanchet@33192
   664
      Type (@{type_name pair_box}, map (box_type ext_ctxt InSel) Ts)
blanchet@33192
   665
    else
blanchet@33192
   666
      Type ("*", map (box_type ext_ctxt
blanchet@33192
   667
                               (if boxy mem [InConstr, InSel] then boxy
blanchet@33192
   668
                                else InPair)) Ts)
blanchet@33192
   669
  | _ => T
blanchet@33192
   670
blanchet@33192
   671
(* styp -> styp *)
blanchet@33192
   672
fun discr_for_constr (s, T) = (discr_prefix ^ s, body_type T --> bool_T)
blanchet@33192
   673
blanchet@33192
   674
(* typ -> int *)
blanchet@33192
   675
fun num_sels_for_constr_type T = length (maybe_curried_binder_types T)
blanchet@33192
   676
(* string -> int -> string *)
blanchet@33192
   677
fun nth_sel_name_for_constr_name s n =
blanchet@33192
   678
  if s = @{const_name Pair} then
blanchet@33192
   679
    if n = 0 then @{const_name fst} else @{const_name snd}
blanchet@33192
   680
  else
blanchet@33192
   681
    sel_prefix_for n ^ s
blanchet@33192
   682
(* styp -> int -> styp *)
blanchet@33192
   683
fun nth_sel_for_constr x ~1 = discr_for_constr x
blanchet@33192
   684
  | nth_sel_for_constr (s, T) n =
blanchet@33192
   685
    (nth_sel_name_for_constr_name s n,
blanchet@33192
   686
     body_type T --> nth (maybe_curried_binder_types T) n)
blanchet@33192
   687
(* extended_context -> styp -> int -> styp *)
blanchet@33192
   688
fun boxed_nth_sel_for_constr ext_ctxt =
blanchet@33192
   689
  apsnd (box_type ext_ctxt InSel) oo nth_sel_for_constr
blanchet@33192
   690
blanchet@33192
   691
(* string -> int *)
blanchet@33192
   692
fun sel_no_from_name s =
blanchet@33192
   693
  if String.isPrefix discr_prefix s then
blanchet@33192
   694
    ~1
blanchet@33192
   695
  else if String.isPrefix sel_prefix s then
blanchet@33192
   696
    s |> unprefix sel_prefix |> Int.fromString |> the
blanchet@33192
   697
  else if s = @{const_name snd} then
blanchet@33192
   698
    1
blanchet@33192
   699
  else
blanchet@33192
   700
    0
blanchet@33192
   701
blanchet@33192
   702
(* typ list -> term -> int -> term *)
blanchet@33192
   703
fun eta_expand _ t 0 = t
blanchet@33192
   704
  | eta_expand Ts (Abs (s, T, t')) n =
blanchet@33192
   705
    Abs (s, T, eta_expand (T :: Ts) t' (n - 1))
blanchet@33192
   706
  | eta_expand Ts t n =
blanchet@33192
   707
    fold_rev (curry3 Abs ("x\<^isub>\<eta>" ^ nat_subscript n))
blanchet@33192
   708
             (List.take (binder_types (fastype_of1 (Ts, t)), n))
blanchet@33192
   709
             (list_comb (incr_boundvars n t, map Bound (n - 1 downto 0)))
blanchet@33192
   710
blanchet@33192
   711
(* term -> term *)
blanchet@33192
   712
fun extensionalize t =
blanchet@33192
   713
  case t of
blanchet@33192
   714
    (t0 as @{const Trueprop}) $ t1 => t0 $ extensionalize t1
blanchet@33192
   715
  | Const (@{const_name "op ="}, _) $ t1 $ Abs (s, T, t2) =>
blanchet@33192
   716
    let val v = Var ((s, maxidx_of_term t + 1), T) in
blanchet@33192
   717
      extensionalize (HOLogic.mk_eq (t1 $ v, subst_bound (v, t2)))
blanchet@33192
   718
    end
blanchet@33192
   719
  | _ => t
blanchet@33192
   720
blanchet@33192
   721
(* typ -> term list -> term *)
blanchet@33192
   722
fun distinctness_formula T =
blanchet@33192
   723
  all_distinct_unordered_pairs_of
blanchet@33192
   724
  #> map (fn (t1, t2) => @{const Not} $ (HOLogic.eq_const T $ t1 $ t2))
blanchet@33192
   725
  #> List.foldr (s_conj o swap) @{const True}
blanchet@33192
   726
blanchet@33192
   727
(* typ -> term *)
blanchet@33192
   728
fun zero_const T = Const (@{const_name zero_nat_inst.zero_nat}, T)
blanchet@33192
   729
fun suc_const T = Const (@{const_name Suc}, T --> T)
blanchet@33192
   730
blanchet@33192
   731
(* theory -> typ -> styp list *)
blanchet@33571
   732
fun uncached_datatype_constrs thy (T as Type (s, Ts)) =
blanchet@33192
   733
    if is_datatype thy T then
blanchet@33192
   734
      case Datatype.get_info thy s of
blanchet@33192
   735
        SOME {index, descr, ...} =>
blanchet@33192
   736
        let val (_, dtyps, constrs) = AList.lookup (op =) descr index |> the in
blanchet@33192
   737
          map (fn (s', Us) =>
blanchet@33192
   738
                  (s', map (Refute.typ_of_dtyp descr (dtyps ~~ Ts)) Us ---> T))
blanchet@33192
   739
              constrs
blanchet@33192
   740
         end
blanchet@33192
   741
      | NONE =>
blanchet@33192
   742
        case AList.lookup (op =) (#codatatypes (TheoryData.get thy)) s of
blanchet@33192
   743
          SOME (_, xs' as (_ :: _)) =>
blanchet@33192
   744
          map (apsnd (repair_constr_type thy T)) xs'
blanchet@33192
   745
        | _ =>
blanchet@33192
   746
          if is_record_type T then
blanchet@33192
   747
            let
blanchet@33192
   748
              val s' = unsuffix Record.ext_typeN s ^ Record.extN
blanchet@33192
   749
              val T' = (Record.get_extT_fields thy T
blanchet@33192
   750
                       |> apsnd single |> uncurry append |> map snd) ---> T
blanchet@33192
   751
            in [(s', T')] end
blanchet@33192
   752
          else case typedef_info thy s of
blanchet@33192
   753
            SOME {abs_type, rep_type, Abs_name, ...} =>
blanchet@33192
   754
            [(Abs_name, instantiate_type thy abs_type T rep_type --> T)]
blanchet@33192
   755
          | NONE =>
blanchet@33192
   756
            if T = @{typ ind} then
blanchet@33192
   757
              [dest_Const @{const Zero_Rep}, dest_Const @{const Suc_Rep}]
blanchet@33192
   758
            else
blanchet@33192
   759
              []
blanchet@33192
   760
    else
blanchet@33192
   761
      []
blanchet@33571
   762
  | uncached_datatype_constrs _ _ = []
blanchet@33192
   763
(* extended_context -> typ -> styp list *)
blanchet@33571
   764
fun datatype_constrs (ext_ctxt as {thy, constr_cache, ...} : extended_context)
blanchet@33571
   765
                     T =
blanchet@33571
   766
  case AList.lookup (op =) (!constr_cache) T of
blanchet@33571
   767
    SOME xs => xs
blanchet@33571
   768
  | NONE =>
blanchet@33571
   769
    let val xs = uncached_datatype_constrs thy T in
blanchet@33571
   770
      (Unsynchronized.change constr_cache (cons (T, xs)); xs)
blanchet@33571
   771
    end
blanchet@33571
   772
fun boxed_datatype_constrs ext_ctxt =
blanchet@33571
   773
  map (apsnd (box_type ext_ctxt InConstr)) o datatype_constrs ext_ctxt
blanchet@33571
   774
(* extended_context -> typ -> int *)
blanchet@33192
   775
val num_datatype_constrs = length oo datatype_constrs
blanchet@33192
   776
blanchet@33192
   777
(* string -> string *)
blanchet@33192
   778
fun constr_name_for_sel_like @{const_name fst} = @{const_name Pair}
blanchet@33192
   779
  | constr_name_for_sel_like @{const_name snd} = @{const_name Pair}
blanchet@33192
   780
  | constr_name_for_sel_like s' = original_name s'
blanchet@33192
   781
(* extended_context -> styp -> styp *)
blanchet@33192
   782
fun boxed_constr_for_sel ext_ctxt (s', T') =
blanchet@33192
   783
  let val s = constr_name_for_sel_like s' in
blanchet@33192
   784
    AList.lookup (op =) (boxed_datatype_constrs ext_ctxt (domain_type T')) s
blanchet@33192
   785
    |> the |> pair s
blanchet@33192
   786
  end
blanchet@33571
   787
(* extended_context -> styp -> term *)
blanchet@33571
   788
fun discr_term_for_constr ext_ctxt (x as (s, T)) =
blanchet@33192
   789
  let val dataT = body_type T in
blanchet@33192
   790
    if s = @{const_name Suc} then
blanchet@33192
   791
      Abs (Name.uu, dataT,
blanchet@33192
   792
           @{const Not} $ HOLogic.mk_eq (zero_const dataT, Bound 0))
blanchet@33571
   793
    else if num_datatype_constrs ext_ctxt dataT >= 2 then
blanchet@33192
   794
      Const (discr_for_constr x)
blanchet@33192
   795
    else
blanchet@33192
   796
      Abs (Name.uu, dataT, @{const True})
blanchet@33192
   797
  end
blanchet@33192
   798
blanchet@33571
   799
(* extended_context -> styp -> term -> term *)
blanchet@33571
   800
fun discriminate_value (ext_ctxt as {thy, ...}) (x as (_, T)) t =
blanchet@33192
   801
  case strip_comb t of
blanchet@33192
   802
    (Const x', args) =>
blanchet@33192
   803
    if x = x' then @{const True}
blanchet@33192
   804
    else if is_constr_like thy x' then @{const False}
blanchet@33571
   805
    else betapply (discr_term_for_constr ext_ctxt x, t)
blanchet@33571
   806
  | _ => betapply (discr_term_for_constr ext_ctxt x, t)
blanchet@33192
   807
blanchet@33192
   808
(* styp -> term -> term *)
blanchet@33192
   809
fun nth_arg_sel_term_for_constr (x as (s, T)) n =
blanchet@33192
   810
  let val (arg_Ts, dataT) = strip_type T in
blanchet@33192
   811
    if dataT = nat_T then
blanchet@33192
   812
      @{term "%n::nat. minus_nat_inst.minus_nat n one_nat_inst.one_nat"}
blanchet@33192
   813
    else if is_pair_type dataT then
blanchet@33192
   814
      Const (nth_sel_for_constr x n)
blanchet@33192
   815
    else
blanchet@33192
   816
      let
blanchet@33192
   817
        (* int -> typ -> int * term *)
blanchet@33192
   818
        fun aux m (Type ("*", [T1, T2])) =
blanchet@33192
   819
            let
blanchet@33192
   820
              val (m, t1) = aux m T1
blanchet@33192
   821
              val (m, t2) = aux m T2
blanchet@33192
   822
            in (m, HOLogic.mk_prod (t1, t2)) end
blanchet@33192
   823
          | aux m T =
blanchet@33192
   824
            (m + 1, Const (nth_sel_name_for_constr_name s m, dataT --> T)
blanchet@33192
   825
                    $ Bound 0)
blanchet@33192
   826
        val m = fold (Integer.add o num_factors_in_type)
blanchet@33192
   827
                     (List.take (arg_Ts, n)) 0
blanchet@33192
   828
      in Abs ("x", dataT, aux m (nth arg_Ts n) |> snd) end
blanchet@33192
   829
  end
blanchet@33192
   830
(* theory -> styp -> term -> int -> typ -> term *)
blanchet@33192
   831
fun select_nth_constr_arg thy x t n res_T =
blanchet@33192
   832
  case strip_comb t of
blanchet@33192
   833
    (Const x', args) =>
blanchet@33192
   834
    if x = x' then nth args n
blanchet@33192
   835
    else if is_constr_like thy x' then Const (@{const_name unknown}, res_T)
blanchet@33192
   836
    else betapply (nth_arg_sel_term_for_constr x n, t)
blanchet@33192
   837
  | _ => betapply (nth_arg_sel_term_for_constr x n, t)
blanchet@33192
   838
blanchet@33192
   839
(* theory -> styp -> term list -> term *)
blanchet@33192
   840
fun construct_value _ x [] = Const x
blanchet@33192
   841
  | construct_value thy (x as (s, _)) args =
blanchet@33192
   842
    let val args = map Envir.eta_contract args in
blanchet@33192
   843
      case hd args of
blanchet@33192
   844
        Const (x' as (s', _)) $ t =>
blanchet@33192
   845
        if is_sel_like_and_no_discr s' andalso constr_name_for_sel_like s' = s
blanchet@33192
   846
           andalso forall (fn (n, t') =>
blanchet@33192
   847
                              select_nth_constr_arg thy x t n dummyT = t')
blanchet@33192
   848
                          (index_seq 0 (length args) ~~ args) then
blanchet@33192
   849
          t
blanchet@33192
   850
        else
blanchet@33192
   851
          list_comb (Const x, args)
blanchet@33192
   852
      | _ => list_comb (Const x, args)
blanchet@33192
   853
    end
blanchet@33192
   854
blanchet@33571
   855
(* extended_context -> typ -> term -> term *)
blanchet@33571
   856
fun constr_expand (ext_ctxt as {thy, ...}) T t =
blanchet@33192
   857
  (case head_of t of
blanchet@33192
   858
     Const x => if is_constr_like thy x then t else raise SAME ()
blanchet@33192
   859
   | _ => raise SAME ())
blanchet@33192
   860
  handle SAME () =>
blanchet@33192
   861
         let
blanchet@33192
   862
           val x' as (_, T') =
blanchet@33192
   863
             if is_pair_type T then
blanchet@33192
   864
               let val (T1, T2) = HOLogic.dest_prodT T in
blanchet@33192
   865
                 (@{const_name Pair}, [T1, T2] ---> T)
blanchet@33192
   866
               end
blanchet@33192
   867
             else
blanchet@33571
   868
               datatype_constrs ext_ctxt T |> the_single
blanchet@33192
   869
           val arg_Ts = binder_types T'
blanchet@33192
   870
         in
blanchet@33192
   871
           list_comb (Const x', map2 (select_nth_constr_arg thy x' t)
blanchet@33192
   872
                                     (index_seq 0 (length arg_Ts)) arg_Ts)
blanchet@33192
   873
         end
blanchet@33192
   874
blanchet@33192
   875
(* (typ * int) list -> typ -> int *)
blanchet@33192
   876
fun card_of_type asgns (Type ("fun", [T1, T2])) =
blanchet@33192
   877
    reasonable_power (card_of_type asgns T2) (card_of_type asgns T1)
blanchet@33192
   878
  | card_of_type asgns (Type ("*", [T1, T2])) =
blanchet@33192
   879
    card_of_type asgns T1 * card_of_type asgns T2
blanchet@33192
   880
  | card_of_type _ (Type (@{type_name itself}, _)) = 1
blanchet@33192
   881
  | card_of_type _ @{typ prop} = 2
blanchet@33192
   882
  | card_of_type _ @{typ bool} = 2
blanchet@33192
   883
  | card_of_type _ @{typ unit} = 1
blanchet@33192
   884
  | card_of_type asgns T =
blanchet@33192
   885
    case AList.lookup (op =) asgns T of
blanchet@33192
   886
      SOME k => k
blanchet@33192
   887
    | NONE => if T = @{typ bisim_iterator} then 0
blanchet@33224
   888
              else raise TYPE ("Nitpick_HOL.card_of_type", [T], [])
blanchet@33192
   889
(* int -> (typ * int) list -> typ -> int *)
blanchet@33192
   890
fun bounded_card_of_type max default_card asgns (Type ("fun", [T1, T2])) =
blanchet@33192
   891
    let
blanchet@33192
   892
      val k1 = bounded_card_of_type max default_card asgns T1
blanchet@33192
   893
      val k2 = bounded_card_of_type max default_card asgns T2
blanchet@33192
   894
    in
blanchet@33192
   895
      if k1 = max orelse k2 = max then max
blanchet@33192
   896
      else Int.min (max, reasonable_power k2 k1)
blanchet@33192
   897
    end
blanchet@33192
   898
  | bounded_card_of_type max default_card asgns (Type ("*", [T1, T2])) =
blanchet@33192
   899
    let
blanchet@33192
   900
      val k1 = bounded_card_of_type max default_card asgns T1
blanchet@33192
   901
      val k2 = bounded_card_of_type max default_card asgns T2
blanchet@33192
   902
    in if k1 = max orelse k2 = max then max else Int.min (max, k1 * k2) end
blanchet@33192
   903
  | bounded_card_of_type max default_card asgns T =
blanchet@33192
   904
    Int.min (max, if default_card = ~1 then
blanchet@33192
   905
                    card_of_type asgns T
blanchet@33192
   906
                  else
blanchet@33192
   907
                    card_of_type asgns T
blanchet@33224
   908
                    handle TYPE ("Nitpick_HOL.card_of_type", _, _) =>
blanchet@33192
   909
                           default_card)
blanchet@33571
   910
(* extended_context -> int -> (typ * int) list -> typ -> int *)
blanchet@33571
   911
fun bounded_precise_card_of_type ext_ctxt max default_card asgns T =
blanchet@33192
   912
  let
blanchet@33192
   913
    (* typ list -> typ -> int *)
blanchet@33192
   914
    fun aux avoid T =
blanchet@33192
   915
      (if T mem avoid then
blanchet@33192
   916
         0
blanchet@33192
   917
       else case T of
blanchet@33192
   918
         Type ("fun", [T1, T2]) =>
blanchet@33192
   919
         let
blanchet@33192
   920
           val k1 = aux avoid T1
blanchet@33192
   921
           val k2 = aux avoid T2
blanchet@33192
   922
         in
blanchet@33192
   923
           if k1 = 0 orelse k2 = 0 then 0
blanchet@33192
   924
           else if k1 >= max orelse k2 >= max then max
blanchet@33192
   925
           else Int.min (max, reasonable_power k2 k1)
blanchet@33192
   926
         end
blanchet@33192
   927
       | Type ("*", [T1, T2]) =>
blanchet@33192
   928
         let
blanchet@33192
   929
           val k1 = aux avoid T1
blanchet@33192
   930
           val k2 = aux avoid T2
blanchet@33192
   931
         in
blanchet@33192
   932
           if k1 = 0 orelse k2 = 0 then 0
blanchet@33192
   933
           else if k1 >= max orelse k2 >= max then max
blanchet@33192
   934
           else Int.min (max, k1 * k2)
blanchet@33192
   935
         end
blanchet@33192
   936
       | Type (@{type_name itself}, _) => 1
blanchet@33192
   937
       | @{typ prop} => 2
blanchet@33192
   938
       | @{typ bool} => 2
blanchet@33192
   939
       | @{typ unit} => 1
blanchet@33192
   940
       | Type _ =>
blanchet@33571
   941
         (case datatype_constrs ext_ctxt T of
blanchet@33192
   942
            [] => if is_integer_type T then 0 else raise SAME ()
blanchet@33192
   943
          | constrs =>
blanchet@33192
   944
            let
blanchet@33192
   945
              val constr_cards =
blanchet@33571
   946
                datatype_constrs ext_ctxt T
blanchet@33192
   947
                |> map (Integer.prod o map (aux (T :: avoid)) o binder_types
blanchet@33192
   948
                        o snd)
blanchet@33192
   949
            in
blanchet@33192
   950
              if exists (equal 0) constr_cards then 0
blanchet@33192
   951
              else Integer.sum constr_cards
blanchet@33192
   952
            end)
blanchet@33192
   953
       | _ => raise SAME ())
blanchet@33192
   954
      handle SAME () => AList.lookup (op =) asgns T |> the_default default_card
blanchet@33192
   955
  in Int.min (max, aux [] T) end
blanchet@33192
   956
blanchet@33571
   957
(* extended_context -> typ -> bool *)
blanchet@33571
   958
fun is_finite_type ext_ctxt =
blanchet@33571
   959
  not_equal 0 o bounded_precise_card_of_type ext_ctxt 1 2 []
blanchet@33192
   960
blanchet@33192
   961
(* term -> bool *)
blanchet@33192
   962
fun is_ground_term (t1 $ t2) = is_ground_term t1 andalso is_ground_term t2
blanchet@33192
   963
  | is_ground_term (Const _) = true
blanchet@33192
   964
  | is_ground_term _ = false
blanchet@33192
   965
blanchet@33192
   966
(* term -> word -> word *)
blanchet@33192
   967
fun hashw_term (t1 $ t2) = Polyhash.hashw (hashw_term t1, hashw_term t2)
blanchet@33192
   968
  | hashw_term (Const (s, _)) = Polyhash.hashw_string (s, 0w0)
blanchet@33192
   969
  | hashw_term _ = 0w0
blanchet@33192
   970
(* term -> int *)
blanchet@33192
   971
val hash_term = Word.toInt o hashw_term
blanchet@33192
   972
blanchet@33192
   973
(* term list -> (indexname * typ) list *)
blanchet@33192
   974
fun special_bounds ts =
blanchet@33192
   975
  fold Term.add_vars ts [] |> sort (TermOrd.fast_indexname_ord o pairself fst)
blanchet@33192
   976
blanchet@33192
   977
(* indexname * typ -> term -> term *)
blanchet@33192
   978
fun abs_var ((s, j), T) body = Abs (s, T, abstract_over (Var ((s, j), T), body))
blanchet@33192
   979
blanchet@33562
   980
(* theory -> string -> bool *)
blanchet@33562
   981
fun is_funky_typedef_name thy s =
blanchet@33562
   982
  s mem [@{type_name unit}, @{type_name "*"}, @{type_name "+"},
blanchet@33562
   983
         @{type_name int}]
blanchet@33562
   984
  orelse is_frac_type thy (Type (s, []))
blanchet@33562
   985
(* theory -> term -> bool *)
blanchet@33562
   986
fun is_funky_typedef thy (Type (s, _)) = is_funky_typedef_name thy s
blanchet@33562
   987
  | is_funky_typedef _ _ = false
blanchet@33192
   988
(* term -> bool *)
blanchet@33192
   989
fun is_arity_type_axiom (Const (@{const_name HOL.type_class}, _)
blanchet@33192
   990
                         $ Const (@{const_name TYPE}, _)) = true
blanchet@33192
   991
  | is_arity_type_axiom _ = false
blanchet@33192
   992
(* theory -> bool -> term -> bool *)
blanchet@33197
   993
fun is_typedef_axiom thy boring (@{const "==>"} $ _ $ t2) =
blanchet@33197
   994
    is_typedef_axiom thy boring t2
blanchet@33197
   995
  | is_typedef_axiom thy boring
blanchet@33192
   996
        (@{const Trueprop} $ (Const (@{const_name Typedef.type_definition}, _)
blanchet@33197
   997
         $ Const (_, Type ("fun", [Type (s, _), _])) $ Const _ $ _)) =
blanchet@33562
   998
    boring <> is_funky_typedef_name thy s andalso is_typedef thy s
blanchet@33192
   999
  | is_typedef_axiom _ _ _ = false
blanchet@33192
  1000
blanchet@33192
  1001
(* Distinguishes between (1) constant definition axioms, (2) type arity and
blanchet@33192
  1002
   typedef axioms, and (3) other axioms, and returns the pair ((1), (3)).
blanchet@33192
  1003
   Typedef axioms are uninteresting to Nitpick, because it can retrieve them
blanchet@33192
  1004
   using "typedef_info". *)
blanchet@33192
  1005
(* theory -> (string * term) list -> string list -> term list * term list *)
blanchet@33192
  1006
fun partition_axioms_by_definitionality thy axioms def_names =
blanchet@33192
  1007
  let
blanchet@33192
  1008
    val axioms = sort (fast_string_ord o pairself fst) axioms
blanchet@33192
  1009
    val defs = OrdList.inter (fast_string_ord o apsnd fst) def_names axioms
blanchet@33192
  1010
    val nondefs =
blanchet@33192
  1011
      OrdList.subtract (fast_string_ord o apsnd fst) def_names axioms
blanchet@33192
  1012
      |> filter_out ((is_arity_type_axiom orf is_typedef_axiom thy true) o snd)
blanchet@33192
  1013
  in pairself (map snd) (defs, nondefs) end
blanchet@33192
  1014
blanchet@33197
  1015
(* Ideally we would check against "Complex_Main", not "Refute", but any theory
blanchet@33197
  1016
   will do as long as it contains all the "axioms" and "axiomatization"
blanchet@33192
  1017
   commands. *)
blanchet@33192
  1018
(* theory -> bool *)
blanchet@33192
  1019
fun is_built_in_theory thy = Theory.subthy (thy, @{theory Refute})
blanchet@33192
  1020
blanchet@33192
  1021
(* term -> bool *)
blanchet@33192
  1022
val is_plain_definition =
blanchet@33192
  1023
  let
blanchet@33192
  1024
    (* term -> bool *)
blanchet@33192
  1025
    fun do_lhs t1 =
blanchet@33192
  1026
      case strip_comb t1 of
blanchet@33192
  1027
        (Const _, args) => forall is_Var args
blanchet@33192
  1028
                           andalso not (has_duplicates (op =) args)
blanchet@33192
  1029
      | _ => false
blanchet@33192
  1030
    fun do_eq (Const (@{const_name "=="}, _) $ t1 $ _) = do_lhs t1
blanchet@33192
  1031
      | do_eq (@{const Trueprop} $ (Const (@{const_name "op ="}, _) $ t1 $ _)) =
blanchet@33192
  1032
        do_lhs t1
blanchet@33192
  1033
      | do_eq _ = false
blanchet@33192
  1034
  in do_eq end
blanchet@33192
  1035
blanchet@33192
  1036
(* theory -> term list * term list * term list *)
blanchet@33192
  1037
fun all_axioms_of thy =
blanchet@33192
  1038
  let
blanchet@33192
  1039
    (* theory list -> term list *)
blanchet@33192
  1040
    val axioms_of_thys = maps Thm.axioms_of #> map (apsnd prop_of)
blanchet@33192
  1041
    val specs = Defs.all_specifications_of (Theory.defs_of thy)
blanchet@33197
  1042
    val def_names = specs |> maps snd |> filter #is_def |> map #name
blanchet@33197
  1043
                    |> OrdList.make fast_string_ord
blanchet@33192
  1044
    val thys = thy :: Theory.ancestors_of thy
blanchet@33192
  1045
    val (built_in_thys, user_thys) = List.partition is_built_in_theory thys
blanchet@33192
  1046
    val built_in_axioms = axioms_of_thys built_in_thys
blanchet@33192
  1047
    val user_axioms = axioms_of_thys user_thys
blanchet@33192
  1048
    val (built_in_defs, built_in_nondefs) =
blanchet@33192
  1049
      partition_axioms_by_definitionality thy built_in_axioms def_names
blanchet@33197
  1050
      ||> filter (is_typedef_axiom thy false)
blanchet@33192
  1051
    val (user_defs, user_nondefs) =
blanchet@33192
  1052
      partition_axioms_by_definitionality thy user_axioms def_names
blanchet@33197
  1053
    val (built_in_nondefs, user_nondefs) =
blanchet@33197
  1054
      List.partition (is_typedef_axiom thy false) user_nondefs
blanchet@33197
  1055
      |>> append built_in_nondefs
blanchet@33547
  1056
    val defs = (thy |> PureThy.all_thms_of
blanchet@33192
  1057
                    |> filter (equal Thm.definitionK o Thm.get_kind o snd)
blanchet@33192
  1058
                    |> map (prop_of o snd) |> filter is_plain_definition) @
blanchet@33192
  1059
               user_defs @ built_in_defs
blanchet@33192
  1060
  in (defs, built_in_nondefs, user_nondefs) end
blanchet@33192
  1061
blanchet@33192
  1062
(* bool -> styp -> int option *)
blanchet@33192
  1063
fun arity_of_built_in_const fast_descrs (s, T) =
blanchet@33192
  1064
  if s = @{const_name If} then
blanchet@33192
  1065
    if nth_range_type 3 T = @{typ bool} then NONE else SOME 3
blanchet@33192
  1066
  else case AList.lookup (op =)
blanchet@33192
  1067
                (built_in_consts
blanchet@33192
  1068
                 |> fast_descrs ? append built_in_descr_consts) s of
blanchet@33192
  1069
    SOME n => SOME n
blanchet@33192
  1070
  | NONE =>
blanchet@33192
  1071
    case AList.lookup (op =) built_in_typed_consts (s, T) of
blanchet@33192
  1072
      SOME n => SOME n
blanchet@33192
  1073
    | NONE =>
blanchet@33192
  1074
      if is_fun_type T andalso is_set_type (domain_type T) then
blanchet@33192
  1075
        AList.lookup (op =) built_in_set_consts s
blanchet@33192
  1076
      else
blanchet@33192
  1077
        NONE
blanchet@33192
  1078
(* bool -> styp -> bool *)
blanchet@33192
  1079
val is_built_in_const = is_some oo arity_of_built_in_const
blanchet@33192
  1080
blanchet@33192
  1081
(* This function is designed to work for both real definition axioms and
blanchet@33192
  1082
   simplification rules (equational specifications). *)
blanchet@33192
  1083
(* term -> term *)
blanchet@33192
  1084
fun term_under_def t =
blanchet@33192
  1085
  case t of
blanchet@33192
  1086
    @{const "==>"} $ _ $ t2 => term_under_def t2
blanchet@33192
  1087
  | Const (@{const_name "=="}, _) $ t1 $ _ => term_under_def t1
blanchet@33192
  1088
  | @{const Trueprop} $ t1 => term_under_def t1
blanchet@33192
  1089
  | Const (@{const_name "op ="}, _) $ t1 $ _ => term_under_def t1
blanchet@33192
  1090
  | Abs (_, _, t') => term_under_def t'
blanchet@33192
  1091
  | t1 $ _ => term_under_def t1
blanchet@33192
  1092
  | _ => t
blanchet@33192
  1093
blanchet@33192
  1094
(* Here we crucially rely on "Refute.specialize_type" performing a preorder
blanchet@33192
  1095
   traversal of the term, without which the wrong occurrence of a constant could
blanchet@33192
  1096
   be matched in the face of overloading. *)
blanchet@33192
  1097
(* theory -> bool -> const_table -> styp -> term list *)
blanchet@33192
  1098
fun def_props_for_const thy fast_descrs table (x as (s, _)) =
blanchet@33192
  1099
  if is_built_in_const fast_descrs x then
blanchet@33192
  1100
    []
blanchet@33192
  1101
  else
blanchet@33192
  1102
    these (Symtab.lookup table s)
blanchet@33192
  1103
    |> map_filter (try (Refute.specialize_type thy x))
blanchet@33192
  1104
    |> filter (equal (Const x) o term_under_def)
blanchet@33192
  1105
blanchet@33192
  1106
(* term -> term *)
blanchet@33192
  1107
fun normalized_rhs_of thy t =
blanchet@33192
  1108
  let
blanchet@33192
  1109
    (* term -> term *)
blanchet@33192
  1110
    fun aux (v as Var _) t = lambda v t
blanchet@33192
  1111
      | aux (c as Const (@{const_name TYPE}, T)) t = lambda c t
blanchet@33224
  1112
      | aux _ _ = raise TERM ("Nitpick_HOL.normalized_rhs_of", [t])
blanchet@33192
  1113
    val (lhs, rhs) =
blanchet@33192
  1114
      case t of
blanchet@33192
  1115
        Const (@{const_name "=="}, _) $ t1 $ t2 => (t1, t2)
blanchet@33192
  1116
      | @{const Trueprop} $ (Const (@{const_name "op ="}, _) $ t1 $ t2) =>
blanchet@33192
  1117
        (t1, t2)
blanchet@33224
  1118
      | _ => raise TERM ("Nitpick_HOL.normalized_rhs_of", [t])
blanchet@33192
  1119
    val args = strip_comb lhs |> snd
blanchet@33192
  1120
  in fold_rev aux args rhs end
blanchet@33192
  1121
blanchet@33192
  1122
(* theory -> const_table -> styp -> term option *)
blanchet@33192
  1123
fun def_of_const thy table (x as (s, _)) =
blanchet@33192
  1124
  if is_built_in_const false x orelse original_name s <> s then
blanchet@33192
  1125
    NONE
blanchet@33192
  1126
  else
blanchet@33192
  1127
    x |> def_props_for_const thy false table |> List.last
blanchet@33192
  1128
      |> normalized_rhs_of thy |> prefix_abs_vars s |> SOME
blanchet@33192
  1129
    handle List.Empty => NONE
blanchet@33192
  1130
blanchet@33192
  1131
datatype fixpoint_kind = Lfp | Gfp | NoFp
blanchet@33192
  1132
blanchet@33192
  1133
(* term -> fixpoint_kind *)
blanchet@33192
  1134
fun fixpoint_kind_of_rhs (Abs (_, _, t)) = fixpoint_kind_of_rhs t
blanchet@33192
  1135
  | fixpoint_kind_of_rhs (Const (@{const_name lfp}, _) $ Abs _) = Lfp
blanchet@33192
  1136
  | fixpoint_kind_of_rhs (Const (@{const_name gfp}, _) $ Abs _) = Gfp
blanchet@33192
  1137
  | fixpoint_kind_of_rhs _ = NoFp
blanchet@33192
  1138
blanchet@33192
  1139
(* theory -> const_table -> term -> bool *)
blanchet@33192
  1140
fun is_mutually_inductive_pred_def thy table t =
blanchet@33192
  1141
  let
blanchet@33192
  1142
    (* term -> bool *)
blanchet@33192
  1143
    fun is_good_arg (Bound _) = true
blanchet@33192
  1144
      | is_good_arg (Const (s, _)) =
blanchet@33192
  1145
        s mem [@{const_name True}, @{const_name False}, @{const_name undefined}]
blanchet@33192
  1146
      | is_good_arg _ = false
blanchet@33192
  1147
  in
blanchet@33192
  1148
    case t |> strip_abs_body |> strip_comb of
blanchet@33192
  1149
      (Const x, ts as (_ :: _)) =>
blanchet@33192
  1150
      (case def_of_const thy table x of
blanchet@33192
  1151
         SOME t' => fixpoint_kind_of_rhs t' <> NoFp andalso forall is_good_arg ts
blanchet@33192
  1152
       | NONE => false)
blanchet@33192
  1153
    | _ => false
blanchet@33192
  1154
  end
blanchet@33192
  1155
(* theory -> const_table -> term -> term *)
blanchet@33192
  1156
fun unfold_mutually_inductive_preds thy table =
blanchet@33192
  1157
  map_aterms (fn t as Const x =>
blanchet@33192
  1158
                 (case def_of_const thy table x of
blanchet@33192
  1159
                    SOME t' =>
blanchet@33192
  1160
                    let val t' = Envir.eta_contract t' in
blanchet@33192
  1161
                      if is_mutually_inductive_pred_def thy table t' then t'
blanchet@33192
  1162
                      else t
blanchet@33192
  1163
                    end
blanchet@33192
  1164
                 | NONE => t)
blanchet@33192
  1165
               | t => t)
blanchet@33192
  1166
blanchet@33192
  1167
(* term -> string * term *)
blanchet@33192
  1168
fun pair_for_prop t =
blanchet@33192
  1169
  case term_under_def t of
blanchet@33192
  1170
    Const (s, _) => (s, t)
blanchet@33192
  1171
  | Free _ => raise NOT_SUPPORTED "local definitions"
blanchet@33224
  1172
  | t' => raise TERM ("Nitpick_HOL.pair_for_prop", [t, t'])
blanchet@33192
  1173
blanchet@33192
  1174
(* (Proof.context -> term list) -> Proof.context -> const_table *)
blanchet@33192
  1175
fun table_for get ctxt =
blanchet@33192
  1176
  get ctxt |> map pair_for_prop |> AList.group (op =) |> Symtab.make
blanchet@33192
  1177
blanchet@33192
  1178
(* theory -> (string * int) list *)
blanchet@33192
  1179
fun case_const_names thy =
blanchet@33192
  1180
  Symtab.fold (fn (dtype_s, {index, descr, case_name, ...}) =>
blanchet@33192
  1181
                  if is_basic_datatype dtype_s then
blanchet@33192
  1182
                    I
blanchet@33192
  1183
                  else
blanchet@33192
  1184
                    cons (case_name, AList.lookup (op =) descr index
blanchet@33192
  1185
                                     |> the |> #3 |> length))
blanchet@33192
  1186
              (Datatype.get_all thy) [] @
blanchet@33192
  1187
  map (apsnd length o snd) (#codatatypes (TheoryData.get thy))
blanchet@33192
  1188
blanchet@33192
  1189
(* Proof.context -> term list -> const_table *)
blanchet@33192
  1190
fun const_def_table ctxt ts =
blanchet@33192
  1191
  table_for (map prop_of o Nitpick_Defs.get) ctxt
blanchet@33192
  1192
  |> fold (fn (s, t) => Symtab.map_default (s, []) (cons t))
blanchet@33192
  1193
          (map pair_for_prop ts)
blanchet@33192
  1194
(* term list -> const_table *)
blanchet@33192
  1195
fun const_nondef_table ts =
blanchet@33192
  1196
  fold (fn t => append (map (fn s => (s, t)) (Term.add_const_names t []))) ts []
blanchet@33192
  1197
  |> AList.group (op =) |> Symtab.make
blanchet@33192
  1198
(* Proof.context -> const_table *)
blanchet@33192
  1199
val const_simp_table = table_for (map prop_of o Nitpick_Simps.get)
blanchet@33192
  1200
val const_psimp_table = table_for (map prop_of o Nitpick_Psimps.get)
blanchet@33192
  1201
(* Proof.context -> const_table -> const_table *)
blanchet@33192
  1202
fun inductive_intro_table ctxt def_table =
blanchet@33192
  1203
  table_for (map (unfold_mutually_inductive_preds (ProofContext.theory_of ctxt)
blanchet@33192
  1204
                                                  def_table o prop_of)
blanchet@33192
  1205
             o Nitpick_Intros.get) ctxt
blanchet@33192
  1206
(* theory -> term list Inttab.table *)
blanchet@33192
  1207
fun ground_theorem_table thy =
blanchet@33192
  1208
  fold ((fn @{const Trueprop} $ t1 =>
blanchet@33192
  1209
            is_ground_term t1 ? Inttab.map_default (hash_term t1, []) (cons t1)
blanchet@33192
  1210
          | _ => I) o prop_of o snd) (PureThy.all_thms_of thy) Inttab.empty
blanchet@33192
  1211
blanchet@33192
  1212
val basic_ersatz_table =
blanchet@33192
  1213
  [(@{const_name prod_case}, @{const_name split}),
blanchet@33192
  1214
   (@{const_name card}, @{const_name card'}),
blanchet@33192
  1215
   (@{const_name setsum}, @{const_name setsum'}),
blanchet@33192
  1216
   (@{const_name fold_graph}, @{const_name fold_graph'}),
blanchet@33192
  1217
   (@{const_name wf}, @{const_name wf'}),
blanchet@33192
  1218
   (@{const_name wf_wfrec}, @{const_name wf_wfrec'}),
blanchet@33192
  1219
   (@{const_name wfrec}, @{const_name wfrec'})]
blanchet@33192
  1220
blanchet@33192
  1221
(* theory -> (string * string) list *)
blanchet@33192
  1222
fun ersatz_table thy =
blanchet@33192
  1223
  fold (append o snd) (#frac_types (TheoryData.get thy)) basic_ersatz_table
blanchet@33192
  1224
blanchet@33192
  1225
(* const_table Unsynchronized.ref -> string -> term list -> unit *)
blanchet@33192
  1226
fun add_simps simp_table s eqs =
blanchet@33192
  1227
  Unsynchronized.change simp_table
blanchet@33192
  1228
      (Symtab.update (s, eqs @ these (Symtab.lookup (!simp_table) s)))
blanchet@33192
  1229
blanchet@33192
  1230
(* Similar to "Refute.specialize_type" but returns all matches rather than only
blanchet@33192
  1231
   the first (preorder) match. *)
blanchet@33192
  1232
(* theory -> styp -> term -> term list *)
blanchet@33197
  1233
fun multi_specialize_type thy slack (x as (s, T)) t =
blanchet@33192
  1234
  let
blanchet@33192
  1235
    (* term -> (typ * term) list -> (typ * term) list *)
blanchet@33192
  1236
    fun aux (Const (s', T')) ys =
blanchet@33192
  1237
        if s = s' then
blanchet@33197
  1238
          ys |> (if AList.defined (op =) ys T' then
blanchet@33197
  1239
                   I
blanchet@33197
  1240
                else
blanchet@33197
  1241
                  cons (T', Refute.monomorphic_term
blanchet@33197
  1242
                                (Sign.typ_match thy (T', T) Vartab.empty) t)
blanchet@33197
  1243
                  handle Type.TYPE_MATCH => I
blanchet@33197
  1244
                       | Refute.REFUTE _ =>
blanchet@33197
  1245
                         if slack then
blanchet@33197
  1246
                           I
blanchet@33197
  1247
                         else
blanchet@33197
  1248
                           raise NOT_SUPPORTED ("too much polymorphism in \
blanchet@33197
  1249
                                                \axiom involving " ^ quote s))
blanchet@33192
  1250
        else
blanchet@33192
  1251
          ys
blanchet@33192
  1252
      | aux _ ys = ys
blanchet@33192
  1253
  in map snd (fold_aterms aux t []) end
blanchet@33192
  1254
blanchet@33197
  1255
(* theory -> bool -> const_table -> styp -> term list *)
blanchet@33197
  1256
fun nondef_props_for_const thy slack table (x as (s, _)) =
blanchet@33197
  1257
  these (Symtab.lookup table s) |> maps (multi_specialize_type thy slack x)
blanchet@33192
  1258
blanchet@33192
  1259
(* theory -> styp list -> term list *)
blanchet@33192
  1260
fun optimized_typedef_axioms thy (abs_s, abs_Ts) =
blanchet@33192
  1261
  let val abs_T = Type (abs_s, abs_Ts) in
blanchet@33192
  1262
    if is_univ_typedef thy abs_T then
blanchet@33192
  1263
      []
blanchet@33192
  1264
    else case typedef_info thy abs_s of
blanchet@33192
  1265
      SOME {abs_type, rep_type, Abs_name, Rep_name, prop_of_Rep, set_name,
blanchet@33192
  1266
            ...} =>
blanchet@33192
  1267
      let
blanchet@33192
  1268
        val rep_T = instantiate_type thy abs_type abs_T rep_type
blanchet@33192
  1269
        val rep_t = Const (Rep_name, abs_T --> rep_T)
blanchet@33192
  1270
        val set_t = Const (set_name, rep_T --> bool_T)
blanchet@33192
  1271
        val set_t' =
blanchet@33192
  1272
          prop_of_Rep |> HOLogic.dest_Trueprop
blanchet@33192
  1273
                      |> Refute.specialize_type thy (dest_Const rep_t)
blanchet@33192
  1274
                      |> HOLogic.dest_mem |> snd
blanchet@33192
  1275
      in
blanchet@33192
  1276
        [HOLogic.all_const abs_T
blanchet@33192
  1277
         $ Abs (Name.uu, abs_T, set_t $ (rep_t $ Bound 0))]
blanchet@33192
  1278
        |> set_t <> set_t' ? cons (HOLogic.mk_eq (set_t, set_t'))
blanchet@33192
  1279
        |> map HOLogic.mk_Trueprop
blanchet@33192
  1280
      end
blanchet@33192
  1281
    | NONE => []
blanchet@33192
  1282
  end
blanchet@33192
  1283
(* theory -> styp -> term *)
blanchet@33192
  1284
fun inverse_axiom_for_rep_fun thy (x as (_, T)) =
blanchet@33192
  1285
  typedef_info thy (fst (dest_Type (domain_type T)))
blanchet@33192
  1286
  |> the |> #Rep_inverse |> the |> prop_of |> Refute.specialize_type thy x
blanchet@33192
  1287
blanchet@33192
  1288
(* theory -> int * styp -> term *)
blanchet@33192
  1289
fun constr_case_body thy (j, (x as (_, T))) =
blanchet@33192
  1290
  let val arg_Ts = binder_types T in
blanchet@33192
  1291
    list_comb (Bound j, map2 (select_nth_constr_arg thy x (Bound 0))
blanchet@33192
  1292
                             (index_seq 0 (length arg_Ts)) arg_Ts)
blanchet@33192
  1293
  end
blanchet@33571
  1294
(* extended_context -> typ -> int * styp -> term -> term *)
blanchet@33571
  1295
fun add_constr_case (ext_ctxt as {thy, ...}) res_T (j, x) res_t =
blanchet@33192
  1296
  Const (@{const_name If}, [bool_T, res_T, res_T] ---> res_T)
blanchet@33571
  1297
  $ discriminate_value ext_ctxt x (Bound 0) $ constr_case_body thy (j, x)
blanchet@33571
  1298
  $ res_t
blanchet@33571
  1299
(* extended_context -> typ -> typ -> term *)
blanchet@33571
  1300
fun optimized_case_def (ext_ctxt as {thy, ...}) dataT res_T =
blanchet@33192
  1301
  let
blanchet@33571
  1302
    val xs = datatype_constrs ext_ctxt dataT
blanchet@33192
  1303
    val func_Ts = map ((fn T => binder_types T ---> res_T) o snd) xs
blanchet@33192
  1304
    val (xs', x) = split_last xs
blanchet@33192
  1305
  in
blanchet@33192
  1306
    constr_case_body thy (1, x)
blanchet@33571
  1307
    |> fold_rev (add_constr_case ext_ctxt res_T) (length xs downto 2 ~~ xs')
blanchet@33192
  1308
    |> fold_rev (curry absdummy) (func_Ts @ [dataT])
blanchet@33192
  1309
  end
blanchet@33192
  1310
blanchet@33571
  1311
(* extended_context -> string -> typ -> typ -> term -> term *)
blanchet@33571
  1312
fun optimized_record_get (ext_ctxt as {thy, ...}) s rec_T res_T t =
blanchet@33571
  1313
  let val constr_x = the_single (datatype_constrs ext_ctxt rec_T) in
blanchet@33192
  1314
    case no_of_record_field thy s rec_T of
blanchet@33192
  1315
      ~1 => (case rec_T of
blanchet@33192
  1316
               Type (_, Ts as _ :: _) =>
blanchet@33192
  1317
               let
blanchet@33192
  1318
                 val rec_T' = List.last Ts
blanchet@33192
  1319
                 val j = num_record_fields thy rec_T - 1
blanchet@33192
  1320
               in
blanchet@33192
  1321
                 select_nth_constr_arg thy constr_x t j res_T
blanchet@33571
  1322
                 |> optimized_record_get ext_ctxt s rec_T' res_T
blanchet@33192
  1323
               end
blanchet@33224
  1324
             | _ => raise TYPE ("Nitpick_HOL.optimized_record_get", [rec_T],
blanchet@33224
  1325
                                []))
blanchet@33192
  1326
    | j => select_nth_constr_arg thy constr_x t j res_T
blanchet@33192
  1327
  end
blanchet@33571
  1328
(* extended_context -> string -> typ -> term -> term -> term *)
blanchet@33571
  1329
fun optimized_record_update (ext_ctxt as {thy, ...}) s rec_T fun_t rec_t =
blanchet@33192
  1330
  let
blanchet@33571
  1331
    val constr_x as (_, constr_T) = the_single (datatype_constrs ext_ctxt rec_T)
blanchet@33192
  1332
    val Ts = binder_types constr_T
blanchet@33192
  1333
    val n = length Ts
blanchet@33192
  1334
    val special_j = no_of_record_field thy s rec_T
blanchet@33192
  1335
    val ts = map2 (fn j => fn T =>
blanchet@33192
  1336
                      let
blanchet@33192
  1337
                        val t = select_nth_constr_arg thy constr_x rec_t j T
blanchet@33192
  1338
                      in
blanchet@33192
  1339
                        if j = special_j then
blanchet@33192
  1340
                          betapply (fun_t, t)
blanchet@33192
  1341
                        else if j = n - 1 andalso special_j = ~1 then
blanchet@33571
  1342
                          optimized_record_update ext_ctxt s
blanchet@33192
  1343
                              (rec_T |> dest_Type |> snd |> List.last) fun_t t
blanchet@33192
  1344
                        else
blanchet@33192
  1345
                          t
blanchet@33192
  1346
                      end) (index_seq 0 n) Ts
blanchet@33192
  1347
  in list_comb (Const constr_x, ts) end
blanchet@33192
  1348
blanchet@33192
  1349
(* Constants "c" whose definition is of the form "c == c'", where "c'" is also a
blanchet@33192
  1350
   constant, are said to be trivial. For those, we ignore the simplification
blanchet@33192
  1351
   rules and use the definition instead, to ensure that built-in symbols like
blanchet@33192
  1352
   "ord_nat_inst.less_eq_nat" are picked up correctly. *)
blanchet@33192
  1353
(* theory -> const_table -> styp -> bool *)
blanchet@33192
  1354
fun has_trivial_definition thy table x =
blanchet@33192
  1355
  case def_of_const thy table x of SOME (Const _) => true | _ => false
blanchet@33192
  1356
blanchet@33192
  1357
(* theory -> const_table -> string * typ -> fixpoint_kind *)
blanchet@33192
  1358
fun fixpoint_kind_of_const thy table x =
blanchet@33192
  1359
  if is_built_in_const false x then
blanchet@33192
  1360
    NoFp
blanchet@33192
  1361
  else
blanchet@33192
  1362
    fixpoint_kind_of_rhs (the (def_of_const thy table x))
blanchet@33192
  1363
    handle Option.Option => NoFp
blanchet@33192
  1364
blanchet@33192
  1365
(* extended_context -> styp -> bool *)
blanchet@33192
  1366
fun is_real_inductive_pred ({thy, fast_descrs, def_table, intro_table, ...}
blanchet@33192
  1367
                            : extended_context) x =
blanchet@33192
  1368
  not (null (def_props_for_const thy fast_descrs intro_table x))
blanchet@33192
  1369
  andalso fixpoint_kind_of_const thy def_table x <> NoFp
blanchet@33192
  1370
fun is_real_equational_fun ({thy, fast_descrs, simp_table, psimp_table, ...}
blanchet@33192
  1371
                            : extended_context) x =
blanchet@33192
  1372
  exists (fn table => not (null (def_props_for_const thy fast_descrs table x)))
blanchet@33192
  1373
         [!simp_table, psimp_table]
blanchet@33192
  1374
fun is_inductive_pred ext_ctxt =
blanchet@33192
  1375
  is_real_inductive_pred ext_ctxt andf (not o is_real_equational_fun ext_ctxt)
blanchet@33192
  1376
fun is_equational_fun (ext_ctxt as {thy, def_table, ...}) =
blanchet@33192
  1377
  (is_real_equational_fun ext_ctxt orf is_real_inductive_pred ext_ctxt
blanchet@33192
  1378
   orf (String.isPrefix ubfp_prefix orf String.isPrefix lbfp_prefix) o fst)
blanchet@33192
  1379
  andf (not o has_trivial_definition thy def_table)
blanchet@33192
  1380
blanchet@33192
  1381
(* term * term -> term *)
blanchet@33192
  1382
fun s_betapply (Const (@{const_name If}, _) $ @{const True} $ t, _) = t
blanchet@33192
  1383
  | s_betapply (Const (@{const_name If}, _) $ @{const False} $ _, t) = t
blanchet@33192
  1384
  | s_betapply p = betapply p
blanchet@33192
  1385
(* term * term list -> term *)
blanchet@33192
  1386
val s_betapplys = Library.foldl s_betapply
blanchet@33192
  1387
blanchet@33192
  1388
(* term -> term *)
blanchet@33192
  1389
fun lhs_of_equation t =
blanchet@33192
  1390
  case t of
blanchet@33192
  1391
    Const (@{const_name all}, _) $ Abs (_, _, t1) => lhs_of_equation t1
blanchet@33192
  1392
  | Const (@{const_name "=="}, _) $ t1 $ _ => SOME t1
blanchet@33192
  1393
  | @{const "==>"} $ _ $ t2 => lhs_of_equation t2
blanchet@33192
  1394
  | @{const Trueprop} $ t1 => lhs_of_equation t1
blanchet@33192
  1395
  | Const (@{const_name All}, _) $ Abs (_, _, t1) => lhs_of_equation t1
blanchet@33192
  1396
  | Const (@{const_name "op ="}, _) $ t1 $ _ => SOME t1
blanchet@33192
  1397
  | @{const "op -->"} $ _ $ t2 => lhs_of_equation t2
blanchet@33192
  1398
  | _ => NONE
blanchet@33192
  1399
(* theory -> term -> bool *)
blanchet@33192
  1400
fun is_constr_pattern _ (Bound _) = true
blanchet@33192
  1401
  | is_constr_pattern thy t =
blanchet@33192
  1402
    case strip_comb t of
blanchet@33192
  1403
      (Const (x as (s, _)), args) =>
blanchet@33192
  1404
      is_constr_like thy x andalso forall (is_constr_pattern thy) args
blanchet@33192
  1405
    | _ => false
blanchet@33192
  1406
fun is_constr_pattern_lhs thy t =
blanchet@33192
  1407
  forall (is_constr_pattern thy) (snd (strip_comb t))
blanchet@33192
  1408
fun is_constr_pattern_formula thy t =
blanchet@33192
  1409
  case lhs_of_equation t of
blanchet@33192
  1410
    SOME t' => is_constr_pattern_lhs thy t'
blanchet@33192
  1411
  | NONE => false
blanchet@33192
  1412
blanchet@33192
  1413
val unfold_max_depth = 63
blanchet@33192
  1414
val axioms_max_depth = 63
blanchet@33192
  1415
blanchet@33192
  1416
(* extended_context -> term -> term *)
blanchet@33192
  1417
fun unfold_defs_in_term (ext_ctxt as {thy, destroy_constrs, fast_descrs,
blanchet@33192
  1418
                                      case_names, def_table, ground_thm_table,
blanchet@33192
  1419
                                      ersatz_table, ...}) =
blanchet@33192
  1420
  let
blanchet@33192
  1421
    (* int -> typ list -> term -> term *)
blanchet@33192
  1422
    fun do_term depth Ts t =
blanchet@33192
  1423
      case t of
blanchet@33192
  1424
        (t0 as Const (@{const_name Int.number_class.number_of},
blanchet@33192
  1425
                      Type ("fun", [_, ran_T]))) $ t1 =>
blanchet@33192
  1426
        ((if is_number_type thy ran_T then
blanchet@33192
  1427
            let
blanchet@33192
  1428
              val j = t1 |> HOLogic.dest_numeral
blanchet@33192
  1429
                         |> ran_T <> int_T ? curry Int.max 0
blanchet@33192
  1430
              val s = numeral_prefix ^ signed_string_of_int j
blanchet@33192
  1431
            in
blanchet@33192
  1432
              if is_integer_type ran_T then
blanchet@33192
  1433
                Const (s, ran_T)
blanchet@33192
  1434
              else
blanchet@33192
  1435
                do_term depth Ts (Const (@{const_name of_int}, int_T --> ran_T)
blanchet@33192
  1436
                                  $ Const (s, int_T))
blanchet@33192
  1437
            end
blanchet@33192
  1438
            handle TERM _ => raise SAME ()
blanchet@33192
  1439
          else
blanchet@33192
  1440
            raise SAME ())
blanchet@33192
  1441
         handle SAME () => betapply (do_term depth Ts t0, do_term depth Ts t1))
blanchet@33192
  1442
      | Const (@{const_name refl_on}, T) $ Const (@{const_name UNIV}, _) $ t2 =>
blanchet@33192
  1443
        do_const depth Ts t (@{const_name refl'}, range_type T) [t2]
blanchet@33192
  1444
      | (t0 as Const (x as (@{const_name Sigma}, T))) $ t1
blanchet@33192
  1445
        $ (t2 as Abs (_, _, t2')) =>
blanchet@33192
  1446
        betapplys (t0 |> loose_bvar1 (t2', 0) ? do_term depth Ts,
blanchet@33192
  1447
                   map (do_term depth Ts) [t1, t2])
blanchet@33192
  1448
      | Const (x as (@{const_name distinct},
blanchet@33192
  1449
               Type ("fun", [Type (@{type_name list}, [T']), _])))
blanchet@33192
  1450
        $ (t1 as _ $ _) =>
blanchet@33192
  1451
        (t1 |> HOLogic.dest_list |> distinctness_formula T'
blanchet@33192
  1452
         handle TERM _ => do_const depth Ts t x [t1])
blanchet@33192
  1453
      | (t0 as Const (x as (@{const_name If}, _))) $ t1 $ t2 $ t3 =>
blanchet@33192
  1454
        if is_ground_term t1
blanchet@33192
  1455
           andalso exists (Pattern.matches thy o rpair t1)
blanchet@33192
  1456
                          (Inttab.lookup_list ground_thm_table
blanchet@33192
  1457
                                              (hash_term t1)) then
blanchet@33192
  1458
          do_term depth Ts t2
blanchet@33192
  1459
        else
blanchet@33192
  1460
          do_const depth Ts t x [t1, t2, t3]
blanchet@33192
  1461
      | Const x $ t1 $ t2 $ t3 => do_const depth Ts t x [t1, t2, t3]
blanchet@33192
  1462
      | Const x $ t1 $ t2 => do_const depth Ts t x [t1, t2]
blanchet@33192
  1463
      | Const x $ t1 => do_const depth Ts t x [t1]
blanchet@33192
  1464
      | Const x => do_const depth Ts t x []
blanchet@33192
  1465
      | t1 $ t2 => betapply (do_term depth Ts t1, do_term depth Ts t2)
blanchet@33192
  1466
      | Free _ => t
blanchet@33192
  1467
      | Var _ => t
blanchet@33192
  1468
      | Bound _ => t
blanchet@33192
  1469
      | Abs (s, T, body) => Abs (s, T, do_term depth (T :: Ts) body)
blanchet@33192
  1470
    (* int -> typ list -> styp -> term list -> int -> typ -> term * term list *)
blanchet@33192
  1471
    and select_nth_constr_arg_with_args _ _ (x as (_, T)) [] n res_T =
blanchet@33192
  1472
        (Abs (Name.uu, body_type T,
blanchet@33192
  1473
              select_nth_constr_arg thy x (Bound 0) n res_T), [])
blanchet@33192
  1474
      | select_nth_constr_arg_with_args depth Ts x (t :: ts) n res_T =
blanchet@33192
  1475
        (select_nth_constr_arg thy x (do_term depth Ts t) n res_T, ts)
blanchet@33192
  1476
    (* int -> typ list -> term -> styp -> term list -> term *)
blanchet@33192
  1477
    and do_const depth Ts t (x as (s, T)) ts =
blanchet@33192
  1478
      case AList.lookup (op =) ersatz_table s of
blanchet@33192
  1479
        SOME s' =>
blanchet@33192
  1480
        do_const (depth + 1) Ts (list_comb (Const (s', T), ts)) (s', T) ts
blanchet@33192
  1481
      | NONE =>
blanchet@33192
  1482
        let
blanchet@33192
  1483
          val (const, ts) =
blanchet@33192
  1484
            if is_built_in_const fast_descrs x then
blanchet@33192
  1485
              if s = @{const_name finite} then
blanchet@33571
  1486
                if is_finite_type ext_ctxt (domain_type T) then
blanchet@33192
  1487
                  (Abs ("A", domain_type T, @{const True}), ts)
blanchet@33192
  1488
                else case ts of
blanchet@33192
  1489
                  [Const (@{const_name UNIV}, _)] => (@{const False}, [])
blanchet@33192
  1490
                | _ => (Const x, ts)
blanchet@33192
  1491
              else
blanchet@33192
  1492
                (Const x, ts)
blanchet@33192
  1493
            else case AList.lookup (op =) case_names s of
blanchet@33192
  1494
              SOME n =>
blanchet@33192
  1495
              let
blanchet@33192
  1496
                val (dataT, res_T) = nth_range_type n T
blanchet@33192
  1497
                                     |> domain_type pairf range_type
blanchet@33192
  1498
              in
blanchet@33571
  1499
                (optimized_case_def ext_ctxt dataT res_T
blanchet@33192
  1500
                 |> do_term (depth + 1) Ts, ts)
blanchet@33192
  1501
              end
blanchet@33192
  1502
            | _ =>
blanchet@33192
  1503
              if is_constr thy x then
blanchet@33192
  1504
                (Const x, ts)
blanchet@33192
  1505
              else if is_record_get thy x then
blanchet@33192
  1506
                case length ts of
blanchet@33192
  1507
                  0 => (do_term depth Ts (eta_expand Ts t 1), [])
blanchet@33571
  1508
                | _ => (optimized_record_get ext_ctxt s (domain_type T)
blanchet@33192
  1509
                                             (range_type T) (hd ts), tl ts)
blanchet@33192
  1510
              else if is_record_update thy x then
blanchet@33192
  1511
                case length ts of
blanchet@33571
  1512
                  2 => (optimized_record_update ext_ctxt
blanchet@33571
  1513
                            (unsuffix Record.updateN s) (nth_range_type 2 T)
blanchet@33571
  1514
                            (do_term depth Ts (hd ts))
blanchet@33571
  1515
                            (do_term depth Ts (nth ts 1)), [])
blanchet@33192
  1516
                | n => (do_term depth Ts (eta_expand Ts t (2 - n)), [])
blanchet@33192
  1517
              else if is_rep_fun thy x then
blanchet@33192
  1518
                let val x' = mate_of_rep_fun thy x in
blanchet@33192
  1519
                  if is_constr thy x' then
blanchet@33192
  1520
                    select_nth_constr_arg_with_args depth Ts x' ts 0
blanchet@33192
  1521
                                                    (range_type T)
blanchet@33192
  1522
                  else
blanchet@33192
  1523
                    (Const x, ts)
blanchet@33192
  1524
                end
blanchet@33192
  1525
              else if is_equational_fun ext_ctxt x then
blanchet@33192
  1526
                (Const x, ts)
blanchet@33192
  1527
              else case def_of_const thy def_table x of
blanchet@33192
  1528
                SOME def =>
blanchet@33192
  1529
                if depth > unfold_max_depth then
blanchet@33224
  1530
                  raise LIMIT ("Nitpick_HOL.unfold_defs_in_term",
blanchet@33192
  1531
                               "too many nested definitions (" ^
blanchet@33192
  1532
                               string_of_int depth ^ ") while expanding " ^
blanchet@33192
  1533
                               quote s)
blanchet@33192
  1534
                else if s = @{const_name wfrec'} then
blanchet@33192
  1535
                  (do_term (depth + 1) Ts (betapplys (def, ts)), [])
blanchet@33192
  1536
                else
blanchet@33192
  1537
                  (do_term (depth + 1) Ts def, ts)
blanchet@33192
  1538
              | NONE => (Const x, ts)
blanchet@33192
  1539
        in s_betapplys (const, map (do_term depth Ts) ts) |> Envir.beta_norm end
blanchet@33192
  1540
  in do_term 0 [] end
blanchet@33192
  1541
blanchet@33571
  1542
(* extended_context -> typ -> term list *)
blanchet@33571
  1543
fun codatatype_bisim_axioms (ext_ctxt as {thy, ...}) T =
blanchet@33192
  1544
  let
blanchet@33571
  1545
    val xs = datatype_constrs ext_ctxt T
blanchet@33192
  1546
    val set_T = T --> bool_T
blanchet@33192
  1547
    val iter_T = @{typ bisim_iterator}
blanchet@33192
  1548
    val bisim_const = Const (@{const_name bisim}, [iter_T, T, T] ---> bool_T)
blanchet@33192
  1549
    val bisim_max = @{const bisim_iterator_max}
blanchet@33192
  1550
    val n_var = Var (("n", 0), iter_T)
blanchet@33192
  1551
    val n_var_minus_1 =
blanchet@33192
  1552
      Const (@{const_name Tha}, (iter_T --> bool_T) --> iter_T)
blanchet@33192
  1553
      $ Abs ("m", iter_T, HOLogic.eq_const iter_T
blanchet@33192
  1554
                          $ (suc_const iter_T $ Bound 0) $ n_var)
blanchet@33192
  1555
    val x_var = Var (("x", 0), T)
blanchet@33192
  1556
    val y_var = Var (("y", 0), T)
blanchet@33192
  1557
    (* styp -> int -> typ -> term *)
blanchet@33192
  1558
    fun nth_sub_bisim x n nth_T =
blanchet@33192
  1559
      (if is_codatatype thy nth_T then bisim_const $ n_var_minus_1
blanchet@33192
  1560
       else HOLogic.eq_const nth_T)
blanchet@33192
  1561
      $ select_nth_constr_arg thy x x_var n nth_T
blanchet@33192
  1562
      $ select_nth_constr_arg thy x y_var n nth_T
blanchet@33192
  1563
    (* styp -> term *)
blanchet@33192
  1564
    fun case_func (x as (_, T)) =
blanchet@33192
  1565
      let
blanchet@33192
  1566
        val arg_Ts = binder_types T
blanchet@33192
  1567
        val core_t =
blanchet@33571
  1568
          discriminate_value ext_ctxt x y_var ::
blanchet@33192
  1569
          map2 (nth_sub_bisim x) (index_seq 0 (length arg_Ts)) arg_Ts
blanchet@33192
  1570
          |> foldr1 s_conj
blanchet@33192
  1571
      in List.foldr absdummy core_t arg_Ts end
blanchet@33192
  1572
  in
blanchet@33192
  1573
    [HOLogic.eq_const bool_T $ (bisim_const $ n_var $ x_var $ y_var)
blanchet@33192
  1574
     $ (@{term "op |"} $ (HOLogic.eq_const iter_T $ n_var $ zero_const iter_T)
blanchet@33571
  1575
        $ (betapplys (optimized_case_def ext_ctxt T bool_T,
blanchet@33192
  1576
                      map case_func xs @ [x_var]))),
blanchet@33192
  1577
     HOLogic.eq_const set_T $ (bisim_const $ bisim_max $ x_var)
blanchet@33192
  1578
     $ (Const (@{const_name insert}, [T, set_T] ---> set_T)
blanchet@33192
  1579
        $ x_var $ Const (@{const_name bot_fun_inst.bot_fun}, set_T))]
blanchet@33192
  1580
    |> map HOLogic.mk_Trueprop
blanchet@33192
  1581
  end
blanchet@33192
  1582
blanchet@33192
  1583
exception NO_TRIPLE of unit
blanchet@33192
  1584
blanchet@33192
  1585
(* theory -> styp -> term -> term list * term list * term *)
blanchet@33192
  1586
fun triple_for_intro_rule thy x t =
blanchet@33192
  1587
  let
blanchet@33192
  1588
    val prems = Logic.strip_imp_prems t |> map (ObjectLogic.atomize_term thy)
blanchet@33192
  1589
    val concl = Logic.strip_imp_concl t |> ObjectLogic.atomize_term thy
blanchet@33192
  1590
    val (main, side) = List.partition (exists_Const (equal x)) prems
blanchet@33192
  1591
    (* term -> bool *)
blanchet@33192
  1592
     val is_good_head = equal (Const x) o head_of
blanchet@33192
  1593
  in
blanchet@33192
  1594
    if forall is_good_head main then (side, main, concl) else raise NO_TRIPLE ()
blanchet@33192
  1595
  end
blanchet@33192
  1596
blanchet@33192
  1597
(* term -> term *)
blanchet@33192
  1598
val tuple_for_args = HOLogic.mk_tuple o snd o strip_comb
blanchet@33192
  1599
blanchet@33192
  1600
(* indexname * typ -> term list -> term -> term -> term *)
blanchet@33192
  1601
fun wf_constraint_for rel side concl main =
blanchet@33192
  1602
  let
blanchet@33192
  1603
    val core = HOLogic.mk_mem (HOLogic.mk_prod (tuple_for_args main,
blanchet@33192
  1604
                                                tuple_for_args concl), Var rel)
blanchet@33192
  1605
    val t = List.foldl HOLogic.mk_imp core side
blanchet@33192
  1606
    val vars = filter (not_equal rel) (Term.add_vars t [])
blanchet@33192
  1607
  in
blanchet@33192
  1608
    Library.foldl (fn (t', ((x, j), T)) =>
blanchet@33192
  1609
                      HOLogic.all_const T
blanchet@33192
  1610
                      $ Abs (x, T, abstract_over (Var ((x, j), T), t')))
blanchet@33192
  1611
                  (t, vars)
blanchet@33192
  1612
  end
blanchet@33192
  1613
blanchet@33192
  1614
(* indexname * typ -> term list * term list * term -> term *)
blanchet@33192
  1615
fun wf_constraint_for_triple rel (side, main, concl) =
blanchet@33192
  1616
  map (wf_constraint_for rel side concl) main |> foldr1 s_conj
blanchet@33192
  1617
blanchet@33192
  1618
(* Proof.context -> Time.time option -> thm
blanchet@33192
  1619
   -> (Proof.context -> tactic -> tactic) -> bool *)
blanchet@33192
  1620
fun terminates_by ctxt timeout goal tac =
blanchet@33192
  1621
  can (SINGLE (Classical.safe_tac (claset_of ctxt)) #> the
blanchet@33192
  1622
       #> SINGLE (DETERM_TIMEOUT timeout
blanchet@33192
  1623
                                 (tac ctxt (auto_tac (clasimpset_of ctxt))))
blanchet@33192
  1624
       #> the #> Goal.finish ctxt) goal
blanchet@33192
  1625
blanchet@33548
  1626
val max_cached_wfs = 100
blanchet@33192
  1627
val cached_timeout = Unsynchronized.ref (SOME Time.zeroTime)
blanchet@33192
  1628
val cached_wf_props : (term * bool) list Unsynchronized.ref =
blanchet@33192
  1629
  Unsynchronized.ref []
blanchet@33192
  1630
krauss@33351
  1631
val termination_tacs = [Lexicographic_Order.lex_order_tac true,
blanchet@33192
  1632
                        ScnpReconstruct.sizechange_tac]
blanchet@33192
  1633
blanchet@33192
  1634
(* extended_context -> const_table -> styp -> bool *)
blanchet@33571
  1635
fun uncached_is_well_founded_inductive_pred
blanchet@33192
  1636
        ({thy, ctxt, debug, fast_descrs, tac_timeout, intro_table, ...}
blanchet@33192
  1637
         : extended_context) (x as (_, T)) =
blanchet@33192
  1638
  case def_props_for_const thy fast_descrs intro_table x of
blanchet@33571
  1639
    [] => raise TERM ("Nitpick_HOL.uncached_is_well_founded_inductive",
blanchet@33224
  1640
                      [Const x])
blanchet@33192
  1641
  | intro_ts =>
blanchet@33192
  1642
    (case map (triple_for_intro_rule thy x) intro_ts
blanchet@33192
  1643
          |> filter_out (null o #2) of
blanchet@33192
  1644
       [] => true
blanchet@33192
  1645
     | triples =>
blanchet@33192
  1646
       let
blanchet@33192
  1647
         val binders_T = HOLogic.mk_tupleT (binder_types T)
blanchet@33192
  1648
         val rel_T = HOLogic.mk_prodT (binders_T, binders_T) --> bool_T
blanchet@33192
  1649
         val j = List.foldl Int.max 0 (map maxidx_of_term intro_ts) + 1
blanchet@33192
  1650
         val rel = (("R", j), rel_T)
blanchet@33192
  1651
         val prop = Const (@{const_name wf}, rel_T --> bool_T) $ Var rel ::
blanchet@33192
  1652
                    map (wf_constraint_for_triple rel) triples
blanchet@33192
  1653
                    |> foldr1 s_conj |> HOLogic.mk_Trueprop
blanchet@33192
  1654
         val _ = if debug then
blanchet@33192
  1655
                   priority ("Wellfoundedness goal: " ^
blanchet@33192
  1656
                             Syntax.string_of_term ctxt prop ^ ".")
blanchet@33192
  1657
                 else
blanchet@33192
  1658
                   ()
blanchet@33192
  1659
       in
blanchet@33548
  1660
         if tac_timeout = (!cached_timeout)
blanchet@33548
  1661
            andalso length (!cached_wf_props) < max_cached_wfs then
blanchet@33548
  1662
           ()
blanchet@33548
  1663
         else
blanchet@33548
  1664
           (cached_wf_props := []; cached_timeout := tac_timeout);
blanchet@33192
  1665
         case AList.lookup (op =) (!cached_wf_props) prop of
blanchet@33192
  1666
           SOME wf => wf
blanchet@33192
  1667
         | NONE =>
blanchet@33192
  1668
           let
blanchet@33192
  1669
             val goal = prop |> cterm_of thy |> Goal.init
blanchet@33192
  1670
             val wf = silence (exists (terminates_by ctxt tac_timeout goal))
blanchet@33192
  1671
                              termination_tacs
blanchet@33192
  1672
           in Unsynchronized.change cached_wf_props (cons (prop, wf)); wf end
blanchet@33192
  1673
       end)
blanchet@33192
  1674
    handle List.Empty => false
blanchet@33192
  1675
         | NO_TRIPLE () => false
blanchet@33192
  1676
blanchet@33192
  1677
(* The type constraint below is a workaround for a Poly/ML bug. *)
blanchet@33192
  1678
blanchet@33192
  1679
(* extended_context -> styp -> bool *)
blanchet@33192
  1680
fun is_well_founded_inductive_pred
blanchet@33192
  1681
        (ext_ctxt as {thy, wfs, def_table, wf_cache, ...} : extended_context)
blanchet@33192
  1682
        (x as (s, _)) =
blanchet@33192
  1683
  case triple_lookup (const_match thy) wfs x of
blanchet@33192
  1684
    SOME (SOME b) => b
blanchet@33197
  1685
  | _ => s mem [@{const_name Nats}, @{const_name fold_graph'}]
blanchet@33192
  1686
         orelse case AList.lookup (op =) (!wf_cache) x of
blanchet@33192
  1687
                  SOME (_, wf) => wf
blanchet@33192
  1688
                | NONE =>
blanchet@33192
  1689
                  let
blanchet@33192
  1690
                    val gfp = (fixpoint_kind_of_const thy def_table x = Gfp)
blanchet@33571
  1691
                    val wf = uncached_is_well_founded_inductive_pred ext_ctxt x
blanchet@33192
  1692
                  in
blanchet@33192
  1693
                    Unsynchronized.change wf_cache (cons (x, (gfp, wf))); wf
blanchet@33192
  1694
                  end
blanchet@33192
  1695
blanchet@33192
  1696
(* typ list -> typ -> typ -> term -> term *)
blanchet@33192
  1697
fun ap_curry [_] _ _ t = t
blanchet@33192
  1698
  | ap_curry arg_Ts tuple_T body_T t =
blanchet@33192
  1699
    let val n = length arg_Ts in
blanchet@33192
  1700
      list_abs (map (pair "c") arg_Ts,
blanchet@33192
  1701
                incr_boundvars n t
blanchet@33192
  1702
                $ mk_flat_tuple tuple_T (map Bound (n - 1 downto 0)))
blanchet@33192
  1703
    end
blanchet@33192
  1704
blanchet@33192
  1705
(* int -> term -> int *)
blanchet@33192
  1706
fun num_occs_of_bound_in_term j (t1 $ t2) =
blanchet@33192
  1707
    op + (pairself (num_occs_of_bound_in_term j) (t1, t2))
blanchet@33192
  1708
  | num_occs_of_bound_in_term j (Abs (s, T, t')) =
blanchet@33192
  1709
    num_occs_of_bound_in_term (j + 1) t'
blanchet@33192
  1710
  | num_occs_of_bound_in_term j (Bound j') = if j' = j then 1 else 0
blanchet@33192
  1711
  | num_occs_of_bound_in_term _ _ = 0
blanchet@33192
  1712
blanchet@33192
  1713
(* term -> bool *)
blanchet@33192
  1714
val is_linear_inductive_pred_def =
blanchet@33192
  1715
  let
blanchet@33192
  1716
    (* int -> term -> bool *)
blanchet@33192
  1717
    fun do_disjunct j (Const (@{const_name Ex}, _) $ Abs (_, _, t2)) =
blanchet@33192
  1718
        do_disjunct (j + 1) t2
blanchet@33192
  1719
      | do_disjunct j t =
blanchet@33192
  1720
        case num_occs_of_bound_in_term j t of
blanchet@33192
  1721
          0 => true
blanchet@33192
  1722
        | 1 => exists (equal (Bound j) o head_of) (conjuncts t)
blanchet@33192
  1723
        | _ => false
blanchet@33192
  1724
    (* term -> bool *)
blanchet@33192
  1725
    fun do_lfp_def (Const (@{const_name lfp}, _) $ t2) =
blanchet@33192
  1726
        let val (xs, body) = strip_abs t2 in
blanchet@33192
  1727
          case length xs of
blanchet@33192
  1728
            1 => false
blanchet@33192
  1729
          | n => forall (do_disjunct (n - 1)) (disjuncts body)
blanchet@33192
  1730
        end
blanchet@33192
  1731
      | do_lfp_def _ = false
blanchet@33192
  1732
  in do_lfp_def o strip_abs_body end
blanchet@33192
  1733
blanchet@33192
  1734
(* typ -> typ -> term -> term *)
blanchet@33192
  1735
fun ap_split tuple_T =
blanchet@33192
  1736
  HOLogic.mk_psplits (HOLogic.flat_tupleT_paths tuple_T) tuple_T
blanchet@33192
  1737
blanchet@33192
  1738
(* term -> term * term *)
blanchet@33192
  1739
val linear_pred_base_and_step_rhss =
blanchet@33192
  1740
  let
blanchet@33192
  1741
    (* term -> term *)
blanchet@33192
  1742
    fun aux (Const (@{const_name lfp}, _) $ t2) =
blanchet@33192
  1743
        let
blanchet@33192
  1744
          val (xs, body) = strip_abs t2
blanchet@33192
  1745
          val arg_Ts = map snd (tl xs)
blanchet@33192
  1746
          val tuple_T = HOLogic.mk_tupleT arg_Ts
blanchet@33192
  1747
          val j = length arg_Ts
blanchet@33192
  1748
          (* int -> term -> term *)
blanchet@33192
  1749
          fun repair_rec j (Const (@{const_name Ex}, T1) $ Abs (s2, T2, t2')) =
blanchet@33192
  1750
              Const (@{const_name Ex}, T1)
blanchet@33192
  1751
              $ Abs (s2, T2, repair_rec (j + 1) t2')
blanchet@33192
  1752
            | repair_rec j (@{const "op &"} $ t1 $ t2) =
blanchet@33192
  1753
              @{const "op &"} $ repair_rec j t1 $ repair_rec j t2
blanchet@33192
  1754
            | repair_rec j t =
blanchet@33192
  1755
              let val (head, args) = strip_comb t in
blanchet@33192
  1756
                if head = Bound j then
blanchet@33192
  1757
                  HOLogic.eq_const tuple_T $ Bound j
blanchet@33192
  1758
                  $ mk_flat_tuple tuple_T args
blanchet@33192
  1759
                else
blanchet@33192
  1760
                  t
blanchet@33192
  1761
              end
blanchet@33192
  1762
          val (nonrecs, recs) =
blanchet@33192
  1763
            List.partition (equal 0 o num_occs_of_bound_in_term j)
blanchet@33192
  1764
                           (disjuncts body)
blanchet@33192
  1765
          val base_body = nonrecs |> List.foldl s_disj @{const False}
blanchet@33192
  1766
          val step_body = recs |> map (repair_rec j)
blanchet@33192
  1767
                               |> List.foldl s_disj @{const False} 
blanchet@33192
  1768
        in
blanchet@33192
  1769
          (list_abs (tl xs, incr_bv (~1, j, base_body))
blanchet@33192
  1770
           |> ap_split tuple_T bool_T,
blanchet@33192
  1771
           Abs ("y", tuple_T, list_abs (tl xs, step_body)
blanchet@33192
  1772
                              |> ap_split tuple_T bool_T))
blanchet@33192
  1773
        end
blanchet@33192
  1774
      | aux t =
blanchet@33224
  1775
        raise TERM ("Nitpick_HOL.linear_pred_base_and_step_rhss.aux", [t])
blanchet@33192
  1776
  in aux end
blanchet@33192
  1777
blanchet@33192
  1778
(* extended_context -> styp -> term -> term *)
blanchet@33192
  1779
fun closed_linear_pred_const (ext_ctxt as {simp_table, ...}) (x as (s, T)) def =
blanchet@33192
  1780
  let
blanchet@33192
  1781
    val j = maxidx_of_term def + 1
blanchet@33192
  1782
    val (outer, fp_app) = strip_abs def
blanchet@33192
  1783
    val outer_bounds = map Bound (length outer - 1 downto 0)
blanchet@33192
  1784
    val outer_vars = map (fn (s, T) => Var ((s, j), T)) outer
blanchet@33192
  1785
    val fp_app = subst_bounds (rev outer_vars, fp_app)
blanchet@33192
  1786
    val (outer_Ts, rest_T) = strip_n_binders (length outer) T
blanchet@33192
  1787
    val tuple_arg_Ts = strip_type rest_T |> fst
blanchet@33192
  1788
    val tuple_T = HOLogic.mk_tupleT tuple_arg_Ts
blanchet@33192
  1789
    val set_T = tuple_T --> bool_T
blanchet@33192
  1790
    val curried_T = tuple_T --> set_T
blanchet@33192
  1791
    val uncurried_T = Type ("*", [tuple_T, tuple_T]) --> bool_T
blanchet@33192
  1792
    val (base_rhs, step_rhs) = linear_pred_base_and_step_rhss fp_app
blanchet@33192
  1793
    val base_x as (base_s, _) = (base_prefix ^ s, outer_Ts ---> set_T)
blanchet@33192
  1794
    val base_eq = HOLogic.mk_eq (list_comb (Const base_x, outer_vars), base_rhs)
blanchet@33192
  1795
                  |> HOLogic.mk_Trueprop
blanchet@33192
  1796
    val _ = add_simps simp_table base_s [base_eq]
blanchet@33192
  1797
    val step_x as (step_s, _) = (step_prefix ^ s, outer_Ts ---> curried_T)
blanchet@33192
  1798
    val step_eq = HOLogic.mk_eq (list_comb (Const step_x, outer_vars), step_rhs)
blanchet@33192
  1799
                  |> HOLogic.mk_Trueprop
blanchet@33192
  1800
    val _ = add_simps simp_table step_s [step_eq]
blanchet@33192
  1801
  in
blanchet@33192
  1802
    list_abs (outer,
blanchet@33192
  1803
              Const (@{const_name Image}, uncurried_T --> set_T --> set_T)
blanchet@33192
  1804
              $ (Const (@{const_name rtrancl}, uncurried_T --> uncurried_T)
blanchet@33192
  1805
                 $ (Const (@{const_name split}, curried_T --> uncurried_T)
blanchet@33192
  1806
                    $ list_comb (Const step_x, outer_bounds)))
blanchet@33192
  1807
              $ list_comb (Const base_x, outer_bounds)
blanchet@33192
  1808
              |> ap_curry tuple_arg_Ts tuple_T bool_T)
blanchet@33192
  1809
    |> unfold_defs_in_term ext_ctxt
blanchet@33192
  1810
  end
blanchet@33192
  1811
blanchet@33192
  1812
(* extended_context -> bool -> styp -> term *)
blanchet@33192
  1813
fun unrolled_inductive_pred_const (ext_ctxt as {thy, star_linear_preds,
blanchet@33192
  1814
                                                def_table, simp_table, ...})
blanchet@33192
  1815
                                  gfp (x as (s, T)) =
blanchet@33192
  1816
  let
blanchet@33192
  1817
    val iter_T = iterator_type_for_const gfp x
blanchet@33192
  1818
    val x' as (s', _) = (unrolled_prefix ^ s, iter_T --> T)
blanchet@33192
  1819
    val unrolled_const = Const x' $ zero_const iter_T
blanchet@33192
  1820
    val def = the (def_of_const thy def_table x)
blanchet@33192
  1821
  in
blanchet@33192
  1822
    if is_equational_fun ext_ctxt x' then
blanchet@33192
  1823
      unrolled_const (* already done *)
blanchet@33192
  1824
    else if not gfp andalso is_linear_inductive_pred_def def
blanchet@33192
  1825
         andalso star_linear_preds then
blanchet@33192
  1826
      closed_linear_pred_const ext_ctxt x def
blanchet@33192
  1827
    else
blanchet@33192
  1828
      let
blanchet@33192
  1829
        val j = maxidx_of_term def + 1
blanchet@33192
  1830
        val (outer, fp_app) = strip_abs def
blanchet@33192
  1831
        val outer_bounds = map Bound (length outer - 1 downto 0)
blanchet@33192
  1832
        val cur = Var ((iter_var_prefix, j + 1), iter_T)
blanchet@33192
  1833
        val next = suc_const iter_T $ cur
blanchet@33192
  1834
        val rhs = case fp_app of
blanchet@33192
  1835
                    Const _ $ t =>
blanchet@33192
  1836
                    betapply (t, list_comb (Const x', next :: outer_bounds))
blanchet@33224
  1837
                  | _ => raise TERM ("Nitpick_HOL.unrolled_inductive_pred_\
blanchet@33224
  1838
                                     \const", [fp_app])
blanchet@33192
  1839
        val (inner, naked_rhs) = strip_abs rhs
blanchet@33192
  1840
        val all = outer @ inner
blanchet@33192
  1841
        val bounds = map Bound (length all - 1 downto 0)
blanchet@33192
  1842
        val vars = map (fn (s, T) => Var ((s, j), T)) all
blanchet@33192
  1843
        val eq = HOLogic.mk_eq (list_comb (Const x', cur :: bounds), naked_rhs)
blanchet@33192
  1844
                 |> HOLogic.mk_Trueprop |> curry subst_bounds (rev vars)
blanchet@33192
  1845
        val _ = add_simps simp_table s' [eq]
blanchet@33192
  1846
      in unrolled_const end
blanchet@33192
  1847
  end
blanchet@33192
  1848
blanchet@33192
  1849
(* extended_context -> styp -> term *)
blanchet@33192
  1850
fun raw_inductive_pred_axiom ({thy, def_table, ...} : extended_context) x =
blanchet@33192
  1851
  let
blanchet@33192
  1852
    val def = the (def_of_const thy def_table x)
blanchet@33192
  1853
    val (outer, fp_app) = strip_abs def
blanchet@33192
  1854
    val outer_bounds = map Bound (length outer - 1 downto 0)
blanchet@33192
  1855
    val rhs = case fp_app of
blanchet@33192
  1856
                Const _ $ t => betapply (t, list_comb (Const x, outer_bounds))
blanchet@33224
  1857
              | _ => raise TERM ("Nitpick_HOL.raw_inductive_pred_axiom",
blanchet@33192
  1858
                                 [fp_app])
blanchet@33192
  1859
    val (inner, naked_rhs) = strip_abs rhs
blanchet@33192
  1860
    val all = outer @ inner
blanchet@33192
  1861
    val bounds = map Bound (length all - 1 downto 0)
blanchet@33192
  1862
    val j = maxidx_of_term def + 1
blanchet@33192
  1863
    val vars = map (fn (s, T) => Var ((s, j), T)) all
blanchet@33192
  1864
  in
blanchet@33192
  1865
    HOLogic.mk_eq (list_comb (Const x, bounds), naked_rhs)
blanchet@33192
  1866
    |> HOLogic.mk_Trueprop |> curry subst_bounds (rev vars)
blanchet@33192
  1867
  end
blanchet@33192
  1868
fun inductive_pred_axiom ext_ctxt (x as (s, T)) =
blanchet@33192
  1869
  if String.isPrefix ubfp_prefix s orelse String.isPrefix lbfp_prefix s then
blanchet@33192
  1870
    let val x' = (after_name_sep s, T) in
blanchet@33192
  1871
      raw_inductive_pred_axiom ext_ctxt x' |> subst_atomic [(Const x', Const x)]
blanchet@33192
  1872
    end
blanchet@33192
  1873
  else
blanchet@33192
  1874
    raw_inductive_pred_axiom ext_ctxt x
blanchet@33192
  1875
blanchet@33192
  1876
(* extended_context -> styp -> term list *)
blanchet@33192
  1877
fun raw_equational_fun_axioms (ext_ctxt as {thy, fast_descrs, simp_table,
blanchet@33192
  1878
                                            psimp_table, ...}) (x as (s, _)) =
blanchet@33547
  1879
  case def_props_for_const thy fast_descrs (!simp_table) x of
blanchet@33192
  1880
    [] => (case def_props_for_const thy fast_descrs psimp_table x of
blanchet@33192
  1881
             [] => [inductive_pred_axiom ext_ctxt x]
blanchet@33192
  1882
           | psimps => psimps)
blanchet@33192
  1883
  | simps => simps
blanchet@33192
  1884
blanchet@33192
  1885
val equational_fun_axioms = map extensionalize oo raw_equational_fun_axioms
blanchet@33192
  1886
blanchet@33192
  1887
(* term list -> term list *)
blanchet@33547
  1888
fun merge_type_vars_in_terms ts =
blanchet@33192
  1889
  let
blanchet@33192
  1890
    (* typ -> (sort * string) list -> (sort * string) list *)
blanchet@33192
  1891
    fun add_type (TFree (s, S)) table =
blanchet@33192
  1892
        (case AList.lookup (op =) table S of
blanchet@33192
  1893
           SOME s' =>
blanchet@33192
  1894
           if string_ord (s', s) = LESS then AList.update (op =) (S, s') table
blanchet@33192
  1895
           else table
blanchet@33192
  1896
         | NONE => (S, s) :: table)
blanchet@33192
  1897
      | add_type _ table = table
blanchet@33192
  1898
    val table = fold (fold_types (fold_atyps add_type)) ts []
blanchet@33192
  1899
    (* typ -> typ *)
blanchet@33192
  1900
    fun coalesce (TFree (s, S)) = TFree (AList.lookup (op =) table S |> the, S)
blanchet@33192
  1901
      | coalesce T = T
blanchet@33192
  1902
  in map (map_types (map_atyps coalesce)) ts end
blanchet@33192
  1903
blanchet@33192
  1904
(* extended_context -> typ -> typ list -> typ list *)
blanchet@33192
  1905
fun add_ground_types ext_ctxt T accum =
blanchet@33192
  1906
  case T of
blanchet@33192
  1907
    Type ("fun", Ts) => fold (add_ground_types ext_ctxt) Ts accum
blanchet@33192
  1908
  | Type ("*", Ts) => fold (add_ground_types ext_ctxt) Ts accum
blanchet@33192
  1909
  | Type (@{type_name itself}, [T1]) => add_ground_types ext_ctxt T1 accum
blanchet@33192
  1910
  | Type (_, Ts) =>
blanchet@33192
  1911
    if T mem @{typ prop} :: @{typ bool} :: @{typ unit} :: accum then
blanchet@33192
  1912
      accum
blanchet@33192
  1913
    else
blanchet@33192
  1914
      T :: accum
blanchet@33192
  1915
      |> fold (add_ground_types ext_ctxt)
blanchet@33192
  1916
              (case boxed_datatype_constrs ext_ctxt T of
blanchet@33192
  1917
                 [] => Ts
blanchet@33192
  1918
               | xs => map snd xs)
blanchet@33192
  1919
  | _ => insert (op =) T accum
blanchet@33192
  1920
(* extended_context -> typ -> typ list *)
blanchet@33192
  1921
fun ground_types_in_type ext_ctxt T = add_ground_types ext_ctxt T []
blanchet@33192
  1922
(* extended_context -> term list -> typ list *)
blanchet@33192
  1923
fun ground_types_in_terms ext_ctxt ts =
blanchet@33192
  1924
  fold (fold_types (add_ground_types ext_ctxt)) ts []
blanchet@33192
  1925
blanchet@33192
  1926
(* typ list -> int -> term -> bool *)
blanchet@33192
  1927
fun has_heavy_bounds_or_vars Ts level t =
blanchet@33192
  1928
  let
blanchet@33192
  1929
    (* typ list -> bool *)
blanchet@33192
  1930
    fun aux [] = false
blanchet@33192
  1931
      | aux [T] = is_fun_type T orelse is_pair_type T
blanchet@33192
  1932
      | aux _ = true
blanchet@33192
  1933
  in aux (map snd (Term.add_vars t []) @ map (nth Ts) (loose_bnos t)) end
blanchet@33192
  1934
blanchet@33192
  1935
(* typ list -> int -> int -> int -> term -> term *)
blanchet@33192
  1936
fun fresh_value_var Ts k n j t =
blanchet@33192
  1937
  Var ((val_var_prefix ^ nat_subscript (n - j), k), fastype_of1 (Ts, t))
blanchet@33192
  1938
blanchet@33192
  1939
(* theory -> typ list -> bool -> int -> int -> term -> term list -> term list
blanchet@33192
  1940
   -> term * term list *)
blanchet@33192
  1941
fun pull_out_constr_comb thy Ts relax k level t args seen =
blanchet@33192
  1942
  let val t_comb = list_comb (t, args) in
blanchet@33192
  1943
    case t of
blanchet@33192
  1944
      Const x =>
blanchet@33192
  1945
      if not relax andalso is_constr thy x
blanchet@33192
  1946
         andalso not (is_fun_type (fastype_of1 (Ts, t_comb)))
blanchet@33192
  1947
         andalso has_heavy_bounds_or_vars Ts level t_comb
blanchet@33192
  1948
         andalso not (loose_bvar (t_comb, level)) then
blanchet@33192
  1949
        let
blanchet@33192
  1950
          val (j, seen) = case find_index (equal t_comb) seen of
blanchet@33192
  1951
                            ~1 => (0, t_comb :: seen)
blanchet@33192
  1952
                          | j => (j, seen)
blanchet@33192
  1953
        in (fresh_value_var Ts k (length seen) j t_comb, seen) end
blanchet@33192
  1954
      else
blanchet@33192
  1955
        (t_comb, seen)
blanchet@33192
  1956
    | _ => (t_comb, seen)
blanchet@33192
  1957
  end
blanchet@33192
  1958
blanchet@33192
  1959
(* (term -> term) -> typ list -> int -> term list -> term list *)
blanchet@33192
  1960
fun equations_for_pulled_out_constrs mk_eq Ts k seen =
blanchet@33192
  1961
  let val n = length seen in
blanchet@33192
  1962
    map2 (fn j => fn t => mk_eq (fresh_value_var Ts k n j t, t))
blanchet@33192
  1963
         (index_seq 0 n) seen
blanchet@33192
  1964
  end
blanchet@33192
  1965
blanchet@33192
  1966
(* theory -> bool -> term -> term *)
blanchet@33192
  1967
fun pull_out_universal_constrs thy def t =
blanchet@33192
  1968
  let
blanchet@33192
  1969
    val k = maxidx_of_term t + 1
blanchet@33192
  1970
    (* typ list -> bool -> term -> term list -> term list -> term * term list *)
blanchet@33192
  1971
    fun do_term Ts def t args seen =
blanchet@33192
  1972
      case t of
blanchet@33192
  1973
        (t0 as Const (@{const_name "=="}, _)) $ t1 $ t2 =>
blanchet@33192
  1974
        do_eq_or_imp Ts def t0 t1 t2 seen
blanchet@33192
  1975
      | (t0 as @{const "==>"}) $ t1 $ t2 => do_eq_or_imp Ts def t0 t1 t2 seen
blanchet@33192
  1976
      | (t0 as Const (@{const_name "op ="}, _)) $ t1 $ t2 =>
blanchet@33192
  1977
        do_eq_or_imp Ts def t0 t1 t2 seen
blanchet@33192
  1978
      | (t0 as @{const "op -->"}) $ t1 $ t2 => do_eq_or_imp Ts def t0 t1 t2 seen
blanchet@33192
  1979
      | Abs (s, T, t') =>
blanchet@33192
  1980
        let val (t', seen) = do_term (T :: Ts) def t' [] seen in
blanchet@33192
  1981
          (list_comb (Abs (s, T, t'), args), seen)
blanchet@33192
  1982
        end
blanchet@33192
  1983
      | t1 $ t2 =>
blanchet@33192
  1984
        let val (t2, seen) = do_term Ts def t2 [] seen in
blanchet@33192
  1985
          do_term Ts def t1 (t2 :: args) seen
blanchet@33192
  1986
        end
blanchet@33192
  1987
      | _ => pull_out_constr_comb thy Ts def k 0 t args seen
blanchet@33192
  1988
    (* typ list -> bool -> term -> term -> term -> term list
blanchet@33192
  1989
       -> term * term list *)
blanchet@33192
  1990
    and do_eq_or_imp Ts def t0 t1 t2 seen =
blanchet@33192
  1991
      let
blanchet@33192
  1992
        val (t2, seen) = do_term Ts def t2 [] seen
blanchet@33192
  1993
        val (t1, seen) = do_term Ts false t1 [] seen
blanchet@33192
  1994
      in (t0 $ t1 $ t2, seen) end
blanchet@33192
  1995
    val (concl, seen) = do_term [] def t [] []
blanchet@33192
  1996
  in
blanchet@33192
  1997
    Logic.list_implies (equations_for_pulled_out_constrs Logic.mk_equals [] k
blanchet@33192
  1998
                                                         seen, concl)
blanchet@33192
  1999
  end
blanchet@33192
  2000
blanchet@33571
  2001
(* extended_context -> bool -> term -> term *)
blanchet@33571
  2002
fun destroy_pulled_out_constrs (ext_ctxt as {thy, ...}) axiom t =
blanchet@33192
  2003
  let
blanchet@33192
  2004
    (* styp -> int *)
blanchet@33192
  2005
    val num_occs_of_var =
blanchet@33192
  2006
      fold_aterms (fn Var z => (fn f => fn z' => f z' |> z = z' ? Integer.add 1)
blanchet@33192
  2007
                    | _ => I) t (K 0)
blanchet@33192
  2008
    (* bool -> term -> term *)
blanchet@33192
  2009
    fun aux careful ((t0 as Const (@{const_name "=="}, _)) $ t1 $ t2) =
blanchet@33192
  2010
        aux_eq careful true t0 t1 t2
blanchet@33192
  2011
      | aux careful ((t0 as @{const "==>"}) $ t1 $ t2) =
blanchet@33192
  2012
        t0 $ aux false t1 $ aux careful t2
blanchet@33192
  2013
      | aux careful ((t0 as Const (@{const_name "op ="}, _)) $ t1 $ t2) =
blanchet@33192
  2014
        aux_eq careful true t0 t1 t2
blanchet@33192
  2015
      | aux careful ((t0 as @{const "op -->"}) $ t1 $ t2) =
blanchet@33192
  2016
        t0 $ aux false t1 $ aux careful t2
blanchet@33192
  2017
      | aux careful (Abs (s, T, t')) = Abs (s, T, aux careful t')
blanchet@33192
  2018
      | aux careful (t1 $ t2) = aux careful t1 $ aux careful t2
blanchet@33192
  2019
      | aux _ t = t
blanchet@33192
  2020
    (* bool -> bool -> term -> term -> term -> term *)
blanchet@33192
  2021
    and aux_eq careful pass1 t0 t1 t2 =
blanchet@33192
  2022
      (if careful then
blanchet@33192
  2023
         raise SAME ()
blanchet@33192
  2024
       else if axiom andalso is_Var t2
blanchet@33192
  2025
               andalso num_occs_of_var (dest_Var t2) = 1 then
blanchet@33192
  2026
         @{const True}
blanchet@33192
  2027
       else case strip_comb t2 of
blanchet@33192
  2028
         (Const (x as (s, T)), args) =>
blanchet@33192
  2029
         let val arg_Ts = binder_types T in
blanchet@33192
  2030
           if length arg_Ts = length args
blanchet@33192
  2031
              andalso (is_constr thy x orelse s mem [@{const_name Pair}]
blanchet@33192
  2032
                       orelse x = dest_Const @{const Suc})
blanchet@33192
  2033
              andalso (not careful orelse not (is_Var t1)
blanchet@33192
  2034
                       orelse String.isPrefix val_var_prefix
blanchet@33192
  2035
                                              (fst (fst (dest_Var t1)))) then
blanchet@33571
  2036
             discriminate_value ext_ctxt x t1 ::
blanchet@33192
  2037
             map3 (sel_eq x t1) (index_seq 0 (length args)) arg_Ts args
blanchet@33192
  2038
             |> foldr1 s_conj
blanchet@33192
  2039
             |> body_type (type_of t0) = prop_T ? HOLogic.mk_Trueprop
blanchet@33192
  2040
           else
blanchet@33192
  2041
             raise SAME ()
blanchet@33192
  2042
         end
blanchet@33192
  2043
       | _ => raise SAME ())
blanchet@33192
  2044
      handle SAME () => if pass1 then aux_eq careful false t0 t2 t1
blanchet@33192
  2045
                        else t0 $ aux false t2 $ aux false t1
blanchet@33192
  2046
    (* styp -> term -> int -> typ -> term -> term *)
blanchet@33192
  2047
    and sel_eq x t n nth_T nth_t =
blanchet@33192
  2048
      HOLogic.eq_const nth_T $ nth_t $ select_nth_constr_arg thy x t n nth_T
blanchet@33192
  2049
      |> aux false
blanchet@33192
  2050
  in aux axiom t end
blanchet@33192
  2051
blanchet@33192
  2052
(* theory -> term -> term *)
blanchet@33192
  2053
fun simplify_constrs_and_sels thy t =
blanchet@33192
  2054
  let
blanchet@33192
  2055
    (* term -> int -> term *)
blanchet@33192
  2056
    fun is_nth_sel_on t' n (Const (s, _) $ t) =
blanchet@33192
  2057
        (t = t' andalso is_sel_like_and_no_discr s
blanchet@33192
  2058
         andalso sel_no_from_name s = n)
blanchet@33192
  2059
      | is_nth_sel_on _ _ _ = false
blanchet@33192
  2060
    (* term -> term list -> term *)
blanchet@33192
  2061
    fun do_term (Const (@{const_name Rep_Frac}, _)
blanchet@33192
  2062
                 $ (Const (@{const_name Abs_Frac}, _) $ t1)) [] = do_term t1 []
blanchet@33192
  2063
      | do_term (Const (@{const_name Abs_Frac}, _)
blanchet@33192
  2064
                 $ (Const (@{const_name Rep_Frac}, _) $ t1)) [] = do_term t1 []
blanchet@33192
  2065
      | do_term (t1 $ t2) args = do_term t1 (do_term t2 [] :: args)
blanchet@33192
  2066
      | do_term (t as Const (x as (s, T))) (args as _ :: _) =
blanchet@33192
  2067
        ((if is_constr_like thy x then
blanchet@33192
  2068
            if length args = num_binder_types T then
blanchet@33192
  2069
              case hd args of
blanchet@33192
  2070
                Const (x' as (_, T')) $ t' =>
blanchet@33192
  2071
                if domain_type T' = body_type T
blanchet@33192
  2072
                   andalso forall (uncurry (is_nth_sel_on t'))
blanchet@33192
  2073
                                  (index_seq 0 (length args) ~~ args) then
blanchet@33192
  2074
                  t'
blanchet@33192
  2075
                else
blanchet@33192
  2076
                  raise SAME ()
blanchet@33192
  2077
              | _ => raise SAME ()
blanchet@33192
  2078
            else
blanchet@33192
  2079
              raise SAME ()
blanchet@33192
  2080
          else if is_sel_like_and_no_discr s then
blanchet@33192
  2081
            case strip_comb (hd args) of
blanchet@33192
  2082
              (Const (x' as (s', T')), ts') =>
blanchet@33192
  2083
              if is_constr_like thy x'
blanchet@33192
  2084
                 andalso constr_name_for_sel_like s = s'
blanchet@33192
  2085
                 andalso not (exists is_pair_type (binder_types T')) then
blanchet@33192
  2086
                list_comb (nth ts' (sel_no_from_name s), tl args)
blanchet@33192
  2087
              else
blanchet@33192
  2088
                raise SAME ()
blanchet@33192
  2089
            | _ => raise SAME ()
blanchet@33192
  2090
          else
blanchet@33192
  2091
            raise SAME ())
blanchet@33192
  2092
         handle SAME () => betapplys (t, args))
blanchet@33192
  2093
      | do_term (Abs (s, T, t')) args =
blanchet@33192
  2094
        betapplys (Abs (s, T, do_term t' []), args)
blanchet@33192
  2095
      | do_term t args = betapplys (t, args)
blanchet@33192
  2096
  in do_term t [] end
blanchet@33192
  2097
blanchet@33192
  2098
(* term -> term *)
blanchet@33192
  2099
fun curry_assms (@{const "==>"} $ (@{const Trueprop}
blanchet@33192
  2100
                                   $ (@{const "op &"} $ t1 $ t2)) $ t3) =
blanchet@33192
  2101
    curry_assms (Logic.list_implies ([t1, t2] |> map HOLogic.mk_Trueprop, t3))
blanchet@33192
  2102
  | curry_assms (@{const "==>"} $ t1 $ t2) =
blanchet@33192
  2103
    @{const "==>"} $ curry_assms t1 $ curry_assms t2
blanchet@33192
  2104
  | curry_assms t = t
blanchet@33192
  2105
blanchet@33192
  2106
(* term -> term *)
blanchet@33192
  2107
val destroy_universal_equalities =
blanchet@33192
  2108
  let
blanchet@33192
  2109
    (* term list -> (indexname * typ) list -> term -> term *)
blanchet@33192
  2110
    fun aux prems zs t =
blanchet@33192
  2111
      case t of
blanchet@33192
  2112
        @{const "==>"} $ t1 $ t2 => aux_implies prems zs t1 t2
blanchet@33192
  2113
      | _ => Logic.list_implies (rev prems, t)
blanchet@33192
  2114
    (* term list -> (indexname * typ) list -> term -> term -> term *)
blanchet@33192
  2115
    and aux_implies prems zs t1 t2 =
blanchet@33192
  2116
      case t1 of
blanchet@33192
  2117
        Const (@{const_name "=="}, _) $ Var z $ t' => aux_eq prems zs z t' t1 t2
blanchet@33192
  2118
      | @{const Trueprop} $ (Const (@{const_name "op ="}, _) $ Var z $ t') =>
blanchet@33192
  2119
        aux_eq prems zs z t' t1 t2
blanchet@33192
  2120
      | @{const Trueprop} $ (Const (@{const_name "op ="}, _) $ t' $ Var z) =>
blanchet@33192
  2121
        aux_eq prems zs z t' t1 t2
blanchet@33192
  2122
      | _ => aux (t1 :: prems) (Term.add_vars t1 zs) t2
blanchet@33192
  2123
    (* term list -> (indexname * typ) list -> indexname * typ -> term -> term
blanchet@33192
  2124
       -> term -> term *)
blanchet@33192
  2125
    and aux_eq prems zs z t' t1 t2 =
blanchet@33192
  2126
      if not (z mem zs) andalso not (exists_subterm (equal (Var z)) t') then
blanchet@33192
  2127
        aux prems zs (subst_free [(Var z, t')] t2)
blanchet@33192
  2128
      else
blanchet@33192
  2129
        aux (t1 :: prems) (Term.add_vars t1 zs) t2
blanchet@33192
  2130
  in aux [] [] end
blanchet@33192
  2131
blanchet@33192
  2132
(* theory -> term -> term *)
blanchet@33192
  2133
fun pull_out_existential_constrs thy t =
blanchet@33192
  2134
  let
blanchet@33192
  2135
    val k = maxidx_of_term t + 1
blanchet@33192
  2136
    (* typ list -> int -> term -> term list -> term list -> term * term list *)
blanchet@33192
  2137
    fun aux Ts num_exists t args seen =
blanchet@33192
  2138
      case t of
blanchet@33192
  2139
        (t0 as Const (@{const_name Ex}, _)) $ Abs (s1, T1, t1) =>
blanchet@33192
  2140
        let
blanchet@33192
  2141
          val (t1, seen') = aux (T1 :: Ts) (num_exists + 1) t1 [] []
blanchet@33192
  2142
          val n = length seen'
blanchet@33192
  2143
          (* unit -> term list *)
blanchet@33192
  2144
          fun vars () = map2 (fresh_value_var Ts k n) (index_seq 0 n) seen'
blanchet@33192
  2145
        in
blanchet@33192
  2146
          (equations_for_pulled_out_constrs HOLogic.mk_eq Ts k seen'
blanchet@33192
  2147
           |> List.foldl s_conj t1 |> fold mk_exists (vars ())
blanchet@33192
  2148
           |> curry3 Abs s1 T1 |> curry (op $) t0, seen)
blanchet@33192
  2149
        end
blanchet@33192
  2150
      | t1 $ t2 =>
blanchet@33192
  2151
        let val (t2, seen) = aux Ts num_exists t2 [] seen in
blanchet@33192
  2152
          aux Ts num_exists t1 (t2 :: args) seen
blanchet@33192
  2153
        end
blanchet@33192
  2154
      | Abs (s, T, t') =>
blanchet@33192
  2155
        let
blanchet@33192
  2156
          val (t', seen) = aux (T :: Ts) 0 t' [] (map (incr_boundvars 1) seen)
blanchet@33192
  2157
        in (list_comb (Abs (s, T, t'), args), map (incr_boundvars ~1) seen) end
blanchet@33192
  2158
      | _ =>
blanchet@33192
  2159
        if num_exists > 0 then
blanchet@33192
  2160
          pull_out_constr_comb thy Ts false k num_exists t args seen
blanchet@33192
  2161
        else
blanchet@33192
  2162
          (list_comb (t, args), seen)
blanchet@33192
  2163
  in aux [] 0 t [] [] |> fst end
blanchet@33192
  2164
blanchet@33192
  2165
(* theory -> int -> term list -> term list -> (term * term list) option *)
blanchet@33192
  2166
fun find_bound_assign _ _ _ [] = NONE
blanchet@33192
  2167
  | find_bound_assign thy j seen (t :: ts) =
blanchet@33192
  2168
    let
blanchet@33192
  2169
      (* bool -> term -> term -> (term * term list) option *)
blanchet@33192
  2170
      fun aux pass1 t1 t2 =
blanchet@33192
  2171
        (if loose_bvar1 (t2, j) then
blanchet@33192
  2172
           if pass1 then aux false t2 t1 else raise SAME ()
blanchet@33192
  2173
         else case t1 of
blanchet@33192
  2174
           Bound j' => if j' = j then SOME (t2, ts @ seen) else raise SAME ()
blanchet@33192
  2175
         | Const (s, Type ("fun", [T1, T2])) $ Bound j' =>
blanchet@33192
  2176
           if j' = j andalso s = sel_prefix_for 0 ^ @{const_name FunBox} then
blanchet@33192
  2177
             SOME (construct_value thy (@{const_name FunBox}, T2 --> T1) [t2],
blanchet@33192
  2178
                   ts @ seen)
blanchet@33192
  2179
           else
blanchet@33192
  2180
             raise SAME ()
blanchet@33192
  2181
         | _ => raise SAME ())
blanchet@33192
  2182
        handle SAME () => find_bound_assign thy j (t :: seen) ts
blanchet@33192
  2183
    in
blanchet@33192
  2184
      case t of
blanchet@33192
  2185
        Const (@{const_name "op ="}, _) $ t1 $ t2 => aux true t1 t2
blanchet@33192
  2186
      | _ => find_bound_assign thy j (t :: seen) ts
blanchet@33192
  2187
    end
blanchet@33192
  2188
blanchet@33192
  2189
(* int -> term -> term -> term *)
blanchet@33192
  2190
fun subst_one_bound j arg t =
blanchet@33192
  2191
  let
blanchet@33192
  2192
    fun aux (Bound i, lev) =
blanchet@33192
  2193
        if i < lev then raise SAME ()
blanchet@33192
  2194
        else if i = lev then incr_boundvars (lev - j) arg
blanchet@33192
  2195
        else Bound (i - 1)
blanchet@33192
  2196
      | aux (Abs (a, T, body), lev) = Abs (a, T, aux (body, lev + 1))
blanchet@33192
  2197
      | aux (f $ t, lev) =
blanchet@33192
  2198
        (aux (f, lev) $ (aux (t, lev) handle SAME () => t)
blanchet@33192
  2199
         handle SAME () => f $ aux (t, lev))
blanchet@33192
  2200
      | aux _ = raise SAME ()
blanchet@33192
  2201
  in aux (t, j) handle SAME () => t end
blanchet@33192
  2202
blanchet@33192
  2203
(* theory -> term -> term *)
blanchet@33192
  2204
fun destroy_existential_equalities thy =
blanchet@33192
  2205
  let
blanchet@33192
  2206
    (* string list -> typ list -> term list -> term *)
blanchet@33192
  2207
    fun kill [] [] ts = foldr1 s_conj ts
blanchet@33192
  2208
      | kill (s :: ss) (T :: Ts) ts =
blanchet@33192
  2209
        (case find_bound_assign thy (length ss) [] ts of
blanchet@33192
  2210
           SOME (_, []) => @{const True}
blanchet@33192
  2211
         | SOME (arg_t, ts) =>
blanchet@33192
  2212
           kill ss Ts (map (subst_one_bound (length ss)
blanchet@33192
  2213
                                (incr_bv (~1, length ss + 1, arg_t))) ts)
blanchet@33192
  2214
         | NONE =>
blanchet@33192
  2215
           Const (@{const_name Ex}, (T --> bool_T) --> bool_T)
blanchet@33192
  2216
           $ Abs (s, T, kill ss Ts ts))
blanchet@33192
  2217
      | kill _ _ _ = raise UnequalLengths
blanchet@33192
  2218
    (* string list -> typ list -> term -> term *)
blanchet@33192
  2219
    fun gather ss Ts ((t0 as Const (@{const_name Ex}, _)) $ Abs (s1, T1, t1)) =
blanchet@33192
  2220
        gather (ss @ [s1]) (Ts @ [T1]) t1
blanchet@33192
  2221
      | gather [] [] (Abs (s, T, t1)) = Abs (s, T, gather [] [] t1)
blanchet@33192
  2222
      | gather [] [] (t1 $ t2) = gather [] [] t1 $ gather [] [] t2
blanchet@33192
  2223
      | gather [] [] t = t
blanchet@33192
  2224
      | gather ss Ts t = kill ss Ts (conjuncts (gather [] [] t))
blanchet@33192
  2225
  in gather [] [] end
blanchet@33192
  2226
blanchet@33192
  2227
(* term -> term *)
blanchet@33192
  2228
fun distribute_quantifiers t =
blanchet@33192
  2229
  case t of
blanchet@33192
  2230
    (t0 as Const (@{const_name All}, T0)) $ Abs (s, T1, t1) =>
blanchet@33192
  2231
    (case t1 of
blanchet@33192
  2232
       (t10 as @{const "op &"}) $ t11 $ t12 =>
blanchet@33192
  2233
       t10 $ distribute_quantifiers (t0 $ Abs (s, T1, t11))
blanchet@33192
  2234
           $ distribute_quantifiers (t0 $ Abs (s, T1, t12))
blanchet@33192
  2235
     | (t10 as @{const Not}) $ t11 =>
blanchet@33192
  2236
       t10 $ distribute_quantifiers (Const (@{const_name Ex}, T0)
blanchet@33192
  2237
                                     $ Abs (s, T1, t11))
blanchet@33192
  2238
     | t1 =>
blanchet@33192
  2239
       if not (loose_bvar1 (t1, 0)) then
blanchet@33192
  2240
         distribute_quantifiers (incr_boundvars ~1 t1)
blanchet@33192
  2241
       else
blanchet@33192
  2242
         t0 $ Abs (s, T1, distribute_quantifiers t1))
blanchet@33192
  2243
  | (t0 as Const (@{const_name Ex}, T0)) $ Abs (s, T1, t1) =>
blanchet@33192
  2244
    (case distribute_quantifiers t1 of
blanchet@33192
  2245
       (t10 as @{const "op |"}) $ t11 $ t12 =>
blanchet@33192
  2246
       t10 $ distribute_quantifiers (t0 $ Abs (s, T1, t11))
blanchet@33192
  2247
           $ distribute_quantifiers (t0 $ Abs (s, T1, t12))
blanchet@33192
  2248
     | (t10 as @{const "op -->"}) $ t11 $ t12 =>
blanchet@33192
  2249
       t10 $ distribute_quantifiers (Const (@{const_name All}, T0)
blanchet@33192
  2250
                                     $ Abs (s, T1, t11))
blanchet@33192
  2251
           $ distribute_quantifiers (t0 $ Abs (s, T1, t12))
blanchet@33192
  2252
     | (t10 as @{const Not}) $ t11 =>
blanchet@33192
  2253
       t10 $ distribute_quantifiers (Const (@{const_name All}, T0)
blanchet@33192
  2254
                                     $ Abs (s, T1, t11))
blanchet@33192
  2255
     | t1 =>
blanchet@33192
  2256
       if not (loose_bvar1 (t1, 0)) then
blanchet@33192
  2257
         distribute_quantifiers (incr_boundvars ~1 t1)
blanchet@33192
  2258
       else
blanchet@33192
  2259
         t0 $ Abs (s, T1, distribute_quantifiers t1))
blanchet@33192
  2260
  | t1 $ t2 => distribute_quantifiers t1 $ distribute_quantifiers t2
blanchet@33192
  2261
  | Abs (s, T, t') => Abs (s, T, distribute_quantifiers t')
blanchet@33192
  2262
  | _ => t
blanchet@33192
  2263
blanchet@33192
  2264
(* int -> int -> (int -> int) -> term -> term *)
blanchet@33192
  2265
fun renumber_bounds j n f t =
blanchet@33192
  2266
  case t of
blanchet@33192
  2267
    t1 $ t2 => renumber_bounds j n f t1 $ renumber_bounds j n f t2
blanchet@33192
  2268
  | Abs (s, T, t') => Abs (s, T, renumber_bounds (j + 1) n f t')
blanchet@33192
  2269
  | Bound j' =>
blanchet@33192
  2270
    Bound (if j' >= j andalso j' < j + n then f (j' - j) + j else j')
blanchet@33192
  2271
  | _ => t
blanchet@33192
  2272
blanchet@33192
  2273
val quantifier_cluster_max_size = 8
blanchet@33192
  2274
blanchet@33192
  2275
(* theory -> term -> term *)
blanchet@33192
  2276
fun push_quantifiers_inward thy =
blanchet@33192
  2277
  let
blanchet@33192
  2278
    (* string -> string list -> typ list -> term -> term *)
blanchet@33192
  2279
    fun aux quant_s ss Ts t =
blanchet@33192
  2280
      (case t of
blanchet@33192
  2281
         (t0 as Const (s0, _)) $ Abs (s1, T1, t1 as _ $ _) =>
blanchet@33192
  2282
         if s0 = quant_s andalso length Ts < quantifier_cluster_max_size then
blanchet@33192
  2283
           aux s0 (s1 :: ss) (T1 :: Ts) t1
blanchet@33192
  2284
         else if quant_s = ""
blanchet@33192
  2285
                 andalso s0 mem [@{const_name All}, @{const_name Ex}] then
blanchet@33192
  2286
           aux s0 [s1] [T1] t1
blanchet@33192
  2287
         else
blanchet@33192
  2288
           raise SAME ()
blanchet@33192
  2289
       | _ => raise SAME ())
blanchet@33192
  2290
      handle SAME () =>
blanchet@33192
  2291
             case t of
blanchet@33192
  2292
               t1 $ t2 =>
blanchet@33192
  2293
               if quant_s = "" then
blanchet@33192
  2294
                 aux "" [] [] t1 $ aux "" [] [] t2
blanchet@33192
  2295
               else
blanchet@33192
  2296
                 let
blanchet@33192
  2297
                   val typical_card = 4
blanchet@33192
  2298
                   (* ('a -> ''b list) -> 'a list -> ''b list *)
blanchet@33192
  2299
                   fun big_union proj ps =
blanchet@33192
  2300
                     fold (fold (insert (op =)) o proj) ps []
blanchet@33192
  2301
                   val (ts, connective) = strip_any_connective t
blanchet@33192
  2302
                   val T_costs =
blanchet@33192
  2303
                     map (bounded_card_of_type 65536 typical_card []) Ts
blanchet@33192
  2304
                   val t_costs = map size_of_term ts
blanchet@33192
  2305
                   val num_Ts = length Ts
blanchet@33192
  2306
                   (* int -> int *)
blanchet@33192
  2307
                   val flip = curry (op -) (num_Ts - 1)
blanchet@33192
  2308
                   val t_boundss = map (map flip o loose_bnos) ts
blanchet@33192
  2309
                   (* (int list * int) list -> int list -> int *)
blanchet@33192
  2310
                   fun cost boundss_cum_costs [] =
blanchet@33192
  2311
                       map snd boundss_cum_costs |> Integer.sum
blanchet@33192
  2312
                     | cost boundss_cum_costs (j :: js) =
blanchet@33192
  2313
                       let
blanchet@33192
  2314
                         val (yeas, nays) =
blanchet@33192
  2315
                           List.partition (fn (bounds, _) => j mem bounds)
blanchet@33192
  2316
                                          boundss_cum_costs
blanchet@33192
  2317
                         val yeas_bounds = big_union fst yeas
blanchet@33192
  2318
                         val yeas_cost = Integer.sum (map snd yeas)
blanchet@33192
  2319
                                         * nth T_costs j
blanchet@33192
  2320
                       in cost ((yeas_bounds, yeas_cost) :: nays) js end
blanchet@33192
  2321
                   val js = all_permutations (index_seq 0 num_Ts)
blanchet@33192
  2322
                            |> map (`(cost (t_boundss ~~ t_costs)))
blanchet@33192
  2323
                            |> sort (int_ord o pairself fst) |> hd |> snd
blanchet@33192
  2324
                   val back_js = map (fn j => find_index (equal j) js)
blanchet@33192
  2325
                                     (index_seq 0 num_Ts)
blanchet@33192
  2326
                   val ts = map (renumber_bounds 0 num_Ts (nth back_js o flip))
blanchet@33192
  2327
                                ts
blanchet@33192
  2328
                   (* (term * int list) list -> term *)
blanchet@33192
  2329
                   fun mk_connection [] =
blanchet@33224
  2330
                       raise ARG ("Nitpick_HOL.push_quantifiers_inward.aux.\
blanchet@33192
  2331
                                  \mk_connection", "")
blanchet@33192
  2332
                     | mk_connection ts_cum_bounds =
blanchet@33192
  2333
                       ts_cum_bounds |> map fst
blanchet@33192
  2334
                       |> foldr1 (fn (t1, t2) => connective $ t1 $ t2)
blanchet@33192
  2335
                   (* (term * int list) list -> int list -> term *)
blanchet@33192
  2336
                   fun build ts_cum_bounds [] = ts_cum_bounds |> mk_connection
blanchet@33192
  2337
                     | build ts_cum_bounds (j :: js) =
blanchet@33192
  2338
                       let
blanchet@33192
  2339
                         val (yeas, nays) =
blanchet@33192
  2340
                           List.partition (fn (_, bounds) => j mem bounds)
blanchet@33192
  2341
                                          ts_cum_bounds
blanchet@33192
  2342
                           ||> map (apfst (incr_boundvars ~1))
blanchet@33192
  2343
                       in
blanchet@33192
  2344
                         if null yeas then
blanchet@33192
  2345
                           build nays js
blanchet@33192
  2346
                         else
blanchet@33192
  2347
                           let val T = nth Ts (flip j) in
blanchet@33192
  2348
                             build ((Const (quant_s, (T --> bool_T) --> bool_T)
blanchet@33192
  2349
                                     $ Abs (nth ss (flip j), T,
blanchet@33192
  2350
                                            mk_connection yeas),
blanchet@33192
  2351
                                      big_union snd yeas) :: nays) js
blanchet@33192
  2352
                           end
blanchet@33192
  2353
                       end
blanchet@33192
  2354
                 in build (ts ~~ t_boundss) js end
blanchet@33192
  2355
             | Abs (s, T, t') => Abs (s, T, aux "" [] [] t')
blanchet@33192
  2356
             | _ => t
blanchet@33192
  2357
  in aux "" [] [] end
blanchet@33192
  2358
blanchet@33192
  2359
(* polarity -> string -> bool *)
blanchet@33192
  2360
fun is_positive_existential polar quant_s =
blanchet@33192
  2361
  (polar = Pos andalso quant_s = @{const_name Ex})
blanchet@33192
  2362
  orelse (polar = Neg andalso quant_s <> @{const_name Ex})
blanchet@33192
  2363
blanchet@33192
  2364
(* extended_context -> int -> term -> term *)
blanchet@33192
  2365
fun skolemize_term_and_more (ext_ctxt as {thy, def_table, skolems, ...})
blanchet@33192
  2366
                            skolem_depth =
blanchet@33192
  2367
  let
blanchet@33192
  2368
    (* int list -> int list *)
blanchet@33192
  2369
    val incrs = map (Integer.add 1)
blanchet@33192
  2370
    (* string list -> typ list -> int list -> int -> polarity -> term -> term *)
blanchet@33192
  2371
    fun aux ss Ts js depth polar t =
blanchet@33192
  2372
      let
blanchet@33192
  2373
        (* string -> typ -> string -> typ -> term -> term *)
blanchet@33192
  2374
        fun do_quantifier quant_s quant_T abs_s abs_T t =
blanchet@33192
  2375
          if not (loose_bvar1 (t, 0)) then
blanchet@33192
  2376
            aux ss Ts js depth polar (incr_boundvars ~1 t)
blanchet@33192
  2377
          else if depth <= skolem_depth
blanchet@33192
  2378
                  andalso is_positive_existential polar quant_s then
blanchet@33192
  2379
            let
blanchet@33192
  2380
              val j = length (!skolems) + 1
blanchet@33192
  2381
              val sko_s = skolem_prefix_for (length js) j ^ abs_s
blanchet@33192
  2382
              val _ = Unsynchronized.change skolems (cons (sko_s, ss))
blanchet@33192
  2383
              val sko_t = list_comb (Const (sko_s, rev Ts ---> abs_T),
blanchet@33192
  2384
                                     map Bound (rev js))
blanchet@33192
  2385
              val abs_t = Abs (abs_s, abs_T, aux ss Ts (incrs js) depth polar t)
blanchet@33192
  2386
            in
blanchet@33192
  2387
              if null js then betapply (abs_t, sko_t)
blanchet@33192
  2388
              else Const (@{const_name Let}, abs_T --> quant_T) $ sko_t $ abs_t
blanchet@33192
  2389
            end
blanchet@33192
  2390
          else
blanchet@33192
  2391
            Const (quant_s, quant_T)
blanchet@33192
  2392
            $ Abs (abs_s, abs_T,
blanchet@33192
  2393
                   if is_higher_order_type abs_T then
blanchet@33192
  2394
                     t
blanchet@33192
  2395
                   else
blanchet@33192
  2396
                     aux (abs_s :: ss) (abs_T :: Ts) (0 :: incrs js)
blanchet@33192
  2397
                         (depth + 1) polar t)
blanchet@33192
  2398
      in
blanchet@33192
  2399
        case t of
blanchet@33192
  2400
          Const (s0 as @{const_name all}, T0) $ Abs (s1, T1, t1) =>
blanchet@33192
  2401
          do_quantifier s0 T0 s1 T1 t1
blanchet@33192
  2402
        | @{const "==>"} $ t1 $ t2 =>
blanchet@33192
  2403
          @{const "==>"} $ aux ss Ts js depth (flip_polarity polar) t1
blanchet@33192
  2404
          $ aux ss Ts js depth polar t2
blanchet@33192
  2405
        | @{const Pure.conjunction} $ t1 $ t2 =>
blanchet@33192
  2406
          @{const Pure.conjunction} $ aux ss Ts js depth polar t1
blanchet@33192
  2407
          $ aux ss Ts js depth polar t2
blanchet@33192
  2408
        | @{const Trueprop} $ t1 =>
blanchet@33192
  2409
          @{const Trueprop} $ aux ss Ts js depth polar t1
blanchet@33192
  2410
        | @{const Not} $ t1 =>
blanchet@33192
  2411
          @{const Not} $ aux ss Ts js depth (flip_polarity polar) t1
blanchet@33192
  2412
        | Const (s0 as @{const_name All}, T0) $ Abs (s1, T1, t1) =>
blanchet@33192
  2413
          do_quantifier s0 T0 s1 T1 t1
blanchet@33192
  2414
        | Const (s0 as @{const_name Ex}, T0) $ Abs (s1, T1, t1) =>
blanchet@33192
  2415
          do_quantifier s0 T0 s1 T1 t1
blanchet@33192
  2416
        | @{const "op &"} $ t1 $ t2 =>
blanchet@33192
  2417
          @{const "op &"} $ aux ss Ts js depth polar t1
blanchet@33192
  2418
          $ aux ss Ts js depth polar t2
blanchet@33192
  2419
        | @{const "op |"} $ t1 $ t2 =>
blanchet@33192
  2420
          @{const "op |"} $ aux ss Ts js depth polar t1
blanchet@33192
  2421
          $ aux ss Ts js depth polar t2
blanchet@33192
  2422
        | @{const "op -->"} $ t1 $ t2 =>
blanchet@33192
  2423
          @{const "op -->"} $ aux ss Ts js depth (flip_polarity polar) t1
blanchet@33192
  2424
          $ aux ss Ts js depth polar t2
blanchet@33192
  2425
        | (t0 as Const (@{const_name Let}, T0)) $ t1 $ t2 =>
blanchet@33192
  2426
          t0 $ t1 $ aux ss Ts js depth polar t2
blanchet@33192
  2427
        | Const (x as (s, T)) =>
blanchet@33192
  2428
          if is_inductive_pred ext_ctxt x
blanchet@33192
  2429
             andalso not (is_well_founded_inductive_pred ext_ctxt x) then
blanchet@33192
  2430
            let
blanchet@33192
  2431
              val gfp = (fixpoint_kind_of_const thy def_table x = Gfp)
blanchet@33192
  2432
              val (pref, connective, set_oper) =
blanchet@33192
  2433
                if gfp then
blanchet@33192
  2434
                  (lbfp_prefix,
blanchet@33192
  2435
                   @{const "op |"},
blanchet@33192
  2436
                   @{const_name upper_semilattice_fun_inst.sup_fun})
blanchet@33192
  2437
                else
blanchet@33192
  2438
                  (ubfp_prefix,
blanchet@33192
  2439
                   @{const "op &"},
blanchet@33192
  2440
                   @{const_name lower_semilattice_fun_inst.inf_fun})
blanchet@33192
  2441
              (* unit -> term *)
blanchet@33192
  2442
              fun pos () = unrolled_inductive_pred_const ext_ctxt gfp x
blanchet@33192
  2443
                           |> aux ss Ts js depth polar
blanchet@33192
  2444
              fun neg () = Const (pref ^ s, T)
blanchet@33192
  2445
            in
blanchet@33192
  2446
              (case polar |> gfp ? flip_polarity of
blanchet@33192
  2447
                 Pos => pos ()
blanchet@33192
  2448
               | Neg => neg ()
blanchet@33192
  2449
               | Neut =>
blanchet@33192
  2450
                 if is_fun_type T then
blanchet@33192
  2451
                   let
blanchet@33192
  2452
                     val ((trunk_arg_Ts, rump_arg_T), body_T) =
blanchet@33192
  2453
                       T |> strip_type |>> split_last
blanchet@33192
  2454
                     val set_T = rump_arg_T --> body_T
blanchet@33192
  2455
                     (* (unit -> term) -> term *)
blanchet@33192
  2456
                     fun app f =
blanchet@33192
  2457
                       list_comb (f (),
blanchet@33192
  2458
                                  map Bound (length trunk_arg_Ts - 1 downto 0))
blanchet@33192
  2459
                   in
blanchet@33192
  2460
                     List.foldl absdummy
blanchet@33192
  2461
                                (Const (set_oper, [set_T, set_T] ---> set_T)
blanchet@33192
  2462
                                        $ app pos $ app neg) trunk_arg_Ts
blanchet@33192
  2463
                   end
blanchet@33192
  2464
                 else
blanchet@33192
  2465
                   connective $ pos () $ neg ())
blanchet@33192
  2466
            end
blanchet@33192
  2467
          else
blanchet@33192
  2468
            Const x
blanchet@33192
  2469
        | t1 $ t2 =>
blanchet@33192
  2470
          betapply (aux ss Ts [] (skolem_depth + 1) polar t1,
blanchet@33192
  2471
                    aux ss Ts [] depth Neut t2)
blanchet@33192
  2472
        | Abs (s, T, t1) => Abs (s, T, aux ss Ts (incrs js) depth polar t1)
blanchet@33192
  2473
        | _ => t
blanchet@33192
  2474
      end
blanchet@33192
  2475
  in aux [] [] [] 0 Pos end
blanchet@33192
  2476
blanchet@33192
  2477
(* extended_context -> styp -> (int * term option) list *)
blanchet@33192
  2478
fun static_args_in_term ({ersatz_table, ...} : extended_context) x t =
blanchet@33192
  2479
  let
blanchet@33192
  2480
    (* term -> term list -> term list -> term list list *)
blanchet@33192
  2481
    fun fun_calls (Abs (_, _, t)) _ = fun_calls t []
blanchet@33192
  2482
      | fun_calls (t1 $ t2) args = fun_calls t2 [] #> fun_calls t1 (t2 :: args)
blanchet@33192
  2483
      | fun_calls t args =
blanchet@33192
  2484
        (case t of
blanchet@33192
  2485
           Const (x' as (s', T')) =>
blanchet@33192
  2486
           x = x' orelse (case AList.lookup (op =) ersatz_table s' of
blanchet@33192
  2487
                            SOME s'' => x = (s'', T')
blanchet@33192
  2488
                          | NONE => false)
blanchet@33192
  2489
         | _ => false) ? cons args
blanchet@33192
  2490
    (* term list list -> term list list -> term list -> term list list *)
blanchet@33192
  2491
    fun call_sets [] [] vs = [vs]
blanchet@33192
  2492
      | call_sets [] uss vs = vs :: call_sets uss [] []
blanchet@33192
  2493
      | call_sets ([] :: _) _ _ = []
blanchet@33192
  2494
      | call_sets ((t :: ts) :: tss) uss vs =
blanchet@33192
  2495
        OrdList.insert TermOrd.term_ord t vs |> call_sets tss (ts :: uss)
blanchet@33192
  2496
    val sets = call_sets (fun_calls t [] []) [] []
blanchet@33192
  2497
    val indexed_sets = sets ~~ (index_seq 0 (length sets))
blanchet@33192
  2498
  in
blanchet@33192
  2499
    fold_rev (fn (set, j) =>
blanchet@33192
  2500
                 case set of
blanchet@33192
  2501
                   [Var _] => AList.lookup (op =) indexed_sets set = SOME j
blanchet@33192
  2502
                              ? cons (j, NONE)
blanchet@33192
  2503
                 | [t as Const _] => cons (j, SOME t)
blanchet@33192
  2504
                 | [t as Free _] => cons (j, SOME t)
blanchet@33192
  2505
                 | _ => I) indexed_sets []
blanchet@33192
  2506
  end
blanchet@33192
  2507
(* extended_context -> styp -> term list -> (int * term option) list *)
blanchet@33192
  2508
fun static_args_in_terms ext_ctxt x =
blanchet@33192
  2509
  map (static_args_in_term ext_ctxt x)
blanchet@33192
  2510
  #> fold1 (OrdList.inter (prod_ord int_ord (option_ord TermOrd.term_ord)))
blanchet@33192
  2511
blanchet@33192
  2512
(* term -> term list *)
blanchet@33192
  2513
fun params_in_equation (@{const "==>"} $ _ $ t2) = params_in_equation t2
blanchet@33192
  2514
  | params_in_equation (@{const Trueprop} $ t1) = params_in_equation t1
blanchet@33192
  2515
  | params_in_equation (Const (@{const_name "op ="}, _) $ t1 $ _) =
blanchet@33192
  2516
    snd (strip_comb t1)
blanchet@33192
  2517
  | params_in_equation _ = []
blanchet@33192
  2518
blanchet@33192
  2519
(* styp -> styp -> int list -> term list -> term list -> term -> term *)
blanchet@33192
  2520
fun specialize_fun_axiom x x' fixed_js fixed_args extra_args t =
blanchet@33192
  2521
  let
blanchet@33192
  2522
    val k = fold Integer.max (map maxidx_of_term (fixed_args @ extra_args)) 0
blanchet@33192
  2523
            + 1
blanchet@33192
  2524
    val t = map_aterms (fn Var ((s, i), T) => Var ((s, k + i), T) | t' => t') t
blanchet@33192
  2525
    val fixed_params = filter_indices fixed_js (params_in_equation t)
blanchet@33192
  2526
    (* term list -> term -> term *)
blanchet@33192
  2527
    fun aux args (Abs (s, T, t)) = list_comb (Abs (s, T, aux [] t), args)
blanchet@33192
  2528
      | aux args (t1 $ t2) = aux (aux [] t2 :: args) t1
blanchet@33192
  2529
      | aux args t =
blanchet@33192
  2530
        if t = Const x then
blanchet@33192
  2531
          list_comb (Const x', extra_args @ filter_out_indices fixed_js args)
blanchet@33192
  2532
        else
blanchet@33192
  2533
          let val j = find_index (equal t) fixed_params in
blanchet@33192
  2534
            list_comb (if j >= 0 then nth fixed_args j else t, args)
blanchet@33192
  2535
          end
blanchet@33192
  2536
  in aux [] t end
blanchet@33192
  2537
blanchet@33192
  2538
(* typ list -> term -> bool *)
blanchet@33192
  2539
fun is_eligible_arg Ts t =
blanchet@33192
  2540
  let val bad_Ts = map snd (Term.add_vars t []) @ map (nth Ts) (loose_bnos t) in
blanchet@33192
  2541
    null bad_Ts
blanchet@33192
  2542
    orelse (is_higher_order_type (fastype_of1 (Ts, t))
blanchet@33192
  2543
            andalso forall (not o is_higher_order_type) bad_Ts)
blanchet@33192
  2544
  end
blanchet@33192
  2545
blanchet@33192
  2546
(* (int * term option) list -> (int * term) list -> int list *)
blanchet@33192
  2547
fun overlapping_indices [] _ = []
blanchet@33192
  2548
  | overlapping_indices _ [] = []
blanchet@33192
  2549
  | overlapping_indices (ps1 as (j1, t1) :: ps1') (ps2 as (j2, t2) :: ps2') =
blanchet@33192
  2550
    if j1 < j2 then overlapping_indices ps1' ps2
blanchet@33192
  2551
    else if j1 > j2 then overlapping_indices ps1 ps2'
blanchet@33192
  2552
    else overlapping_indices ps1' ps2' |> the_default t2 t1 = t2 ? cons j1
blanchet@33192
  2553
blanchet@33192
  2554
val special_depth = 20
blanchet@33192
  2555
blanchet@33192
  2556
(* extended_context -> int -> term -> term *)
blanchet@33192
  2557
fun specialize_consts_in_term (ext_ctxt as {thy, specialize, simp_table,
blanchet@33192
  2558
                                            special_funs, ...}) depth t =
blanchet@33192
  2559
  if not specialize orelse depth > special_depth then
blanchet@33192
  2560
    t
blanchet@33192
  2561
  else
blanchet@33192
  2562
    let
blanchet@33192
  2563
      val blacklist = if depth = 0 then []
blanchet@33192
  2564
                      else case term_under_def t of Const x => [x] | _ => []
blanchet@33192
  2565
      (* term list -> typ list -> term -> term *)
blanchet@33192
  2566
      fun aux args Ts (Const (x as (s, T))) =
blanchet@33192
  2567
          ((if not (x mem blacklist) andalso not (null args)
blanchet@33192
  2568
               andalso not (String.isPrefix special_prefix s)
blanchet@33192
  2569
               andalso is_equational_fun ext_ctxt x then
blanchet@33192
  2570
              let
blanchet@33192
  2571
                val eligible_args = filter (is_eligible_arg Ts o snd)
blanchet@33192
  2572
                                           (index_seq 0 (length args) ~~ args)
blanchet@33192
  2573
                val _ = not (null eligible_args) orelse raise SAME ()
blanchet@33192
  2574
                val old_axs = equational_fun_axioms ext_ctxt x
blanchet@33192
  2575
                              |> map (destroy_existential_equalities thy)
blanchet@33192
  2576
                val static_params = static_args_in_terms ext_ctxt x old_axs
blanchet@33192
  2577
                val fixed_js = overlapping_indices static_params eligible_args
blanchet@33192
  2578
                val _ = not (null fixed_js) orelse raise SAME ()
blanchet@33192
  2579
                val fixed_args = filter_indices fixed_js args
blanchet@33192
  2580
                val vars = fold Term.add_vars fixed_args []
blanchet@33192
  2581
                           |> sort (TermOrd.fast_indexname_ord o pairself fst)
blanchet@33192
  2582
                val bound_js = fold (fn t => fn js => add_loose_bnos (t, 0, js))
blanchet@33192
  2583
                                    fixed_args []
blanchet@33192
  2584
                               |> sort int_ord
blanchet@33192
  2585
                val live_args = filter_out_indices fixed_js args
blanchet@33192
  2586
                val extra_args = map Var vars @ map Bound bound_js @ live_args
blanchet@33192
  2587
                val extra_Ts = map snd vars @ filter_indices bound_js Ts
blanchet@33192
  2588
                val k = maxidx_of_term t + 1
blanchet@33192
  2589
                (* int -> term *)
blanchet@33192
  2590
                fun var_for_bound_no j =
blanchet@33192
  2591
                  Var ((bound_var_prefix ^
blanchet@33192
  2592
                        nat_subscript (find_index (equal j) bound_js + 1), k),
blanchet@33192
  2593
                       nth Ts j)
blanchet@33192
  2594
                val fixed_args_in_axiom =
blanchet@33192
  2595
                  map (curry subst_bounds
blanchet@33192
  2596
                             (map var_for_bound_no (index_seq 0 (length Ts))))
blanchet@33192
  2597
                      fixed_args
blanchet@33192
  2598
              in
blanchet@33192
  2599
                case AList.lookup (op =) (!special_funs)
blanchet@33192
  2600
                                  (x, fixed_js, fixed_args_in_axiom) of
blanchet@33192
  2601
                  SOME x' => list_comb (Const x', extra_args)
blanchet@33192
  2602
                | NONE =>
blanchet@33192
  2603
                  let
blanchet@33192
  2604
                    val extra_args_in_axiom =
blanchet@33192
  2605
                      map Var vars @ map var_for_bound_no bound_js
blanchet@33192
  2606
                    val x' as (s', _) =
blanchet@33192
  2607
                      (special_prefix_for (length (!special_funs) + 1) ^ s,
blanchet@33192
  2608
                       extra_Ts @ filter_out_indices fixed_js (binder_types T)
blanchet@33192
  2609
                       ---> body_type T)
blanchet@33192
  2610
                    val new_axs =
blanchet@33192
  2611
                      map (specialize_fun_axiom x x' fixed_js
blanchet@33192
  2612
                               fixed_args_in_axiom extra_args_in_axiom) old_axs
blanchet@33192
  2613
                    val _ =
blanchet@33192
  2614
                      Unsynchronized.change special_funs
blanchet@33192
  2615
                          (cons ((x, fixed_js, fixed_args_in_axiom), x'))
blanchet@33192
  2616
                    val _ = add_simps simp_table s' new_axs
blanchet@33192
  2617
                  in list_comb (Const x', extra_args) end
blanchet@33192
  2618
              end
blanchet@33192
  2619
            else
blanchet@33192
  2620
              raise SAME ())
blanchet@33192
  2621
           handle SAME () => list_comb (Const x, args))
blanchet@33192
  2622
        | aux args Ts (Abs (s, T, t)) =
blanchet@33192
  2623
          list_comb (Abs (s, T, aux [] (T :: Ts) t), args)
blanchet@33192
  2624
        | aux args Ts (t1 $ t2) = aux (aux [] Ts t2 :: args) Ts t1
blanchet@33192
  2625
        | aux args _ t = list_comb (t, args)
blanchet@33192
  2626
    in aux [] [] t end
blanchet@33192
  2627
blanchet@33192
  2628
(* theory -> term -> int Termtab.tab -> int Termtab.tab *)
blanchet@33192
  2629
fun add_to_uncurry_table thy t =
blanchet@33192
  2630
  let
blanchet@33192
  2631
    (* term -> term list -> int Termtab.tab -> int Termtab.tab *)
blanchet@33192
  2632
    fun aux (t1 $ t2) args table =
blanchet@33192
  2633
        let val table = aux t2 [] table in aux t1 (t2 :: args) table end
blanchet@33192
  2634
      | aux (Abs (_, _, t')) _ table = aux t' [] table
blanchet@33192
  2635
      | aux (t as Const (x as (s, _))) args table =
blanchet@33192
  2636
        if is_built_in_const false x orelse is_constr_like thy x orelse is_sel s
blanchet@33192
  2637
           orelse s = @{const_name Sigma} then
blanchet@33192
  2638
          table
blanchet@33192
  2639
        else
blanchet@33192
  2640
          Termtab.map_default (t, 65536) (curry Int.min (length args)) table
blanchet@33192
  2641
      | aux _ _ table = table
blanchet@33192
  2642
  in aux t [] end
blanchet@33192
  2643
blanchet@33192
  2644
(* int Termtab.tab term -> term *)
blanchet@33192
  2645
fun uncurry_term table t =
blanchet@33192
  2646
  let
blanchet@33192
  2647
    (* term -> term list -> term *)
blanchet@33192
  2648
    fun aux (t1 $ t2) args = aux t1 (aux t2 [] :: args)
blanchet@33192
  2649
      | aux (Abs (s, T, t')) args = betapplys (Abs (s, T, aux t' []), args)
blanchet@33192
  2650
      | aux (t as Const (s, T)) args =
blanchet@33192
  2651
        (case Termtab.lookup table t of
blanchet@33192
  2652
           SOME n =>
blanchet@33192
  2653
           if n >= 2 then
blanchet@33192
  2654
             let
blanchet@33192
  2655
               val (arg_Ts, rest_T) = strip_n_binders n T
blanchet@33192
  2656
               val j =
blanchet@33192
  2657
                 if hd arg_Ts = @{typ bisim_iterator}
blanchet@33192
  2658
                    orelse is_fp_iterator_type (hd arg_Ts) then
blanchet@33192
  2659
                   1
blanchet@33192
  2660
                 else case find_index (not_equal bool_T) arg_Ts of
blanchet@33192
  2661
                   ~1 => n
blanchet@33192
  2662
                 | j => j
blanchet@33192
  2663
               val ((before_args, tuple_args), after_args) =
blanchet@33192
  2664
                 args |> chop n |>> chop j
blanchet@33192
  2665
               val ((before_arg_Ts, tuple_arg_Ts), rest_T) =
blanchet@33192
  2666
                 T |> strip_n_binders n |>> chop j
blanchet@33192
  2667
               val tuple_T = HOLogic.mk_tupleT tuple_arg_Ts
blanchet@33192
  2668
             in
blanchet@33192
  2669
               if n - j < 2 then
blanchet@33192
  2670
                 betapplys (t, args)
blanchet@33192
  2671
               else
blanchet@33192
  2672
                 betapplys (Const (uncurry_prefix_for (n - j) j ^ s,
blanchet@33192
  2673
                                   before_arg_Ts ---> tuple_T --> rest_T),
blanchet@33192
  2674
                            before_args @ [mk_flat_tuple tuple_T tuple_args] @
blanchet@33192
  2675
                            after_args)
blanchet@33192
  2676
             end
blanchet@33192
  2677
           else
blanchet@33192
  2678
             betapplys (t, args)
blanchet@33192
  2679
         | NONE => betapplys (t, args))
blanchet@33192
  2680
      | aux t args = betapplys (t, args)
blanchet@33192
  2681
  in aux t [] end
blanchet@33192
  2682
blanchet@33192
  2683
(* (term -> term) -> int -> term -> term *)
blanchet@33192
  2684
fun coerce_bound_no f j t =
blanchet@33192
  2685
  case t of
blanchet@33192
  2686
    t1 $ t2 => coerce_bound_no f j t1 $ coerce_bound_no f j t2
blanchet@33192
  2687
  | Abs (s, T, t') => Abs (s, T, coerce_bound_no f (j + 1) t')
blanchet@33192
  2688
  | Bound j' => if j' = j then f t else t
blanchet@33192
  2689
  | _ => t
blanchet@33192
  2690
blanchet@33192
  2691
(* extended_context -> bool -> term -> term *)
blanchet@33192
  2692
fun box_fun_and_pair_in_term (ext_ctxt as {thy, fast_descrs, ...}) def orig_t =
blanchet@33192
  2693
  let
blanchet@33192
  2694
    (* typ -> typ *)
blanchet@33192
  2695
    fun box_relational_operator_type (Type ("fun", Ts)) =
blanchet@33192
  2696
        Type ("fun", map box_relational_operator_type Ts)
blanchet@33192
  2697
      | box_relational_operator_type (Type ("*", Ts)) =
blanchet@33192
  2698
        Type ("*", map (box_type ext_ctxt InPair) Ts)
blanchet@33192
  2699
      | box_relational_operator_type T = T
blanchet@33192
  2700
    (* typ -> typ -> term -> term *)
blanchet@33192
  2701
    fun coerce_bound_0_in_term new_T old_T =
blanchet@33192
  2702
      old_T <> new_T ? coerce_bound_no (coerce_term [new_T] old_T new_T) 0
blanchet@33192
  2703
    (* typ list -> typ -> term -> term *)
blanchet@33192
  2704
    and coerce_term Ts new_T old_T t =
blanchet@33192
  2705
      if old_T = new_T then
blanchet@33192
  2706
        t
blanchet@33192
  2707
      else
blanchet@33192
  2708
        case (new_T, old_T) of
blanchet@33192
  2709
          (Type (new_s, new_Ts as [new_T1, new_T2]),
blanchet@33192
  2710
           Type ("fun", [old_T1, old_T2])) =>
blanchet@33192
  2711
          (case eta_expand Ts t 1 of
blanchet@33192
  2712
             Abs (s, _, t') =>
blanchet@33192
  2713
             Abs (s, new_T1,
blanchet@33192
  2714
                  t' |> coerce_bound_0_in_term new_T1 old_T1
blanchet@33192
  2715
                     |> coerce_term (new_T1 :: Ts) new_T2 old_T2)
blanchet@33192
  2716
             |> Envir.eta_contract
blanchet@33192
  2717
             |> new_s <> "fun"
blanchet@33192
  2718
                ? construct_value thy (@{const_name FunBox},
blanchet@33192
  2719
                                       Type ("fun", new_Ts) --> new_T) o single
blanchet@33224
  2720
           | t' => raise TERM ("Nitpick_HOL.box_fun_and_pair_in_term.\
blanchet@33192
  2721
                               \coerce_term", [t']))
blanchet@33192
  2722
        | (Type (new_s, new_Ts as [new_T1, new_T2]),
blanchet@33192
  2723
           Type (old_s, old_Ts as [old_T1, old_T2])) =>
blanchet@33192
  2724
          if old_s mem [@{type_name fun_box}, @{type_name pair_box}, "*"] then
blanchet@33571
  2725
            case constr_expand ext_ctxt old_T t of
blanchet@33192
  2726
              Const (@{const_name FunBox}, _) $ t1 =>
blanchet@33192
  2727
              if new_s = "fun" then
blanchet@33192
  2728
                coerce_term Ts new_T (Type ("fun", old_Ts)) t1
blanchet@33192
  2729
              else
blanchet@33192
  2730
                construct_value thy
blanchet@33192
  2731
                    (@{const_name FunBox}, Type ("fun", new_Ts) --> new_T)
blanchet@33192
  2732
                     [coerce_term Ts (Type ("fun", new_Ts))
blanchet@33192
  2733
                                  (Type ("fun", old_Ts)) t1]
blanchet@33192
  2734
            | Const _ $ t1 $ t2 =>
blanchet@33192
  2735
              construct_value thy
blanchet@33192
  2736
                  (if new_s = "*" then @{const_name Pair}
blanchet@33192
  2737
                   else @{const_name PairBox}, new_Ts ---> new_T)
blanchet@33192
  2738
                  [coerce_term Ts new_T1 old_T1 t1,
blanchet@33192
  2739
                   coerce_term Ts new_T2 old_T2 t2]
blanchet@33224
  2740
            | t' => raise TERM ("Nitpick_HOL.box_fun_and_pair_in_term.\
blanchet@33192
  2741
                                \coerce_term", [t'])
blanchet@33192
  2742
          else
blanchet@33192
  2743
            raise TYPE ("coerce_term", [new_T, old_T], [t])
blanchet@33192
  2744
        | _ => raise TYPE ("coerce_term", [new_T, old_T], [t])
blanchet@33192
  2745
    (* indexname * typ -> typ * term -> typ option list -> typ option list *)
blanchet@33192
  2746
    fun add_boxed_types_for_var (z as (_, T)) (T', t') =
blanchet@33192
  2747
      case t' of
blanchet@33192
  2748
        Var z' => z' = z ? insert (op =) T'
blanchet@33192
  2749
      | Const (@{const_name Pair}, _) $ t1 $ t2 =>
blanchet@33192
  2750
        (case T' of
blanchet@33192
  2751
           Type (_, [T1, T2]) =>
blanchet@33192
  2752
           fold (add_boxed_types_for_var z) [(T1, t1), (T2, t2)]
blanchet@33224
  2753
         | _ => raise TYPE ("Nitpick_HOL.box_fun_and_pair_in_term.\
blanchet@33192
  2754
                            \add_boxed_types_for_var", [T'], []))
blanchet@33192
  2755
      | _ => exists_subterm (equal (Var z)) t' ? insert (op =) T
blanchet@33192
  2756
    (* typ list -> typ list -> term -> indexname * typ -> typ *)
blanchet@33192
  2757
    fun box_var_in_def new_Ts old_Ts t (z as (_, T)) =
blanchet@33192
  2758
      case t of
blanchet@33192
  2759
        @{const Trueprop} $ t1 => box_var_in_def new_Ts old_Ts t1 z
blanchet@33192
  2760
      | Const (s0, _) $ t1 $ _ =>
blanchet@33192
  2761
        if s0 mem [@{const_name "=="}, @{const_name "op ="}] then
blanchet@33192
  2762
          let
blanchet@33192
  2763
            val (t', args) = strip_comb t1
blanchet@33192
  2764
            val T' = fastype_of1 (new_Ts, do_term new_Ts old_Ts Neut t')
blanchet@33192
  2765
          in
blanchet@33192
  2766
            case fold (add_boxed_types_for_var z)
blanchet@33192
  2767
                      (fst (strip_n_binders (length args) T') ~~ args) [] of
blanchet@33192
  2768
              [T''] => T''
blanchet@33192
  2769
            | _ => T
blanchet@33192
  2770
          end
blanchet@33192
  2771
        else
blanchet@33192
  2772
          T
blanchet@33192
  2773
      | _ => T
blanchet@33192
  2774
    (* typ list -> typ list -> polarity -> string -> typ -> string -> typ
blanchet@33192
  2775
       -> term -> term *)
blanchet@33192
  2776
    and do_quantifier new_Ts old_Ts polar quant_s quant_T abs_s abs_T t =
blanchet@33192
  2777
      let
blanchet@33192
  2778
        val abs_T' =
blanchet@33192
  2779
          if polar = Neut orelse is_positive_existential polar quant_s then
blanchet@33192
  2780
            box_type ext_ctxt InFunLHS abs_T
blanchet@33192
  2781
          else
blanchet@33192
  2782
            abs_T
blanchet@33192
  2783
        val body_T = body_type quant_T
blanchet@33192
  2784
      in
blanchet@33192
  2785
        Const (quant_s, (abs_T' --> body_T) --> body_T)
blanchet@33192
  2786
        $ Abs (abs_s, abs_T',
blanchet@33192
  2787
               t |> do_term (abs_T' :: new_Ts) (abs_T :: old_Ts) polar)
blanchet@33192
  2788
      end
blanchet@33192
  2789
    (* typ list -> typ list -> string -> typ -> term -> term -> term *)
blanchet@33192
  2790
    and do_equals new_Ts old_Ts s0 T0 t1 t2 =
blanchet@33192
  2791
      let
blanchet@33192
  2792
        val (t1, t2) = pairself (do_term new_Ts old_Ts Neut) (t1, t2)
blanchet@33192
  2793
        val (T1, T2) = pairself (curry fastype_of1 new_Ts) (t1, t2)
blanchet@33192
  2794
        val T = [T1, T2] |> sort TermOrd.typ_ord |> List.last
blanchet@33192
  2795
      in
blanchet@33192
  2796
        list_comb (Const (s0, [T, T] ---> body_type T0),
blanchet@33192
  2797
                   map2 (coerce_term new_Ts T) [T1, T2] [t1, t2])
blanchet@33192
  2798
      end
blanchet@33192
  2799
    (* string -> typ -> term *)
blanchet@33192
  2800
    and do_description_operator s T =
blanchet@33192
  2801
      let val T1 = box_type ext_ctxt InFunLHS (range_type T) in
blanchet@33192
  2802
        Const (s, (T1 --> bool_T) --> T1)
blanchet@33192
  2803
      end
blanchet@33192
  2804
    (* typ list -> typ list -> polarity -> term -> term *)
blanchet@33192
  2805
    and do_term new_Ts old_Ts polar t =
blanchet@33192
  2806
      case t of
blanchet@33192
  2807
        Const (s0 as @{const_name all}, T0) $ Abs (s1, T1, t1) =>
blanchet@33192
  2808
        do_quantifier new_Ts old_Ts polar s0 T0 s1 T1 t1
blanchet@33192
  2809
      | Const (s0 as @{const_name "=="}, T0) $ t1 $ t2 =>
blanchet@33192
  2810
        do_equals new_Ts old_Ts s0 T0 t1 t2
blanchet@33192
  2811
      | @{const "==>"} $ t1 $ t2 =>
blanchet@33192
  2812
        @{const "==>"} $ do_term new_Ts old_Ts (flip_polarity polar) t1
blanchet@33192
  2813
        $ do_term new_Ts old_Ts polar t2
blanchet@33192
  2814
      | @{const Pure.conjunction} $ t1 $ t2 =>
blanchet@33192
  2815
        @{const Pure.conjunction} $ do_term new_Ts old_Ts polar t1
blanchet@33192
  2816
        $ do_term new_Ts old_Ts polar t2
blanchet@33192
  2817
      | @{const Trueprop} $ t1 =>
blanchet@33192
  2818
        @{const Trueprop} $ do_term new_Ts old_Ts polar t1
blanchet@33192
  2819
      | @{const Not} $ t1 =>
blanchet@33192
  2820
        @{const Not} $ do_term new_Ts old_Ts (flip_polarity polar) t1
blanchet@33192
  2821
      | Const (s0 as @{const_name All}, T0) $ Abs (s1, T1, t1) =>
blanchet@33192
  2822
        do_quantifier new_Ts old_Ts polar s0 T0 s1 T1 t1
blanchet@33192
  2823
      | Const (s0 as @{const_name Ex}, T0) $ Abs (s1, T1, t1) =>
blanchet@33192
  2824
        do_quantifier new_Ts old_Ts polar s0 T0 s1 T1 t1
blanchet@33192
  2825
      | Const (s0 as @{const_name "op ="}, T0) $ t1 $ t2 =>
blanchet@33192
  2826
        do_equals new_Ts old_Ts s0 T0 t1 t2
blanchet@33192
  2827
      | @{const "op &"} $ t1 $ t2 =>
blanchet@33192
  2828
        @{const "op &"} $ do_term new_Ts old_Ts polar t1
blanchet@33192
  2829
        $ do_term new_Ts old_Ts polar t2
blanchet@33192
  2830
      | @{const "op |"} $ t1 $ t2 =>
blanchet@33192
  2831
        @{const "op |"} $ do_term new_Ts old_Ts polar t1
blanchet@33192
  2832
        $ do_term new_Ts old_Ts polar t2
blanchet@33192
  2833
      | @{const "op -->"} $ t1 $ t2 =>
blanchet@33192
  2834
        @{const "op -->"} $ do_term new_Ts old_Ts (flip_polarity polar) t1
blanchet@33192
  2835
        $ do_term new_Ts old_Ts polar t2
blanchet@33192
  2836
      | Const (s as @{const_name The}, T) => do_description_operator s T
blanchet@33192
  2837
      | Const (s as @{const_name Eps}, T) => do_description_operator s T
blanchet@33192
  2838
      | Const (s as @{const_name Tha}, T) => do_description_operator s T
blanchet@33192
  2839
      | Const (x as (s, T)) =>
blanchet@33192
  2840
        Const (s, if s mem [@{const_name converse}, @{const_name trancl}] then
blanchet@33192
  2841
                    box_relational_operator_type T
blanchet@33192
  2842
                  else if is_built_in_const fast_descrs x
blanchet@33192
  2843
                          orelse s = @{const_name Sigma} then
blanchet@33192
  2844
                    T
blanchet@33192
  2845
                  else if is_constr_like thy x then
blanchet@33192
  2846
                    box_type ext_ctxt InConstr T
blanchet@33192
  2847
                  else if is_sel s orelse is_rep_fun thy x then
blanchet@33192
  2848
                    box_type ext_ctxt InSel T
blanchet@33192
  2849
                  else
blanchet@33192
  2850
                    box_type ext_ctxt InExpr T)
blanchet@33192
  2851
      | t1 $ Abs (s, T, t2') =>
blanchet@33192
  2852
        let
blanchet@33192
  2853
          val t1 = do_term new_Ts old_Ts Neut t1
blanchet@33192
  2854
          val T1 = fastype_of1 (new_Ts, t1)
blanchet@33192
  2855
          val (s1, Ts1) = dest_Type T1
blanchet@33192
  2856
          val T' = hd (snd (dest_Type (hd Ts1)))
blanchet@33192
  2857
          val t2 = Abs (s, T', do_term (T' :: new_Ts) (T :: old_Ts) Neut t2')
blanchet@33192
  2858
          val T2 = fastype_of1 (new_Ts, t2)
blanchet@33192
  2859
          val t2 = coerce_term new_Ts (hd Ts1) T2 t2
blanchet@33192
  2860
        in
blanchet@33192
  2861
          betapply (if s1 = "fun" then
blanchet@33192
  2862
                      t1
blanchet@33192
  2863
                    else
blanchet@33192
  2864
                      select_nth_constr_arg thy
blanchet@33192
  2865
                          (@{const_name FunBox}, Type ("fun", Ts1) --> T1) t1 0
blanchet@33192
  2866
                          (Type ("fun", Ts1)), t2)
blanchet@33192
  2867
        end
blanchet@33192
  2868
      | t1 $ t2 =>
blanchet@33192
  2869
        let
blanchet@33192
  2870
          val t1 = do_term new_Ts old_Ts Neut t1
blanchet@33192
  2871
          val T1 = fastype_of1 (new_Ts, t1)
blanchet@33192
  2872
          val (s1, Ts1) = dest_Type T1
blanchet@33192
  2873
          val t2 = do_term new_Ts old_Ts Neut t2
blanchet@33192
  2874
          val T2 = fastype_of1 (new_Ts, t2)
blanchet@33192
  2875
          val t2 = coerce_term new_Ts (hd Ts1) T2 t2
blanchet@33192
  2876
        in
blanchet@33192
  2877
          betapply (if s1 = "fun" then
blanchet@33192
  2878
                      t1
blanchet@33192
  2879
                    else
blanchet@33192
  2880
                      select_nth_constr_arg thy
blanchet@33192
  2881
                          (@{const_name FunBox}, Type ("fun", Ts1) --> T1) t1 0
blanchet@33192
  2882
                          (Type ("fun", Ts1)), t2)
blanchet@33192
  2883
        end
blanchet@33192
  2884
      | Free (s, T) => Free (s, box_type ext_ctxt InExpr T)
blanchet@33192
  2885
      | Var (z as (x, T)) =>
blanchet@33192
  2886
        Var (x, if def then box_var_in_def new_Ts old_Ts orig_t z
blanchet@33192
  2887
                else box_type ext_ctxt InExpr T)
blanchet@33192
  2888
      | Bound _ => t
blanchet@33192
  2889
      | Abs (s, T, t') =>
blanchet@33192
  2890
        Abs (s, T, do_term (T :: new_Ts) (T :: old_Ts) Neut t')
blanchet@33192
  2891
  in do_term [] [] Pos orig_t end
blanchet@33192
  2892
blanchet@33192
  2893
(* int -> term -> term *)
blanchet@33192
  2894
fun eval_axiom_for_term j t =
blanchet@33192
  2895
  Logic.mk_equals (Const (eval_prefix ^ string_of_int j, fastype_of t), t)
blanchet@33192
  2896
blanchet@33192
  2897
(* extended_context -> styp -> bool *)
blanchet@33192
  2898
fun is_equational_fun_surely_complete ext_ctxt x =
blanchet@33192
  2899
  case raw_equational_fun_axioms ext_ctxt x of
blanchet@33192
  2900
    [@{const Trueprop} $ (Const (@{const_name "op ="}, _) $ t1 $ _)] =>
blanchet@33192
  2901
    strip_comb t1 |> snd |> forall is_Var
blanchet@33192
  2902
  | _ => false
blanchet@33192
  2903
blanchet@33192
  2904
type special = int list * term list * styp
blanchet@33192
  2905
blanchet@33192
  2906
(* styp -> special -> special -> term *)
blanchet@33192
  2907
fun special_congruence_axiom (s, T) (js1, ts1, x1) (js2, ts2, x2) =
blanchet@33192
  2908
  let
blanchet@33192
  2909
    val (bounds1, bounds2) = pairself (map Var o special_bounds) (ts1, ts2)
blanchet@33192
  2910
    val Ts = binder_types T
blanchet@33192
  2911
    val max_j = fold (fold (curry Int.max)) [js1, js2] ~1
blanchet@33192
  2912
    val (eqs, (args1, args2)) =
blanchet@33192
  2913
      fold (fn j => case pairself (fn ps => AList.lookup (op =) ps j)
blanchet@33192
  2914
                                  (js1 ~~ ts1, js2 ~~ ts2) of
blanchet@33192
  2915
                      (SOME t1, SOME t2) => apfst (cons (t1, t2))
blanchet@33192
  2916
                    | (SOME t1, NONE) => apsnd (apsnd (cons t1))
blanchet@33192
  2917
                    | (NONE, SOME t2) => apsnd (apfst (cons t2))
blanchet@33192
  2918
                    | (NONE, NONE) =>
blanchet@33192
  2919
                      let val v = Var ((cong_var_prefix ^ nat_subscript j, 0),
blanchet@33192
  2920
                                       nth Ts j) in
blanchet@33192
  2921
                        apsnd (pairself (cons v))
blanchet@33192
  2922
                      end) (max_j downto 0) ([], ([], []))
blanchet@33192
  2923
  in
blanchet@33192
  2924
    Logic.list_implies (eqs |> filter_out (op =) |> distinct (op =)
blanchet@33192
  2925
                            |> map Logic.mk_equals,
blanchet@33192
  2926
                        Logic.mk_equals (list_comb (Const x1, bounds1 @ args1),
blanchet@33192
  2927
                                         list_comb (Const x2, bounds2 @ args2)))
blanchet@33192
  2928
    |> Refute.close_form
blanchet@33192
  2929
  end
blanchet@33192
  2930
blanchet@33192
  2931
(* extended_context -> styp list -> term list *)
blanchet@33192
  2932
fun special_congruence_axioms (ext_ctxt as {special_funs, ...}) xs =
blanchet@33192
  2933
  let
blanchet@33192
  2934
    val groups =
blanchet@33192
  2935
      !special_funs
blanchet@33192
  2936
      |> map (fn ((x, js, ts), x') => (x, (js, ts, x')))
blanchet@33192
  2937
      |> AList.group (op =)
blanchet@33192
  2938
      |> filter_out (is_equational_fun_surely_complete ext_ctxt o fst)
blanchet@33192
  2939
      |> map (fn (x, zs) => (x, zs |> (x mem xs) ? cons ([], [], x)))
blanchet@33192
  2940
    (* special -> int *)
blanchet@33192
  2941
    fun generality (js, _, _) = ~(length js)
blanchet@33192
  2942
    (* special -> special -> bool *)
blanchet@33192
  2943
    fun is_more_specific (j1, t1, x1) (j2, t2, x2) =
blanchet@33192
  2944
      x1 <> x2 andalso OrdList.subset (prod_ord int_ord TermOrd.term_ord)
blanchet@33192
  2945
                                      (j2 ~~ t2, j1 ~~ t1)
blanchet@33192
  2946
    (* styp -> special list -> special list -> special list -> term list
blanchet@33192
  2947
       -> term list *)
blanchet@33192
  2948
    fun do_pass_1 _ [] [_] [_] = I
blanchet@33192
  2949
      | do_pass_1 x skipped _ [] = do_pass_2 x skipped
blanchet@33192
  2950
      | do_pass_1 x skipped all (z :: zs) =
blanchet@33192
  2951
        case filter (is_more_specific z) all
blanchet@33192
  2952
             |> sort (int_ord o pairself generality) of
blanchet@33192
  2953
          [] => do_pass_1 x (z :: skipped) all zs
blanchet@33192
  2954
        | (z' :: _) => cons (special_congruence_axiom x z z')
blanchet@33192
  2955
                       #> do_pass_1 x skipped all zs
blanchet@33192
  2956
    (* styp -> special list -> term list -> term list *)
blanchet@33192
  2957
    and do_pass_2 _ [] = I
blanchet@33192
  2958
      | do_pass_2 x (z :: zs) =
blanchet@33192
  2959
        fold (cons o special_congruence_axiom x z) zs #> do_pass_2 x zs
blanchet@33192
  2960
  in fold (fn (x, zs) => do_pass_1 x [] zs zs) groups [] end
blanchet@33192
  2961
blanchet@33192
  2962
(* term -> bool *)
blanchet@33192
  2963
val is_trivial_equation = the_default false o try (op aconv o Logic.dest_equals)
blanchet@33192
  2964
blanchet@33192
  2965
(* 'a Symtab.table -> 'a list *)
blanchet@33192
  2966
fun all_table_entries table = Symtab.fold (append o snd) table []
blanchet@33192
  2967
(* const_table -> string -> const_table *)
blanchet@33192
  2968
fun extra_table table s = Symtab.make [(s, all_table_entries table)]
blanchet@33192
  2969
blanchet@33192
  2970
(* extended_context -> term -> (term list * term list) * (bool * bool) *)
blanchet@33192
  2971
fun axioms_for_term
blanchet@33192
  2972
        (ext_ctxt as {thy, max_bisim_depth, user_axioms, fast_descrs, evals,
blanchet@33192
  2973
                      def_table, nondef_table, user_nondefs, ...}) t =
blanchet@33192
  2974
  let
blanchet@33192
  2975
    type accumulator = styp list * (term list * term list)
blanchet@33192
  2976
    (* (term list * term list -> term list)
blanchet@33192
  2977
       -> ((term list -> term list) -> term list * term list
blanchet@33192
  2978
           -> term list * term list)
blanchet@33192
  2979
       -> int -> term -> accumulator -> accumulator *)
blanchet@33192
  2980
    fun add_axiom get app depth t (accum as (xs, axs)) =
blanchet@33192
  2981
      let
blanchet@33192
  2982
        val t = t |> unfold_defs_in_term ext_ctxt
blanchet@33192
  2983
                  |> skolemize_term_and_more ext_ctxt ~1
blanchet@33192
  2984
      in
blanchet@33192
  2985
        if is_trivial_equation t then
blanchet@33192
  2986
          accum
blanchet@33192
  2987
        else
blanchet@33192
  2988
          let val t' = t |> specialize_consts_in_term ext_ctxt depth in
blanchet@33192
  2989
            if exists (member (op aconv) (get axs)) [t, t'] then accum
blanchet@33192
  2990
            else add_axioms_for_term (depth + 1) t' (xs, app (cons t') axs)
blanchet@33192
  2991
          end
blanchet@33192
  2992
      end
blanchet@33192
  2993
    (* int -> term -> accumulator -> accumulator *)
blanchet@33192
  2994
    and add_nondef_axiom depth = add_axiom snd apsnd depth
blanchet@33192
  2995
    and add_def_axiom depth t =
blanchet@33192
  2996
      (if head_of t = @{const "==>"} then add_nondef_axiom
blanchet@33192
  2997
       else add_axiom fst apfst) depth t
blanchet@33192
  2998
    (* int -> term -> accumulator -> accumulator *)
blanchet@33192
  2999
    and add_axioms_for_term depth t (accum as (xs, axs)) =
blanchet@33192
  3000
      case t of
blanchet@33192
  3001
        t1 $ t2 => accum |> fold (add_axioms_for_term depth) [t1, t2]
blanchet@33192
  3002
      | Const (x as (s, T)) =>
blanchet@33192
  3003
        (if x mem xs orelse is_built_in_const fast_descrs x then
blanchet@33192
  3004
           accum
blanchet@33192
  3005
         else
blanchet@33192
  3006
           let val accum as (xs, _) = (x :: xs, axs) in
blanchet@33192
  3007
             if depth > axioms_max_depth then
blanchet@33224
  3008
               raise LIMIT ("Nitpick_HOL.axioms_for_term.add_axioms_for_term",
blanchet@33192
  3009
                            "too many nested axioms (" ^ string_of_int depth ^
blanchet@33192
  3010
                            ")")
blanchet@33192
  3011
             else if Refute.is_const_of_class thy x then
blanchet@33192
  3012
               let
blanchet@33192
  3013
                 val class = Logic.class_of_const s
blanchet@33192
  3014
                 val of_class = Logic.mk_of_class (TVar (("'a", 0), [class]),
blanchet@33192
  3015
                                                   class)
blanchet@33192
  3016
                 val ax1 = try (Refute.specialize_type thy x) of_class
blanchet@33192
  3017
                 val ax2 = Option.map (Refute.specialize_type thy x o snd)
blanchet@33192
  3018
                                      (Refute.get_classdef thy class)
blanchet@33192
  3019
               in fold (add_def_axiom depth) (map_filter I [ax1, ax2]) accum end
blanchet@33192
  3020
             else if is_constr thy x then
blanchet@33192
  3021
               accum
blanchet@33192
  3022
             else if is_equational_fun ext_ctxt x then
blanchet@33192
  3023
               fold (add_def_axiom depth) (equational_fun_axioms ext_ctxt x)
blanchet@33192
  3024
                    accum
blanchet@33192
  3025
             else if is_abs_fun thy x then
blanchet@33192
  3026
               accum |> fold (add_nondef_axiom depth)
blanchet@33197
  3027
                             (nondef_props_for_const thy false nondef_table x)
blanchet@33562
  3028
                     |> is_funky_typedef thy (range_type T)
blanchet@33562
  3029
                        ? fold (add_def_axiom depth)
blanchet@33562
  3030
                               (nondef_props_for_const thy true
blanchet@33192
  3031
                                                    (extra_table def_table s) x)
blanchet@33192
  3032
             else if is_rep_fun thy x then
blanchet@33192
  3033
               accum |> fold (add_nondef_axiom depth)
blanchet@33197
  3034
                             (nondef_props_for_const thy false nondef_table x)
blanchet@33562
  3035
                     |> is_funky_typedef thy (range_type T)
blanchet@33562
  3036
                        ? fold (add_def_axiom depth)
blanchet@33562
  3037
                               (nondef_props_for_const thy true
blanchet@33192
  3038
                                                    (extra_table def_table s) x)
blanchet@33192
  3039
                     |> add_axioms_for_term depth
blanchet@33192
  3040
                                            (Const (mate_of_rep_fun thy x))
blanchet@33192
  3041
                     |> add_def_axiom depth (inverse_axiom_for_rep_fun thy x)
blanchet@33192
  3042
             else
blanchet@33192
  3043
               accum |> user_axioms <> SOME false
blanchet@33192
  3044
                        ? fold (add_nondef_axiom depth)
blanchet@33197
  3045
                               (nondef_props_for_const thy false nondef_table x)
blanchet@33192
  3046
           end)
blanchet@33192
  3047
        |> add_axioms_for_type depth T
blanchet@33192
  3048
      | Free (_, T) => add_axioms_for_type depth T accum
blanchet@33192
  3049
      | Var (_, T) => add_axioms_for_type depth T accum
blanchet@33192
  3050
      | Bound _ => accum
blanchet@33192
  3051
      | Abs (_, T, t) => accum |> add_axioms_for_term depth t
blanchet@33192
  3052
                               |> add_axioms_for_type depth T
blanchet@33192
  3053
    (* int -> typ -> accumulator -> accumulator *)
blanchet@33192
  3054
    and add_axioms_for_type depth T =
blanchet@33192
  3055
      case T of
blanchet@33192
  3056
        Type ("fun", Ts) => fold (add_axioms_for_type depth) Ts
blanchet@33192
  3057
      | Type ("*", Ts) => fold (add_axioms_for_type depth) Ts
blanchet@33192
  3058
      | @{typ prop} => I
blanchet@33192
  3059
      | @{typ bool} => I
blanchet@33192
  3060
      | @{typ unit} => I
blanchet@33192
  3061
      | TFree (_, S) => add_axioms_for_sort depth T S
blanchet@33192
  3062
      | TVar (_, S) => add_axioms_for_sort depth T S
blanchet@33192
  3063
      | Type (z as (_, Ts)) =>
blanchet@33192
  3064
        fold (add_axioms_for_type depth) Ts
blanchet@33192
  3065
        #> (if is_pure_typedef thy T then
blanchet@33192
  3066
              fold (add_def_axiom depth) (optimized_typedef_axioms thy z)
blanchet@33192
  3067
            else if max_bisim_depth >= 0 andalso is_codatatype thy T then
blanchet@33571
  3068
              fold (add_def_axiom depth) (codatatype_bisim_axioms ext_ctxt T)
blanchet@33192
  3069
            else
blanchet@33192
  3070
              I)
blanchet@33192
  3071
    (* int -> typ -> sort -> accumulator -> accumulator *)
blanchet@33192
  3072
    and add_axioms_for_sort depth T S =
blanchet@33192
  3073
      let
blanchet@33192
  3074
        val supers = Sign.complete_sort thy S
blanchet@33192
  3075
        val class_axioms =
blanchet@33192
  3076
          maps (fn class => map prop_of (AxClass.get_info thy class |> #axioms
blanchet@33192
  3077
                                         handle ERROR _ => [])) supers
blanchet@33192
  3078
        val monomorphic_class_axioms =
blanchet@33192
  3079
          map (fn t => case Term.add_tvars t [] of
blanchet@33192
  3080
                         [] => t
blanchet@33192
  3081
                       | [(x, S)] =>
blanchet@33192
  3082
                         Refute.monomorphic_term (Vartab.make [(x, (S, T))]) t
blanchet@33224
  3083
                       | _ => raise TERM ("Nitpick_HOL.axioms_for_term.\
blanchet@33192
  3084
                                          \add_axioms_for_sort", [t]))
blanchet@33192
  3085
              class_axioms
blanchet@33192
  3086
      in fold (add_nondef_axiom depth) monomorphic_class_axioms end
blanchet@33192
  3087
    val (mono_user_nondefs, poly_user_nondefs) =
blanchet@33192
  3088
      List.partition (null o Term.hidden_polymorphism) user_nondefs
blanchet@33192
  3089
    val eval_axioms = map2 eval_axiom_for_term (index_seq 0 (length evals))
blanchet@33192
  3090
                           evals
blanchet@33192
  3091
    val (xs, (defs, nondefs)) =
blanchet@33192
  3092
      ([], ([], [])) |> add_axioms_for_term 1 t 
blanchet@33192
  3093
                     |> fold_rev (add_def_axiom 1) eval_axioms
blanchet@33192
  3094
                     |> user_axioms = SOME true
blanchet@33192
  3095
                        ? fold (add_nondef_axiom 1) mono_user_nondefs
blanchet@33192
  3096
    val defs = defs @ special_congruence_axioms ext_ctxt xs
blanchet@33192
  3097
  in
blanchet@33192
  3098
    ((defs, nondefs), (user_axioms = SOME true orelse null mono_user_nondefs,
blanchet@33192
  3099
                       null poly_user_nondefs))
blanchet@33192
  3100
  end
blanchet@33192
  3101
blanchet@33192
  3102
(* theory -> const_table -> styp -> int list *)
blanchet@33192
  3103
fun const_format thy def_table (x as (s, T)) =
blanchet@33192
  3104
  if String.isPrefix unrolled_prefix s then
blanchet@33192
  3105
    const_format thy def_table (original_name s, range_type T)
blanchet@33192
  3106
  else if String.isPrefix skolem_prefix s then
blanchet@33192
  3107
    let
blanchet@33192
  3108
      val k = unprefix skolem_prefix s
blanchet@33192
  3109
              |> strip_first_name_sep |> fst |> space_explode "@"
blanchet@33192
  3110
              |> hd |> Int.fromString |> the
blanchet@33192
  3111
    in [k, num_binder_types T - k] end
blanchet@33192
  3112
  else if original_name s <> s then
blanchet@33192
  3113
    [num_binder_types T]
blanchet@33192
  3114
  else case def_of_const thy def_table x of
blanchet@33192
  3115
    SOME t' => if fixpoint_kind_of_rhs t' <> NoFp then
blanchet@33192
  3116
                 let val k = length (strip_abs_vars t') in
blanchet@33192
  3117
                   [k, num_binder_types T - k]
blanchet@33192
  3118
                 end
blanchet@33192
  3119
               else
blanchet@33192
  3120
                 [num_binder_types T]
blanchet@33192
  3121
  | NONE => [num_binder_types T]
blanchet@33192
  3122
(* int list -> int list -> int list *)
blanchet@33192
  3123
fun intersect_formats _ [] = []
blanchet@33192
  3124
  | intersect_formats [] _ = []
blanchet@33192
  3125
  | intersect_formats ks1 ks2 =
blanchet@33192
  3126
    let val ((ks1', k1), (ks2', k2)) = pairself split_last (ks1, ks2) in
blanchet@33192
  3127
      intersect_formats (ks1' @ (if k1 > k2 then [k1 - k2] else []))
blanchet@33192
  3128
                        (ks2' @ (if k2 > k1 then [k2 - k1] else [])) @
blanchet@33192
  3129
      [Int.min (k1, k2)]
blanchet@33192
  3130
    end
blanchet@33192
  3131
blanchet@33192
  3132
(* theory -> const_table -> (term option * int list) list -> term -> int list *)
blanchet@33192
  3133
fun lookup_format thy def_table formats t =
blanchet@33192
  3134
  case AList.lookup (fn (SOME x, SOME y) =>
blanchet@33192
  3135
                        (term_match thy) (x, y) | _ => false)
blanchet@33192
  3136
                    formats (SOME t) of
blanchet@33192
  3137
    SOME format => format
blanchet@33192
  3138
  | NONE => let val format = the (AList.lookup (op =) formats NONE) in
blanchet@33192
  3139
              case t of
blanchet@33192
  3140
                Const x => intersect_formats format
blanchet@33192
  3141
                                             (const_format thy def_table x)
blanchet@33192
  3142
              | _ => format
blanchet@33192
  3143
            end
blanchet@33192
  3144
blanchet@33192
  3145
(* int list -> int list -> typ -> typ *)
blanchet@33192
  3146
fun format_type default_format format T =
blanchet@33192
  3147
  let
blanchet@33192
  3148
    val T = unbox_type T
blanchet@33192
  3149
    val format = format |> filter (curry (op <) 0)
blanchet@33192
  3150
  in
blanchet@33192
  3151
    if forall (equal 1) format then
blanchet@33192
  3152
      T
blanchet@33192
  3153
    else
blanchet@33192
  3154
      let
blanchet@33192
  3155
        val (binder_Ts, body_T) = strip_type T
blanchet@33192
  3156
        val batched =
blanchet@33192
  3157
          binder_Ts
blanchet@33192
  3158
          |> map (format_type default_format default_format)
blanchet@33192
  3159
          |> rev |> chunk_list_unevenly (rev format)
blanchet@33192
  3160
          |> map (HOLogic.mk_tupleT o rev)
blanchet@33192
  3161
      in List.foldl (op -->) body_T batched end
blanchet@33192
  3162
  end
blanchet@33192
  3163
(* theory -> const_table -> (term option * int list) list -> term -> typ *)
blanchet@33192
  3164
fun format_term_type thy def_table formats t =
blanchet@33192
  3165
  format_type (the (AList.lookup (op =) formats NONE))
blanchet@33192
  3166
              (lookup_format thy def_table formats t) (fastype_of t)
blanchet@33192
  3167
blanchet@33192
  3168
(* int list -> int -> int list -> int list *)
blanchet@33192
  3169
fun repair_special_format js m format =
blanchet@33192
  3170
  m - 1 downto 0 |> chunk_list_unevenly (rev format)
blanchet@33192
  3171
                 |> map (rev o filter_out (member (op =) js))
blanchet@33192
  3172
                 |> filter_out null |> map length |> rev
blanchet@33192
  3173
blanchet@33192
  3174
(* extended_context -> string * string -> (term option * int list) list
blanchet@33192
  3175
   -> styp -> term * typ *)
blanchet@33192
  3176
fun user_friendly_const ({thy, evals, def_table, skolems, special_funs, ...}
blanchet@33192
  3177
                         : extended_context) (base_name, step_name) formats =
blanchet@33192
  3178
  let
blanchet@33192
  3179
    val default_format = the (AList.lookup (op =) formats NONE)
blanchet@33192
  3180
    (* styp -> term * typ *)
blanchet@33192
  3181
    fun do_const (x as (s, T)) =
blanchet@33192
  3182
      (if String.isPrefix special_prefix s then
blanchet@33192
  3183
         let
blanchet@33192
  3184
           (* term -> term *)
blanchet@33192
  3185
           val do_term = map_aterms (fn Const x => fst (do_const x) | t' => t')
blanchet@33192
  3186
           val (x' as (_, T'), js, ts) =
blanchet@33192
  3187
             AList.find (op =) (!special_funs) (s, unbox_type T) |> the_single
blanchet@33192
  3188
           val max_j = List.last js
blanchet@33192
  3189
           val Ts = List.take (binder_types T', max_j + 1)
blanchet@33192
  3190
           val missing_js = filter_out (member (op =) js) (0 upto max_j)
blanchet@33192
  3191
           val missing_Ts = filter_indices missing_js Ts
blanchet@33192
  3192
           (* int -> indexname *)
blanchet@33192
  3193
           fun nth_missing_var n =
blanchet@33192
  3194
             ((arg_var_prefix ^ nat_subscript (n + 1), 0), nth missing_Ts n)
blanchet@33192
  3195
           val missing_vars = map nth_missing_var (0 upto length missing_js - 1)
blanchet@33192
  3196
           val vars = special_bounds ts @ missing_vars
blanchet@33192
  3197
           val ts' = map2 (fn T => fn j =>
blanchet@33192
  3198
                              case AList.lookup (op =) (js ~~ ts) j of
blanchet@33192
  3199
                                SOME t => do_term t
blanchet@33192
  3200
                              | NONE =>
blanchet@33192
  3201
                                Var (nth missing_vars
blanchet@33192
  3202
                                         (find_index (equal j) missing_js)))
blanchet@33192
  3203
                          Ts (0 upto max_j)
blanchet@33192
  3204
           val t = do_const x' |> fst
blanchet@33192
  3205
           val format =
blanchet@33192
  3206
             case AList.lookup (fn (SOME t1, SOME t2) => term_match thy (t1, t2)
blanchet@33192
  3207
                                 | _ => false) formats (SOME t) of
blanchet@33192
  3208
               SOME format =>
blanchet@33192
  3209
               repair_special_format js (num_binder_types T') format
blanchet@33192
  3210
             | NONE =>
blanchet@33192
  3211
               const_format thy def_table x'
blanchet@33192
  3212
               |> repair_special_format js (num_binder_types T')
blanchet@33192
  3213
               |> intersect_formats default_format
blanchet@33192
  3214
         in
blanchet@33192
  3215
           (list_comb (t, ts') |> fold_rev abs_var vars,
blanchet@33192
  3216
            format_type default_format format T)
blanchet@33192
  3217
         end
blanchet@33192
  3218
       else if String.isPrefix uncurry_prefix s then
blanchet@33192
  3219
         let
blanchet@33192
  3220
           val (ss, s') = unprefix uncurry_prefix s
blanchet@33192
  3221
                          |> strip_first_name_sep |>> space_explode "@"
blanchet@33192
  3222
         in
blanchet@33192
  3223
           if String.isPrefix step_prefix s' then
blanchet@33192
  3224
             do_const (s', T)
blanchet@33192
  3225
           else
blanchet@33192
  3226
             let
blanchet@33192
  3227
               val k = the (Int.fromString (hd ss))
blanchet@33192
  3228
               val j = the (Int.fromString (List.last ss))
blanchet@33192
  3229
               val (before_Ts, (tuple_T, rest_T)) =
blanchet@33192
  3230
                 strip_n_binders j T ||> (strip_n_binders 1 #>> hd)
blanchet@33192
  3231
               val T' = before_Ts ---> dest_n_tuple_type k tuple_T ---> rest_T
blanchet@33192
  3232
             in do_const (s', T') end
blanchet@33192
  3233
         end
blanchet@33192
  3234
       else if String.isPrefix unrolled_prefix s then
blanchet@33192
  3235
         let val t = Const (original_name s, range_type T) in
blanchet@33192
  3236
           (lambda (Free (iter_var_prefix, nat_T)) t,
blanchet@33192
  3237
            format_type default_format
blanchet@33192
  3238
                        (lookup_format thy def_table formats t) T)
blanchet@33192
  3239
         end
blanchet@33192
  3240
       else if String.isPrefix base_prefix s then
blanchet@33192
  3241
         (Const (base_name, T --> T) $ Const (unprefix base_prefix s, T),
blanchet@33192
  3242
          format_type default_format default_format T)
blanchet@33192
  3243
       else if String.isPrefix step_prefix s then
blanchet@33192
  3244
         (Const (step_name, T --> T) $ Const (unprefix step_prefix s, T),
blanchet@33192
  3245
          format_type default_format default_format T)
blanchet@33192
  3246
       else if String.isPrefix skolem_prefix s then
blanchet@33192
  3247
         let
blanchet@33192
  3248
           val ss = the (AList.lookup (op =) (!skolems) s)
blanchet@33192
  3249
           val (Ts, Ts') = chop (length ss) (binder_types T)
blanchet@33192
  3250
           val frees = map Free (ss ~~ Ts)
blanchet@33192
  3251
           val s' = original_name s
blanchet@33192
  3252
         in
blanchet@33192
  3253
           (fold lambda frees (Const (s', Ts' ---> T)),
blanchet@33192
  3254
            format_type default_format
blanchet@33192
  3255
                        (lookup_format thy def_table formats (Const x)) T)
blanchet@33192
  3256
         end
blanchet@33192
  3257
       else if String.isPrefix eval_prefix s then
blanchet@33192
  3258
         let
blanchet@33192
  3259
           val t = nth evals (the (Int.fromString (unprefix eval_prefix s)))
blanchet@33192
  3260
         in (t, format_term_type thy def_table formats t) end
blanchet@33192
  3261
       else if s = @{const_name undefined_fast_The} then
blanchet@33192
  3262
         (Const (nitpick_prefix ^ "The fallback", T),
blanchet@33192
  3263
          format_type default_format
blanchet@33192
  3264
                      (lookup_format thy def_table formats
blanchet@33192
  3265
                           (Const (@{const_name The}, (T --> bool_T) --> T))) T)
blanchet@33192
  3266
       else if s = @{const_name undefined_fast_Eps} then
blanchet@33192
  3267
         (Const (nitpick_prefix ^ "Eps fallback", T),
blanchet@33192
  3268
          format_type default_format
blanchet@33192
  3269
                      (lookup_format thy def_table formats
blanchet@33192
  3270
                           (Const (@{const_name Eps}, (T --> bool_T) --> T))) T)
blanchet@33192
  3271
       else
blanchet@33192
  3272
         let val t = Const (original_name s, T) in
blanchet@33192
  3273
           (t, format_term_type thy def_table formats t)
blanchet@33192
  3274
         end)
blanchet@33192
  3275
      |>> map_types (typ_subst [(@{typ bisim_iterator}, nat_T)] o unbox_type)
blanchet@33192
  3276
      |>> shorten_const_names_in_term |>> shorten_abs_vars
blanchet@33192
  3277
  in do_const end
blanchet@33192
  3278
blanchet@33192
  3279
(* styp -> string *)
blanchet@33192
  3280
fun assign_operator_for_const (s, T) =
blanchet@33192
  3281
  if String.isPrefix ubfp_prefix s then
blanchet@33192
  3282
    if is_fun_type T then "\<subseteq>" else "\<le>"
blanchet@33192
  3283
  else if String.isPrefix lbfp_prefix s then
blanchet@33192
  3284
    if is_fun_type T then "\<supseteq>" else "\<ge>"
blanchet@33192
  3285
  else if original_name s <> s then
blanchet@33192
  3286
    assign_operator_for_const (after_name_sep s, T)
blanchet@33192
  3287
  else
blanchet@33192
  3288
    "="
blanchet@33192
  3289
blanchet@33192
  3290
(* extended_context -> term
blanchet@33192
  3291
   -> ((term list * term list) * (bool * bool)) * term *)
blanchet@33192
  3292
fun preprocess_term (ext_ctxt as {thy, destroy_constrs, boxes, skolemize,
blanchet@33192
  3293
                                  uncurry, ...}) t =
blanchet@33192
  3294
  let
blanchet@33192
  3295
    val skolem_depth = if skolemize then 4 else ~1
blanchet@33192
  3296
    val (((def_ts, nondef_ts), (got_all_mono_user_axioms, no_poly_user_axioms)),
blanchet@33192
  3297
         core_t) = t |> unfold_defs_in_term ext_ctxt
blanchet@33192
  3298
                     |> Refute.close_form
blanchet@33192
  3299
                     |> skolemize_term_and_more ext_ctxt skolem_depth
blanchet@33192
  3300
                     |> specialize_consts_in_term ext_ctxt 0
blanchet@33192
  3301
                     |> `(axioms_for_term ext_ctxt)
blanchet@33192
  3302
    val maybe_box = exists (not_equal (SOME false) o snd) boxes
blanchet@33192
  3303
    val table =
blanchet@33192
  3304
      Termtab.empty |> uncurry
blanchet@33192
  3305
        ? fold (add_to_uncurry_table thy) (core_t :: def_ts @ nondef_ts)
blanchet@33192
  3306
    (* bool -> bool -> term -> term *)
blanchet@33192
  3307
    fun do_rest def core =
blanchet@33192
  3308
      uncurry ? uncurry_term table
blanchet@33192
  3309
      #> maybe_box ? box_fun_and_pair_in_term ext_ctxt def
blanchet@33192
  3310
      #> destroy_constrs ? (pull_out_universal_constrs thy def
blanchet@33192
  3311
                            #> pull_out_existential_constrs thy
blanchet@33571
  3312
                            #> destroy_pulled_out_constrs ext_ctxt def)
blanchet@33192
  3313
      #> curry_assms
blanchet@33192
  3314
      #> destroy_universal_equalities
blanchet@33192
  3315
      #> destroy_existential_equalities thy
blanchet@33192
  3316
      #> simplify_constrs_and_sels thy
blanchet@33192
  3317
      #> distribute_quantifiers
blanchet@33192
  3318
      #> push_quantifiers_inward thy
blanchet@33192
  3319
      #> not core ? Refute.close_form
blanchet@33192
  3320
      #> shorten_abs_vars
blanchet@33192
  3321
  in
blanchet@33192
  3322
    (((map (do_rest true false) def_ts, map (do_rest false false) nondef_ts),
blanchet@33192
  3323
      (got_all_mono_user_axioms, no_poly_user_axioms)),
blanchet@33192
  3324
     do_rest false true core_t)
blanchet@33192
  3325
  end
blanchet@33192
  3326
blanchet@33192
  3327
end;