src/HOL/Tools/Nitpick/nitpick_hol.ML
author blanchet
Sun, 25 Apr 2010 00:10:30 +0200
changeset 36389 8228b3a4a2ba
parent 36388 30f7ce76712d
child 36390 eee4ee6a5cbe
permissions -rw-r--r--
remove "skolemize" option from Nitpick, since Skolemization is always useful
blanchet@33978
     1
(*  Title:      HOL/Tools/Nitpick/nitpick_hol.ML
blanchet@33192
     2
    Author:     Jasmin Blanchette, TU Muenchen
blanchet@34969
     3
    Copyright   2008, 2009, 2010
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@33705
    10
  type styp = Nitpick_Util.styp
blanchet@33192
    11
  type const_table = term list Symtab.table
blanchet@33192
    12
  type special_fun = (styp * int list * term list) * styp
blanchet@33192
    13
  type unrolled = styp * styp
blanchet@33192
    14
  type wf_cache = (styp * (bool * bool)) list
blanchet@33192
    15
blanchet@35067
    16
  type hol_context = {
blanchet@33192
    17
    thy: theory,
blanchet@33192
    18
    ctxt: Proof.context,
blanchet@33192
    19
    max_bisim_depth: int,
blanchet@33192
    20
    boxes: (typ option * bool option) list,
blanchet@34969
    21
    stds: (typ option * bool) list,
blanchet@33192
    22
    wfs: (styp option * bool option) list,
blanchet@33192
    23
    user_axioms: bool option,
blanchet@33192
    24
    debug: bool,
blanchet@34121
    25
    binary_ints: bool option,
blanchet@33192
    26
    destroy_constrs: bool,
blanchet@33192
    27
    specialize: bool,
blanchet@33192
    28
    star_linear_preds: bool,
blanchet@33192
    29
    fast_descrs: bool,
blanchet@33192
    30
    tac_timeout: Time.time option,
blanchet@33192
    31
    evals: term list,
blanchet@33192
    32
    case_names: (string * int) list,
blanchet@33192
    33
    def_table: const_table,
blanchet@33192
    34
    nondef_table: const_table,
blanchet@33192
    35
    user_nondefs: term list,
blanchet@33192
    36
    simp_table: const_table Unsynchronized.ref,
blanchet@33192
    37
    psimp_table: const_table,
blanchet@35807
    38
    choice_spec_table: const_table,
blanchet@33192
    39
    intro_table: const_table,
blanchet@33192
    40
    ground_thm_table: term list Inttab.table,
blanchet@33192
    41
    ersatz_table: (string * string) list,
blanchet@33192
    42
    skolems: (string * string list) list Unsynchronized.ref,
blanchet@33192
    43
    special_funs: special_fun list Unsynchronized.ref,
blanchet@33192
    44
    unrolled_preds: unrolled list Unsynchronized.ref,
blanchet@33571
    45
    wf_cache: wf_cache Unsynchronized.ref,
blanchet@33571
    46
    constr_cache: (typ * styp list) list Unsynchronized.ref}
blanchet@33192
    47
blanchet@35067
    48
  datatype fixpoint_kind = Lfp | Gfp | NoFp
blanchet@35067
    49
  datatype boxability =
blanchet@35067
    50
    InConstr | InSel | InExpr | InPair | InFunLHS | InFunRHS1 | InFunRHS2
blanchet@35067
    51
blanchet@33192
    52
  val name_sep : string
blanchet@33192
    53
  val numeral_prefix : string
blanchet@35714
    54
  val base_prefix : string
blanchet@35714
    55
  val step_prefix : string
blanchet@35714
    56
  val unrolled_prefix : string
blanchet@35067
    57
  val ubfp_prefix : string
blanchet@35067
    58
  val lbfp_prefix : string
blanchet@35311
    59
  val quot_normal_prefix : string
blanchet@33192
    60
  val skolem_prefix : string
blanchet@35067
    61
  val special_prefix : string
blanchet@35067
    62
  val uncurry_prefix : string
blanchet@33192
    63
  val eval_prefix : string
blanchet@35714
    64
  val iter_var_prefix : string
blanchet@35714
    65
  val strip_first_name_sep : string -> string * string
blanchet@33192
    66
  val original_name : string -> string
blanchet@34985
    67
  val s_conj : term * term -> term
blanchet@35067
    68
  val s_disj : term * term -> term
blanchet@35067
    69
  val strip_any_connective : term -> term list * term
blanchet@35067
    70
  val conjuncts_of : term -> term list
blanchet@35067
    71
  val disjuncts_of : term -> term list
blanchet@35665
    72
  val unarize_unbox_etc_type : typ -> typ
blanchet@35665
    73
  val uniterize_unarize_unbox_etc_type : typ -> typ
blanchet@33192
    74
  val string_for_type : Proof.context -> typ -> string
blanchet@33192
    75
  val prefix_name : string -> string -> string
blanchet@34118
    76
  val shortest_name : string -> string
blanchet@33192
    77
  val short_name : string -> string
blanchet@34118
    78
  val shorten_names_in_term : term -> term
blanchet@35711
    79
  val strict_type_match : theory -> typ * typ -> bool
blanchet@33192
    80
  val type_match : theory -> typ * typ -> bool
blanchet@33192
    81
  val const_match : theory -> styp * styp -> bool
blanchet@33192
    82
  val term_match : theory -> term * term -> bool
blanchet@35711
    83
  val frac_from_term_pair : typ -> term -> term -> term
blanchet@33192
    84
  val is_TFree : typ -> bool
blanchet@33192
    85
  val is_higher_order_type : typ -> bool
blanchet@33192
    86
  val is_fun_type : typ -> bool
blanchet@33192
    87
  val is_set_type : typ -> bool
blanchet@33192
    88
  val is_pair_type : typ -> bool
blanchet@33192
    89
  val is_lfp_iterator_type : typ -> bool
blanchet@33192
    90
  val is_gfp_iterator_type : typ -> bool
blanchet@33192
    91
  val is_fp_iterator_type : typ -> bool
blanchet@35280
    92
  val is_iterator_type : typ -> bool
blanchet@33192
    93
  val is_boolean_type : typ -> bool
blanchet@33192
    94
  val is_integer_type : typ -> bool
blanchet@34121
    95
  val is_bit_type : typ -> bool
blanchet@34121
    96
  val is_word_type : typ -> bool
blanchet@35220
    97
  val is_integer_like_type : typ -> bool
blanchet@33192
    98
  val is_record_type : typ -> bool
blanchet@33192
    99
  val is_number_type : theory -> typ -> bool
blanchet@33192
   100
  val const_for_iterator_type : typ -> styp
blanchet@35067
   101
  val strip_n_binders : int -> typ -> typ list * typ
blanchet@33192
   102
  val nth_range_type : int -> typ -> typ
blanchet@33192
   103
  val num_factors_in_type : typ -> int
blanchet@33192
   104
  val num_binder_types : typ -> int
blanchet@33192
   105
  val curried_binder_types : typ -> typ list
blanchet@33192
   106
  val mk_flat_tuple : typ -> term list -> term
blanchet@33192
   107
  val dest_n_tuple : int -> term -> term list
blanchet@33978
   108
  val is_real_datatype : theory -> string -> bool
blanchet@35220
   109
  val is_standard_datatype : theory -> (typ option * bool) list -> typ -> bool
blanchet@34923
   110
  val is_quot_type : theory -> typ -> bool
blanchet@33192
   111
  val is_codatatype : theory -> typ -> bool
blanchet@33192
   112
  val is_pure_typedef : theory -> typ -> bool
blanchet@33192
   113
  val is_univ_typedef : theory -> typ -> bool
blanchet@35220
   114
  val is_datatype : theory -> (typ option * bool) list -> typ -> bool
blanchet@33192
   115
  val is_record_constr : styp -> bool
blanchet@33192
   116
  val is_record_get : theory -> styp -> bool
blanchet@33192
   117
  val is_record_update : theory -> styp -> bool
blanchet@33192
   118
  val is_abs_fun : theory -> styp -> bool
blanchet@33192
   119
  val is_rep_fun : theory -> styp -> bool
blanchet@34923
   120
  val is_quot_abs_fun : Proof.context -> styp -> bool
blanchet@34923
   121
  val is_quot_rep_fun : Proof.context -> styp -> bool
blanchet@35067
   122
  val mate_of_rep_fun : theory -> styp -> styp
blanchet@35067
   123
  val is_constr_like : theory -> styp -> bool
blanchet@35067
   124
  val is_stale_constr : theory -> styp -> bool
blanchet@35220
   125
  val is_constr : theory -> (typ option * bool) list -> styp -> bool
blanchet@33192
   126
  val is_sel : string -> bool
blanchet@34121
   127
  val is_sel_like_and_no_discr : string -> bool
blanchet@35067
   128
  val box_type : hol_context -> boxability -> typ -> typ
blanchet@35190
   129
  val binarize_nat_and_int_in_type : typ -> typ
blanchet@35190
   130
  val binarize_nat_and_int_in_term : term -> term
blanchet@33192
   131
  val discr_for_constr : styp -> styp
blanchet@33192
   132
  val num_sels_for_constr_type : typ -> int
blanchet@33192
   133
  val nth_sel_name_for_constr_name : string -> int -> string
blanchet@33192
   134
  val nth_sel_for_constr : styp -> int -> styp
blanchet@35190
   135
  val binarized_and_boxed_nth_sel_for_constr :
blanchet@35190
   136
    hol_context -> bool -> styp -> int -> styp
blanchet@33192
   137
  val sel_no_from_name : string -> int
blanchet@35075
   138
  val close_form : term -> term
blanchet@33192
   139
  val eta_expand : typ list -> term -> int -> term
blanchet@33192
   140
  val extensionalize : term -> term
blanchet@33192
   141
  val distinctness_formula : typ -> term list -> term
blanchet@33192
   142
  val register_frac_type : string -> (string * string) list -> theory -> theory
blanchet@33192
   143
  val unregister_frac_type : string -> theory -> theory
blanchet@33192
   144
  val register_codatatype : typ -> string -> styp list -> theory -> theory
blanchet@33192
   145
  val unregister_codatatype : typ -> theory -> theory
blanchet@35067
   146
  val datatype_constrs : hol_context -> typ -> styp list
blanchet@35190
   147
  val binarized_and_boxed_datatype_constrs :
blanchet@35190
   148
    hol_context -> bool -> typ -> styp list
blanchet@35067
   149
  val num_datatype_constrs : hol_context -> typ -> int
blanchet@33192
   150
  val constr_name_for_sel_like : string -> string
blanchet@35190
   151
  val binarized_and_boxed_constr_for_sel : hol_context -> bool -> styp -> styp
blanchet@35067
   152
  val discriminate_value : hol_context -> styp -> term -> term
blanchet@35220
   153
  val select_nth_constr_arg :
blanchet@35220
   154
    theory -> (typ option * bool) list -> styp -> term -> int -> typ -> term
blanchet@35220
   155
  val construct_value :
blanchet@35220
   156
    theory -> (typ option * bool) list -> styp -> term list -> term
blanchet@35665
   157
  val coerce_term : hol_context -> typ list -> typ -> typ -> term -> term
blanchet@33192
   158
  val card_of_type : (typ * int) list -> typ -> int
blanchet@33192
   159
  val bounded_card_of_type : int -> int -> (typ * int) list -> typ -> int
blanchet@34120
   160
  val bounded_exact_card_of_type :
blanchet@35385
   161
    hol_context -> typ list -> int -> int -> (typ * int) list -> typ -> int
blanchet@35067
   162
  val is_finite_type : hol_context -> typ -> bool
blanchet@35665
   163
  val is_small_finite_type : hol_context -> typ -> bool
blanchet@35067
   164
  val special_bounds : term list -> (indexname * typ) list
blanchet@35386
   165
  val abs_var : indexname * typ -> term -> term
blanchet@35067
   166
  val is_funky_typedef : theory -> typ -> bool
blanchet@35335
   167
  val all_axioms_of :
blanchet@35335
   168
    theory -> (term * term) list -> term list * term list * term list
blanchet@35220
   169
  val arity_of_built_in_const :
blanchet@35220
   170
    theory -> (typ option * bool) list -> bool -> styp -> int option
blanchet@35220
   171
  val is_built_in_const :
blanchet@35220
   172
    theory -> (typ option * bool) list -> bool -> styp -> bool
blanchet@35067
   173
  val term_under_def : term -> term
blanchet@35220
   174
  val case_const_names :
blanchet@35220
   175
    theory -> (typ option * bool) list -> (string * int) list
blanchet@35714
   176
  val unfold_defs_in_term : hol_context -> term -> term
blanchet@35335
   177
  val const_def_table :
blanchet@35335
   178
    Proof.context -> (term * term) list -> term list -> const_table
blanchet@33192
   179
  val const_nondef_table : term list -> const_table
blanchet@35335
   180
  val const_simp_table : Proof.context -> (term * term) list -> const_table
blanchet@35335
   181
  val const_psimp_table : Proof.context -> (term * term) list -> const_table
blanchet@35807
   182
  val const_choice_spec_table :
blanchet@35807
   183
    Proof.context -> (term * term) list -> const_table
blanchet@35335
   184
  val inductive_intro_table :
blanchet@35335
   185
    Proof.context -> (term * term) list -> const_table -> const_table
blanchet@33192
   186
  val ground_theorem_table : theory -> term list Inttab.table
blanchet@33192
   187
  val ersatz_table : theory -> (string * string) list
blanchet@35067
   188
  val add_simps : const_table Unsynchronized.ref -> string -> term list -> unit
blanchet@35067
   189
  val inverse_axioms_for_rep_fun : theory -> styp -> term list
blanchet@35067
   190
  val optimized_typedef_axioms : theory -> string * typ list -> term list
blanchet@35220
   191
  val optimized_quot_type_axioms :
blanchet@35311
   192
    Proof.context -> (typ option * bool) list -> string * typ list -> term list
blanchet@33192
   193
  val def_of_const : theory -> const_table -> styp -> term option
blanchet@35714
   194
  val fixpoint_kind_of_rhs : term -> fixpoint_kind
blanchet@35067
   195
  val fixpoint_kind_of_const :
blanchet@35067
   196
    theory -> const_table -> string * typ -> fixpoint_kind
blanchet@35067
   197
  val is_inductive_pred : hol_context -> styp -> bool
blanchet@35067
   198
  val is_equational_fun : hol_context -> styp -> bool
blanchet@33192
   199
  val is_constr_pattern_lhs : theory -> term -> bool
blanchet@33192
   200
  val is_constr_pattern_formula : theory -> term -> bool
blanchet@35807
   201
  val nondef_props_for_const :
blanchet@35807
   202
    theory -> bool -> const_table -> styp -> term list
blanchet@35807
   203
  val is_choice_spec_fun : hol_context -> styp -> bool
blanchet@35807
   204
  val is_choice_spec_axiom : theory -> const_table -> term -> bool
blanchet@35067
   205
  val codatatype_bisim_axioms : hol_context -> typ -> term list
blanchet@35067
   206
  val is_well_founded_inductive_pred : hol_context -> styp -> bool
blanchet@35067
   207
  val unrolled_inductive_pred_const : hol_context -> bool -> styp -> term
blanchet@35067
   208
  val equational_fun_axioms : hol_context -> styp -> term list
blanchet@35067
   209
  val is_equational_fun_surely_complete : hol_context -> styp -> bool
blanchet@33547
   210
  val merge_type_vars_in_terms : term list -> term list
blanchet@35190
   211
  val ground_types_in_type : hol_context -> bool -> typ -> typ list
blanchet@35190
   212
  val ground_types_in_terms : hol_context -> bool -> term list -> typ list
blanchet@33192
   213
end;
blanchet@33192
   214
blanchet@33224
   215
structure Nitpick_HOL : NITPICK_HOL =
blanchet@33192
   216
struct
blanchet@33192
   217
blanchet@33224
   218
open Nitpick_Util
blanchet@33192
   219
blanchet@33192
   220
type const_table = term list Symtab.table
blanchet@33192
   221
type special_fun = (styp * int list * term list) * styp
blanchet@33192
   222
type unrolled = styp * styp
blanchet@33192
   223
type wf_cache = (styp * (bool * bool)) list
blanchet@33192
   224
blanchet@35067
   225
type hol_context = {
blanchet@33192
   226
  thy: theory,
blanchet@33192
   227
  ctxt: Proof.context,
blanchet@33192
   228
  max_bisim_depth: int,
blanchet@33192
   229
  boxes: (typ option * bool option) list,
blanchet@34969
   230
  stds: (typ option * bool) list,
blanchet@33192
   231
  wfs: (styp option * bool option) list,
blanchet@33192
   232
  user_axioms: bool option,
blanchet@33192
   233
  debug: bool,
blanchet@34121
   234
  binary_ints: bool option,
blanchet@33192
   235
  destroy_constrs: bool,
blanchet@33192
   236
  specialize: bool,
blanchet@33192
   237
  star_linear_preds: bool,
blanchet@33192
   238
  fast_descrs: bool,
blanchet@33192
   239
  tac_timeout: Time.time option,
blanchet@33192
   240
  evals: term list,
blanchet@33192
   241
  case_names: (string * int) list,
blanchet@33192
   242
  def_table: const_table,
blanchet@33192
   243
  nondef_table: const_table,
blanchet@33192
   244
  user_nondefs: term list,
blanchet@33192
   245
  simp_table: const_table Unsynchronized.ref,
blanchet@33192
   246
  psimp_table: const_table,
blanchet@35807
   247
  choice_spec_table: const_table,
blanchet@33192
   248
  intro_table: const_table,
blanchet@33192
   249
  ground_thm_table: term list Inttab.table,
blanchet@33192
   250
  ersatz_table: (string * string) list,
blanchet@33192
   251
  skolems: (string * string list) list Unsynchronized.ref,
blanchet@33192
   252
  special_funs: special_fun list Unsynchronized.ref,
blanchet@33192
   253
  unrolled_preds: unrolled list Unsynchronized.ref,
blanchet@33571
   254
  wf_cache: wf_cache Unsynchronized.ref,
blanchet@33571
   255
  constr_cache: (typ * styp list) list Unsynchronized.ref}
blanchet@33192
   256
blanchet@35067
   257
datatype fixpoint_kind = Lfp | Gfp | NoFp
blanchet@35067
   258
datatype boxability =
blanchet@35067
   259
  InConstr | InSel | InExpr | InPair | InFunLHS | InFunRHS1 | InFunRHS2
blanchet@35067
   260
blanchet@33574
   261
structure Data = Theory_Data(
blanchet@33192
   262
  type T = {frac_types: (string * (string * string) list) list,
blanchet@33192
   263
            codatatypes: (string * (string * styp list)) list}
blanchet@33192
   264
  val empty = {frac_types = [], codatatypes = []}
blanchet@33192
   265
  val extend = I
wenzelm@33522
   266
  fun merge ({frac_types = fs1, codatatypes = cs1},
wenzelm@33522
   267
               {frac_types = fs2, codatatypes = cs2}) : T =
wenzelm@33699
   268
    {frac_types = AList.merge (op =) (K true) (fs1, fs2),
wenzelm@33699
   269
     codatatypes = AList.merge (op =) (K true) (cs1, cs2)})
blanchet@33192
   270
blanchet@33192
   271
val name_sep = "$"
blanchet@33192
   272
val numeral_prefix = nitpick_prefix ^ "num" ^ name_sep
blanchet@33192
   273
val sel_prefix = nitpick_prefix ^ "sel"
blanchet@33192
   274
val discr_prefix = nitpick_prefix ^ "is" ^ name_sep
blanchet@33192
   275
val set_prefix = nitpick_prefix ^ "set" ^ name_sep
blanchet@33192
   276
val lfp_iterator_prefix = nitpick_prefix ^ "lfpit" ^ name_sep
blanchet@33192
   277
val gfp_iterator_prefix = nitpick_prefix ^ "gfpit" ^ name_sep
blanchet@33192
   278
val unrolled_prefix = nitpick_prefix ^ "unroll" ^ name_sep
blanchet@33192
   279
val base_prefix = nitpick_prefix ^ "base" ^ name_sep
blanchet@33192
   280
val step_prefix = nitpick_prefix ^ "step" ^ name_sep
blanchet@33192
   281
val ubfp_prefix = nitpick_prefix ^ "ubfp" ^ name_sep
blanchet@33192
   282
val lbfp_prefix = nitpick_prefix ^ "lbfp" ^ name_sep
blanchet@35311
   283
val quot_normal_prefix = nitpick_prefix ^ "qn" ^ name_sep
blanchet@33192
   284
val skolem_prefix = nitpick_prefix ^ "sk"
blanchet@33192
   285
val special_prefix = nitpick_prefix ^ "sp"
blanchet@33192
   286
val uncurry_prefix = nitpick_prefix ^ "unc"
blanchet@33192
   287
val eval_prefix = nitpick_prefix ^ "eval"
blanchet@33192
   288
val iter_var_prefix = "i"
blanchet@35714
   289
blanchet@35714
   290
(** Constant/type information and term/type manipulation **)
blanchet@33192
   291
blanchet@33192
   292
fun sel_prefix_for j = sel_prefix ^ string_of_int j ^ name_sep
blanchet@35311
   293
fun quot_normal_name_for_type ctxt T =
blanchet@35311
   294
  quot_normal_prefix ^ unyxml (Syntax.string_of_typ ctxt T)
blanchet@33192
   295
blanchet@33192
   296
val strip_first_name_sep =
blanchet@33192
   297
  Substring.full #> Substring.position name_sep ##> Substring.triml 1
blanchet@33192
   298
  #> pairself Substring.string
blanchet@33192
   299
fun original_name s =
blanchet@33192
   300
  if String.isPrefix nitpick_prefix s then
blanchet@33192
   301
    case strip_first_name_sep s of (s1, "") => s1 | (_, s2) => original_name s2
blanchet@33192
   302
  else
blanchet@33192
   303
    s
blanchet@35714
   304
blanchet@35714
   305
fun s_betapply (Const (@{const_name If}, _) $ @{const True} $ t, _) = t
blanchet@35714
   306
  | s_betapply (Const (@{const_name If}, _) $ @{const False} $ _, t) = t
blanchet@35714
   307
  | s_betapply p = betapply p
blanchet@35714
   308
val s_betapplys = Library.foldl s_betapply
blanchet@33192
   309
blanchet@34985
   310
fun s_conj (t1, @{const True}) = t1
blanchet@34985
   311
  | s_conj (@{const True}, t2) = t2
blanchet@34985
   312
  | s_conj (t1, t2) =
blanchet@34985
   313
    if t1 = @{const False} orelse t2 = @{const False} then @{const False}
blanchet@34985
   314
    else HOLogic.mk_conj (t1, t2)
blanchet@34985
   315
fun s_disj (t1, @{const False}) = t1
blanchet@34985
   316
  | s_disj (@{const False}, t2) = t2
blanchet@34985
   317
  | s_disj (t1, t2) =
blanchet@34985
   318
    if t1 = @{const True} orelse t2 = @{const True} then @{const True}
blanchet@34985
   319
    else HOLogic.mk_disj (t1, t2)
blanchet@34985
   320
blanchet@34985
   321
fun strip_connective conn_t (t as (t0 $ t1 $ t2)) =
blanchet@34985
   322
    if t0 = conn_t then strip_connective t0 t2 @ strip_connective t0 t1 else [t]
blanchet@34985
   323
  | strip_connective _ t = [t]
blanchet@35280
   324
fun strip_any_connective (t as (t0 $ _ $ _)) =
blanchet@34985
   325
    if t0 = @{const "op &"} orelse t0 = @{const "op |"} then
blanchet@34985
   326
      (strip_connective t0 t, t0)
blanchet@34985
   327
    else
blanchet@34985
   328
      ([t], @{const Not})
blanchet@34985
   329
  | strip_any_connective t = ([t], @{const Not})
blanchet@35067
   330
val conjuncts_of = strip_connective @{const "op &"}
blanchet@35067
   331
val disjuncts_of = strip_connective @{const "op |"}
blanchet@34985
   332
blanchet@33192
   333
(* When you add constants to these lists, make sure to handle them in
blanchet@33224
   334
   "Nitpick_Nut.nut_from_term", and perhaps in "Nitpick_Mono.consider_term" as
blanchet@33192
   335
   well. *)
blanchet@33192
   336
val built_in_consts =
blanchet@33192
   337
  [(@{const_name all}, 1),
blanchet@33192
   338
   (@{const_name "=="}, 2),
blanchet@33192
   339
   (@{const_name "==>"}, 2),
blanchet@33192
   340
   (@{const_name Pure.conjunction}, 2),
blanchet@33192
   341
   (@{const_name Trueprop}, 1),
blanchet@33192
   342
   (@{const_name Not}, 1),
blanchet@33192
   343
   (@{const_name False}, 0),
blanchet@33192
   344
   (@{const_name True}, 0),
blanchet@33192
   345
   (@{const_name All}, 1),
blanchet@33192
   346
   (@{const_name Ex}, 1),
blanchet@33192
   347
   (@{const_name "op ="}, 2),
blanchet@33192
   348
   (@{const_name "op &"}, 2),
blanchet@33192
   349
   (@{const_name "op |"}, 2),
blanchet@33192
   350
   (@{const_name "op -->"}, 2),
blanchet@33192
   351
   (@{const_name If}, 3),
blanchet@33192
   352
   (@{const_name Let}, 2),
blanchet@33192
   353
   (@{const_name Unity}, 0),
blanchet@33192
   354
   (@{const_name Pair}, 2),
blanchet@33192
   355
   (@{const_name fst}, 1),
blanchet@33192
   356
   (@{const_name snd}, 1),
blanchet@33192
   357
   (@{const_name Id}, 0),
blanchet@33192
   358
   (@{const_name insert}, 2),
blanchet@33192
   359
   (@{const_name converse}, 1),
blanchet@33192
   360
   (@{const_name trancl}, 1),
blanchet@33192
   361
   (@{const_name rel_comp}, 2),
blanchet@33192
   362
   (@{const_name image}, 2),
blanchet@33192
   363
   (@{const_name finite}, 1),
blanchet@34923
   364
   (@{const_name unknown}, 0),
blanchet@34923
   365
   (@{const_name is_unknown}, 1),
blanchet@35666
   366
   (@{const_name safe_The}, 1),
blanchet@35666
   367
   (@{const_name safe_Eps}, 1),
blanchet@33192
   368
   (@{const_name Frac}, 0),
blanchet@33192
   369
   (@{const_name norm_frac}, 0)]
blanchet@35220
   370
val built_in_nat_consts =
blanchet@35220
   371
  [(@{const_name Suc}, 0),
blanchet@35220
   372
   (@{const_name nat}, 0),
blanchet@35220
   373
   (@{const_name nat_gcd}, 0),
blanchet@35220
   374
   (@{const_name nat_lcm}, 0)]
blanchet@33192
   375
val built_in_descr_consts =
blanchet@33192
   376
  [(@{const_name The}, 1),
blanchet@33192
   377
   (@{const_name Eps}, 1)]
blanchet@33192
   378
val built_in_typed_consts =
blanchet@35220
   379
  [((@{const_name zero_class.zero}, int_T), 0),
blanchet@35220
   380
   ((@{const_name one_class.one}, int_T), 0),
blanchet@35220
   381
   ((@{const_name plus_class.plus}, int_T --> int_T --> int_T), 0),
blanchet@35220
   382
   ((@{const_name minus_class.minus}, int_T --> int_T --> int_T), 0),
blanchet@35220
   383
   ((@{const_name times_class.times}, int_T --> int_T --> int_T), 0),
blanchet@35220
   384
   ((@{const_name div_class.div}, int_T --> int_T --> int_T), 0),
blanchet@35220
   385
   ((@{const_name uminus_class.uminus}, int_T --> int_T), 0),
blanchet@35220
   386
   ((@{const_name ord_class.less}, int_T --> int_T --> bool_T), 2),
blanchet@35220
   387
   ((@{const_name ord_class.less_eq}, int_T --> int_T --> bool_T), 2)]
blanchet@35220
   388
val built_in_typed_nat_consts =
blanchet@35220
   389
  [((@{const_name zero_class.zero}, nat_T), 0),
blanchet@35220
   390
   ((@{const_name one_class.one}, nat_T), 0),
blanchet@35220
   391
   ((@{const_name plus_class.plus}, nat_T --> nat_T --> nat_T), 0),
blanchet@35220
   392
   ((@{const_name minus_class.minus}, nat_T --> nat_T --> nat_T), 0),
blanchet@35220
   393
   ((@{const_name times_class.times}, nat_T --> nat_T --> nat_T), 0),
blanchet@35220
   394
   ((@{const_name div_class.div}, nat_T --> nat_T --> nat_T), 0),
blanchet@35220
   395
   ((@{const_name ord_class.less}, nat_T --> nat_T --> bool_T), 2),
blanchet@35220
   396
   ((@{const_name ord_class.less_eq}, nat_T --> nat_T --> bool_T), 2),
blanchet@35220
   397
   ((@{const_name of_nat}, nat_T --> int_T), 0)]
blanchet@33192
   398
val built_in_set_consts =
blanchet@35220
   399
  [(@{const_name semilattice_inf_class.inf}, 2),
blanchet@35220
   400
   (@{const_name semilattice_sup_class.sup}, 2),
blanchet@35220
   401
   (@{const_name minus_class.minus}, 2),
blanchet@35220
   402
   (@{const_name ord_class.less_eq}, 2)]
blanchet@33192
   403
blanchet@35190
   404
fun unarize_type @{typ "unsigned_bit word"} = nat_T
blanchet@35190
   405
  | unarize_type @{typ "signed_bit word"} = int_T
blanchet@35190
   406
  | unarize_type (Type (s, Ts as _ :: _)) = Type (s, map unarize_type Ts)
blanchet@35190
   407
  | unarize_type T = T
blanchet@35665
   408
fun unarize_unbox_etc_type (Type (@{type_name fin_fun}, Ts)) =
blanchet@35665
   409
    unarize_unbox_etc_type (Type (@{type_name fun}, Ts))
blanchet@35665
   410
  | unarize_unbox_etc_type (Type (@{type_name fun_box}, Ts)) =
blanchet@35665
   411
    unarize_unbox_etc_type (Type (@{type_name fun}, Ts))
blanchet@35665
   412
  | unarize_unbox_etc_type (Type (@{type_name pair_box}, Ts)) =
blanchet@35665
   413
    Type (@{type_name "*"}, map unarize_unbox_etc_type Ts)
blanchet@35665
   414
  | unarize_unbox_etc_type @{typ "unsigned_bit word"} = nat_T
blanchet@35665
   415
  | unarize_unbox_etc_type @{typ "signed_bit word"} = int_T
blanchet@35665
   416
  | unarize_unbox_etc_type (Type (s, Ts as _ :: _)) =
blanchet@35665
   417
    Type (s, map unarize_unbox_etc_type Ts)
blanchet@35665
   418
  | unarize_unbox_etc_type T = T
blanchet@35280
   419
fun uniterize_type (Type (s, Ts as _ :: _)) = Type (s, map uniterize_type Ts)
blanchet@35280
   420
  | uniterize_type @{typ bisim_iterator} = nat_T
blanchet@35280
   421
  | uniterize_type T = T
blanchet@35665
   422
val uniterize_unarize_unbox_etc_type = uniterize_type o unarize_unbox_etc_type
blanchet@35280
   423
blanchet@35665
   424
fun string_for_type ctxt = Syntax.string_of_typ ctxt o unarize_unbox_etc_type
blanchet@33192
   425
blanchet@33192
   426
val prefix_name = Long_Name.qualify o Long_Name.base_name
blanchet@34118
   427
fun shortest_name s = List.last (space_explode "." s) handle List.Empty => ""
blanchet@33192
   428
val prefix_abs_vars = Term.map_abs_vars o prefix_name
blanchet@34118
   429
fun short_name s =
blanchet@33192
   430
  case space_explode name_sep s of
blanchet@33192
   431
    [_] => s |> String.isPrefix nitpick_prefix s ? unprefix nitpick_prefix
blanchet@34118
   432
  | ss => map shortest_name ss |> space_implode "_"
blanchet@34118
   433
fun shorten_names_in_type (Type (s, Ts)) =
blanchet@34118
   434
    Type (short_name s, map shorten_names_in_type Ts)
blanchet@34118
   435
  | shorten_names_in_type T = T
blanchet@34118
   436
val shorten_names_in_term =
blanchet@34118
   437
  map_aterms (fn Const (s, T) => Const (short_name s, T) | t => t)
blanchet@34118
   438
  #> map_types shorten_names_in_type
blanchet@33192
   439
blanchet@35665
   440
fun strict_type_match thy (T1, T2) =
blanchet@33192
   441
  (Sign.typ_match thy (T2, T1) Vartab.empty; true)
blanchet@33192
   442
  handle Type.TYPE_MATCH => false
blanchet@35665
   443
fun type_match thy = strict_type_match thy o pairself unarize_unbox_etc_type
blanchet@33192
   444
fun const_match thy ((s1, T1), (s2, T2)) =
blanchet@33192
   445
  s1 = s2 andalso type_match thy (T1, T2)
blanchet@33192
   446
fun term_match thy (Const x1, Const x2) = const_match thy (x1, x2)
blanchet@33192
   447
  | term_match thy (Free (s1, T1), Free (s2, T2)) =
blanchet@34118
   448
    const_match thy ((shortest_name s1, T1), (shortest_name s2, T2))
blanchet@35280
   449
  | term_match _ (t1, t2) = t1 aconv t2
blanchet@33192
   450
blanchet@35711
   451
fun frac_from_term_pair T t1 t2 =
blanchet@35711
   452
  case snd (HOLogic.dest_number t1) of
blanchet@35711
   453
    0 => HOLogic.mk_number T 0
blanchet@35711
   454
  | n1 => case snd (HOLogic.dest_number t2) of
blanchet@35711
   455
            1 => HOLogic.mk_number T n1
blanchet@35711
   456
          | n2 => Const (@{const_name divide}, T --> T --> T)
blanchet@35711
   457
                  $ HOLogic.mk_number T n1 $ HOLogic.mk_number T n2
blanchet@35711
   458
blanchet@33192
   459
fun is_TFree (TFree _) = true
blanchet@33192
   460
  | is_TFree _ = false
blanchet@35665
   461
fun is_higher_order_type (Type (@{type_name fun}, _)) = true
blanchet@33192
   462
  | is_higher_order_type (Type (_, Ts)) = exists is_higher_order_type Ts
blanchet@33192
   463
  | is_higher_order_type _ = false
blanchet@35665
   464
fun is_fun_type (Type (@{type_name fun}, _)) = true
blanchet@33192
   465
  | is_fun_type _ = false
blanchet@35665
   466
fun is_set_type (Type (@{type_name fun}, [_, @{typ bool}])) = true
blanchet@33192
   467
  | is_set_type _ = false
blanchet@35665
   468
fun is_pair_type (Type (@{type_name "*"}, _)) = true
blanchet@33192
   469
  | is_pair_type _ = false
blanchet@33192
   470
fun is_lfp_iterator_type (Type (s, _)) = String.isPrefix lfp_iterator_prefix s
blanchet@33192
   471
  | is_lfp_iterator_type _ = false
blanchet@33192
   472
fun is_gfp_iterator_type (Type (s, _)) = String.isPrefix gfp_iterator_prefix s
blanchet@33192
   473
  | is_gfp_iterator_type _ = false
blanchet@33192
   474
val is_fp_iterator_type = is_lfp_iterator_type orf is_gfp_iterator_type
blanchet@35280
   475
fun is_iterator_type T =
blanchet@35280
   476
  (T = @{typ bisim_iterator} orelse is_fp_iterator_type T)
blanchet@34118
   477
fun is_boolean_type T = (T = prop_T orelse T = bool_T)
blanchet@35220
   478
fun is_integer_type T = (T = nat_T orelse T = int_T)
blanchet@34121
   479
fun is_bit_type T = (T = @{typ unsigned_bit} orelse T = @{typ signed_bit})
blanchet@34121
   480
fun is_word_type (Type (@{type_name word}, _)) = true
blanchet@34121
   481
  | is_word_type _ = false
blanchet@35280
   482
val is_integer_like_type = is_iterator_type orf is_integer_type orf is_word_type
blanchet@33192
   483
val is_record_type = not o null o Record.dest_recTs
blanchet@33192
   484
fun is_frac_type thy (Type (s, [])) =
blanchet@33574
   485
    not (null (these (AList.lookup (op =) (#frac_types (Data.get thy)) s)))
blanchet@33192
   486
  | is_frac_type _ _ = false
blanchet@35220
   487
fun is_number_type thy = is_integer_like_type orf is_frac_type thy
blanchet@33192
   488
blanchet@33192
   489
fun iterator_type_for_const gfp (s, T) =
blanchet@33192
   490
  Type ((if gfp then gfp_iterator_prefix else lfp_iterator_prefix) ^ s,
blanchet@33192
   491
        binder_types T)
blanchet@35714
   492
fun const_for_iterator_type (Type (s, Ts)) =
blanchet@35714
   493
    (strip_first_name_sep s |> snd, Ts ---> bool_T)
blanchet@33192
   494
  | const_for_iterator_type T =
blanchet@33224
   495
    raise TYPE ("Nitpick_HOL.const_for_iterator_type", [T], [])
blanchet@33192
   496
blanchet@33192
   497
fun strip_n_binders 0 T = ([], T)
blanchet@35665
   498
  | strip_n_binders n (Type (@{type_name fun}, [T1, T2])) =
blanchet@33192
   499
    strip_n_binders (n - 1) T2 |>> cons T1
blanchet@33192
   500
  | strip_n_binders n (Type (@{type_name fun_box}, Ts)) =
blanchet@35665
   501
    strip_n_binders n (Type (@{type_name fun}, Ts))
blanchet@33224
   502
  | strip_n_binders _ T = raise TYPE ("Nitpick_HOL.strip_n_binders", [T], [])
blanchet@33192
   503
val nth_range_type = snd oo strip_n_binders
blanchet@33192
   504
blanchet@35665
   505
fun num_factors_in_type (Type (@{type_name "*"}, [T1, T2])) =
blanchet@33192
   506
    fold (Integer.add o num_factors_in_type) [T1, T2] 0
blanchet@33192
   507
  | num_factors_in_type _ = 1
blanchet@35665
   508
fun num_binder_types (Type (@{type_name fun}, [_, T2])) =
blanchet@35665
   509
    1 + num_binder_types T2
blanchet@33192
   510
  | num_binder_types _ = 0
blanchet@33192
   511
val curried_binder_types = maps HOLogic.flatten_tupleT o binder_types
blanchet@33192
   512
fun maybe_curried_binder_types T =
blanchet@33192
   513
  (if is_pair_type (body_type T) then binder_types else curried_binder_types) T
blanchet@33192
   514
blanchet@33192
   515
fun mk_flat_tuple _ [t] = t
blanchet@35665
   516
  | mk_flat_tuple (Type (@{type_name "*"}, [T1, T2])) (t :: ts) =
blanchet@33192
   517
    HOLogic.pair_const T1 T2 $ t $ (mk_flat_tuple T2 ts)
blanchet@33224
   518
  | mk_flat_tuple T ts = raise TYPE ("Nitpick_HOL.mk_flat_tuple", [T], ts)
blanchet@33192
   519
fun dest_n_tuple 1 t = [t]
blanchet@33192
   520
  | dest_n_tuple n t = HOLogic.dest_prod t ||> dest_n_tuple (n - 1) |> op ::
blanchet@33192
   521
blanchet@35220
   522
type typedef_info =
blanchet@35220
   523
  {rep_type: typ, abs_type: typ, Rep_name: string, Abs_name: string,
blanchet@35220
   524
   set_def: thm option, prop_of_Rep: thm, set_name: string,
blanchet@35220
   525
   Abs_inverse: thm option, Rep_inverse: thm option}
blanchet@35220
   526
blanchet@35220
   527
fun typedef_info thy s =
blanchet@35220
   528
  if is_frac_type thy (Type (s, [])) then
blanchet@35220
   529
    SOME {abs_type = Type (s, []), rep_type = @{typ "int * int"},
blanchet@35220
   530
          Abs_name = @{const_name Abs_Frac}, Rep_name = @{const_name Rep_Frac},
blanchet@35220
   531
          set_def = NONE, prop_of_Rep = @{prop "Rep_Frac x \<in> Frac"}
wenzelm@35845
   532
                          |> Logic.varify_global,
blanchet@35220
   533
          set_name = @{const_name Frac}, Abs_inverse = NONE, Rep_inverse = NONE}
wenzelm@35756
   534
  else case Typedef.get_info_global thy s of
wenzelm@35756
   535
    (* FIXME handle multiple typedef interpretations (!??) *)
wenzelm@35995
   536
    [({abs_type, rep_type, Abs_name, Rep_name, ...}, {set_def, Rep, Abs_inverse,
wenzelm@35995
   537
          Rep_inverse, ...})] =>
blanchet@35220
   538
    SOME {abs_type = abs_type, rep_type = rep_type, Abs_name = Abs_name,
blanchet@35220
   539
          Rep_name = Rep_name, set_def = set_def, prop_of_Rep = prop_of Rep,
blanchet@35220
   540
          set_name = set_prefix ^ s, Abs_inverse = SOME Abs_inverse,
blanchet@35220
   541
          Rep_inverse = SOME Rep_inverse}
wenzelm@35756
   542
  | _ => NONE
blanchet@35220
   543
blanchet@35220
   544
val is_typedef = is_some oo typedef_info
blanchet@35220
   545
val is_real_datatype = is_some oo Datatype.get_info
blanchet@35220
   546
fun is_standard_datatype thy = the oo triple_lookup (type_match thy)
blanchet@35220
   547
blanchet@34118
   548
(* FIXME: Use antiquotation for "code_numeral" below or detect "rep_datatype",
blanchet@34118
   549
   e.g., by adding a field to "Datatype_Aux.info". *)
blanchet@35220
   550
fun is_basic_datatype thy stds s =
blanchet@35220
   551
  member (op =) [@{type_name "*"}, @{type_name bool}, @{type_name unit},
blanchet@35220
   552
                 @{type_name int}, "Code_Numeral.code_numeral"] s orelse
blanchet@35220
   553
  (s = @{type_name nat} andalso is_standard_datatype thy stds nat_T)
blanchet@34118
   554
blanchet@33192
   555
fun instantiate_type thy T1 T1' T2 =
blanchet@33192
   556
  Same.commit (Envir.subst_type_same
blanchet@35311
   557
                   (Sign.typ_match thy (T1, T1') Vartab.empty)) T2
blanchet@33192
   558
  handle Type.TYPE_MATCH =>
blanchet@33224
   559
         raise TYPE ("Nitpick_HOL.instantiate_type", [T1, T1'], [])
blanchet@35311
   560
fun varify_and_instantiate_type thy T1 T1' T2 =
wenzelm@35845
   561
  instantiate_type thy (Logic.varifyT_global T1) T1' (Logic.varifyT_global T2)
blanchet@33192
   562
blanchet@33192
   563
fun repair_constr_type thy body_T' T =
blanchet@35311
   564
  varify_and_instantiate_type thy (body_type T) body_T' T
blanchet@33192
   565
blanchet@33192
   566
fun register_frac_type frac_s ersaetze thy =
blanchet@33192
   567
  let
blanchet@33574
   568
    val {frac_types, codatatypes} = Data.get thy
blanchet@33192
   569
    val frac_types = AList.update (op =) (frac_s, ersaetze) frac_types
blanchet@33574
   570
  in Data.put {frac_types = frac_types, codatatypes = codatatypes} thy end
blanchet@33192
   571
fun unregister_frac_type frac_s = register_frac_type frac_s []
blanchet@33192
   572
blanchet@33192
   573
fun register_codatatype co_T case_name constr_xs thy =
blanchet@33192
   574
  let
blanchet@33574
   575
    val {frac_types, codatatypes} = Data.get thy
blanchet@33192
   576
    val constr_xs = map (apsnd (repair_constr_type thy co_T)) constr_xs
blanchet@33192
   577
    val (co_s, co_Ts) = dest_Type co_T
blanchet@33192
   578
    val _ =
blanchet@34923
   579
      if forall is_TFree co_Ts andalso not (has_duplicates (op =) co_Ts) andalso
blanchet@35665
   580
         co_s <> @{type_name fun} andalso
blanchet@35220
   581
         not (is_basic_datatype thy [(NONE, true)] co_s) then
blanchet@34118
   582
        ()
blanchet@34118
   583
      else
blanchet@34118
   584
        raise TYPE ("Nitpick_HOL.register_codatatype", [co_T], [])
blanchet@33192
   585
    val codatatypes = AList.update (op =) (co_s, (case_name, constr_xs))
blanchet@33192
   586
                                   codatatypes
blanchet@33574
   587
  in Data.put {frac_types = frac_types, codatatypes = codatatypes} thy end
blanchet@33192
   588
fun unregister_codatatype co_T = register_codatatype co_T "" []
blanchet@33192
   589
blanchet@35284
   590
fun is_quot_type thy (Type (s, _)) =
blanchet@35284
   591
    is_some (Quotient_Info.quotdata_lookup_raw thy s)
blanchet@34923
   592
  | is_quot_type _ _ = false
blanchet@35280
   593
fun is_codatatype thy (Type (s, _)) =
blanchet@33574
   594
    not (null (AList.lookup (op =) (#codatatypes (Data.get thy)) s
blanchet@33192
   595
               |> Option.map snd |> these))
blanchet@33192
   596
  | is_codatatype _ _ = false
blanchet@33192
   597
fun is_pure_typedef thy (T as Type (s, _)) =
blanchet@33192
   598
    is_typedef thy s andalso
blanchet@34923
   599
    not (is_real_datatype thy s orelse is_quot_type thy T orelse
blanchet@35220
   600
         is_codatatype thy T orelse is_record_type T orelse
blanchet@35220
   601
         is_integer_like_type T)
blanchet@33192
   602
  | is_pure_typedef _ _ = false
blanchet@33192
   603
fun is_univ_typedef thy (Type (s, _)) =
blanchet@33192
   604
    (case typedef_info thy s of
blanchet@33192
   605
       SOME {set_def, prop_of_Rep, ...} =>
blanchet@35332
   606
       let
blanchet@35332
   607
         val t_opt =
blanchet@35332
   608
           case set_def of
blanchet@35332
   609
             SOME thm => try (snd o Logic.dest_equals o prop_of) thm
blanchet@35332
   610
           | NONE => try (snd o HOLogic.dest_mem o HOLogic.dest_Trueprop)
blanchet@35332
   611
                         prop_of_Rep
blanchet@35332
   612
       in
blanchet@35332
   613
         case t_opt of
blanchet@35332
   614
           SOME (Const (@{const_name top}, _)) => true
blanchet@35386
   615
           (* "Multiset.multiset" *)
blanchet@35332
   616
         | SOME (Const (@{const_name Collect}, _)
blanchet@35332
   617
                 $ Abs (_, _, Const (@{const_name finite}, _) $ _)) => true
blanchet@35386
   618
           (* "FinFun.finfun" *)
blanchet@35386
   619
         | SOME (Const (@{const_name Collect}, _) $ Abs (_, _,
blanchet@35386
   620
                     Const (@{const_name Ex}, _) $ Abs (_, _,
blanchet@35386
   621
                         Const (@{const_name finite}, _) $ _))) => true
blanchet@35332
   622
         | _ => false
blanchet@35332
   623
       end
blanchet@33192
   624
     | NONE => false)
blanchet@33192
   625
  | is_univ_typedef _ _ = false
blanchet@35220
   626
fun is_datatype thy stds (T as Type (s, _)) =
blanchet@34923
   627
    (is_typedef thy s orelse is_codatatype thy T orelse T = @{typ ind} orelse
blanchet@35220
   628
     is_quot_type thy T) andalso not (is_basic_datatype thy stds s)
blanchet@35220
   629
  | is_datatype _ _ _ = false
blanchet@33192
   630
blanchet@33192
   631
fun all_record_fields thy T =
blanchet@33192
   632
  let val (recs, more) = Record.get_extT_fields thy T in
blanchet@33192
   633
    recs @ more :: all_record_fields thy (snd more)
blanchet@33192
   634
  end
blanchet@33192
   635
  handle TYPE _ => []
blanchet@35280
   636
fun is_record_constr (s, T) =
blanchet@33192
   637
  String.isSuffix Record.extN s andalso
blanchet@33192
   638
  let val dataT = body_type T in
blanchet@33192
   639
    is_record_type dataT andalso
blanchet@33192
   640
    s = unsuffix Record.ext_typeN (fst (dest_Type dataT)) ^ Record.extN
blanchet@33192
   641
  end
blanchet@33192
   642
val num_record_fields = Integer.add 1 o length o fst oo Record.get_extT_fields
blanchet@33192
   643
fun no_of_record_field thy s T1 =
blanchet@34118
   644
  find_index (curry (op =) s o fst)
blanchet@34118
   645
             (Record.get_extT_fields thy T1 ||> single |> op @)
blanchet@35665
   646
fun is_record_get thy (s, Type (@{type_name fun}, [T1, _])) =
blanchet@34118
   647
    exists (curry (op =) s o fst) (all_record_fields thy T1)
blanchet@33192
   648
  | is_record_get _ _ = false
blanchet@33192
   649
fun is_record_update thy (s, T) =
blanchet@33192
   650
  String.isSuffix Record.updateN s andalso
blanchet@34118
   651
  exists (curry (op =) (unsuffix Record.updateN s) o fst)
blanchet@33192
   652
         (all_record_fields thy (body_type T))
blanchet@33192
   653
  handle TYPE _ => false
blanchet@35665
   654
fun is_abs_fun thy (s, Type (@{type_name fun}, [_, Type (s', _)])) =
blanchet@33192
   655
    (case typedef_info thy s' of
blanchet@33192
   656
       SOME {Abs_name, ...} => s = Abs_name
blanchet@33192
   657
     | NONE => false)
blanchet@33192
   658
  | is_abs_fun _ _ = false
blanchet@35665
   659
fun is_rep_fun thy (s, Type (@{type_name fun}, [Type (s', _), _])) =
blanchet@33192
   660
    (case typedef_info thy s' of
blanchet@33192
   661
       SOME {Rep_name, ...} => s = Rep_name
blanchet@33192
   662
     | NONE => false)
blanchet@33192
   663
  | is_rep_fun _ _ = false
blanchet@35665
   664
fun is_quot_abs_fun ctxt
blanchet@35665
   665
                    (x as (_, Type (@{type_name fun}, [_, Type (s', _)]))) =
blanchet@35284
   666
    (try (Quotient_Term.absrep_const_chk Quotient_Term.AbsF ctxt) s'
blanchet@35284
   667
     = SOME (Const x))
blanchet@34923
   668
  | is_quot_abs_fun _ _ = false
blanchet@35665
   669
fun is_quot_rep_fun ctxt
blanchet@35665
   670
                    (x as (_, Type (@{type_name fun}, [Type (s', _), _]))) =
blanchet@35284
   671
    (try (Quotient_Term.absrep_const_chk Quotient_Term.RepF ctxt) s'
blanchet@35284
   672
     = SOME (Const x))
blanchet@34923
   673
  | is_quot_rep_fun _ _ = false
blanchet@33192
   674
blanchet@35665
   675
fun mate_of_rep_fun thy (x as (_, Type (@{type_name fun},
blanchet@35665
   676
                                        [T1 as Type (s', _), T2]))) =
blanchet@33192
   677
    (case typedef_info thy s' of
blanchet@35665
   678
       SOME {Abs_name, ...} => (Abs_name, Type (@{type_name fun}, [T2, T1]))
blanchet@33224
   679
     | NONE => raise TERM ("Nitpick_HOL.mate_of_rep_fun", [Const x]))
blanchet@33224
   680
  | mate_of_rep_fun _ x = raise TERM ("Nitpick_HOL.mate_of_rep_fun", [Const x])
blanchet@35284
   681
fun rep_type_for_quot_type thy (T as Type (s, _)) =
blanchet@35284
   682
  let val {qtyp, rtyp, ...} = Quotient_Info.quotdata_lookup thy s in
blanchet@35284
   683
    instantiate_type thy qtyp T rtyp
blanchet@35284
   684
  end
blanchet@35284
   685
fun equiv_relation_for_quot_type thy (Type (s, Ts)) =
blanchet@35284
   686
    let
blanchet@35284
   687
      val {qtyp, equiv_rel, ...} = Quotient_Info.quotdata_lookup thy s
blanchet@35284
   688
      val Ts' = qtyp |> dest_Type |> snd
blanchet@35284
   689
    in subst_atomic_types (Ts' ~~ Ts) equiv_rel end
blanchet@34923
   690
  | equiv_relation_for_quot_type _ T =
blanchet@34923
   691
    raise TYPE ("Nitpick_HOL.equiv_relation_for_quot_type", [T], [])
blanchet@33192
   692
blanchet@33192
   693
fun is_coconstr thy (s, T) =
blanchet@33192
   694
  let
blanchet@33574
   695
    val {codatatypes, ...} = Data.get thy
blanchet@33192
   696
    val co_T = body_type T
blanchet@33192
   697
    val co_s = dest_Type co_T |> fst
blanchet@33192
   698
  in
blanchet@33192
   699
    exists (fn (s', T') => s = s' andalso repair_constr_type thy co_T T' = T)
blanchet@33192
   700
           (AList.lookup (op =) codatatypes co_s |> Option.map snd |> these)
blanchet@33192
   701
  end
blanchet@33192
   702
  handle TYPE ("dest_Type", _, _) => false
blanchet@33192
   703
fun is_constr_like thy (s, T) =
blanchet@35665
   704
  member (op =) [@{const_name FinFun}, @{const_name FunBox},
blanchet@35665
   705
                 @{const_name PairBox}, @{const_name Quot},
blanchet@35665
   706
                 @{const_name Zero_Rep}, @{const_name Suc_Rep}] s orelse
blanchet@35665
   707
  let val (x as (_, T)) = (s, unarize_unbox_etc_type T) in
blanchet@34923
   708
    Refute.is_IDT_constructor thy x orelse is_record_constr x orelse
blanchet@34923
   709
    (is_abs_fun thy x andalso is_pure_typedef thy (range_type T)) orelse
blanchet@34923
   710
    is_coconstr thy x
blanchet@33192
   711
  end
blanchet@33572
   712
fun is_stale_constr thy (x as (_, T)) =
blanchet@34923
   713
  is_codatatype thy (body_type T) andalso is_constr_like thy x andalso
blanchet@34923
   714
  not (is_coconstr thy x)
blanchet@35220
   715
fun is_constr thy stds (x as (_, T)) =
blanchet@34923
   716
  is_constr_like thy x andalso
blanchet@35220
   717
  not (is_basic_datatype thy stds
blanchet@35220
   718
                         (fst (dest_Type (unarize_type (body_type T))))) andalso
blanchet@34923
   719
  not (is_stale_constr thy x)
blanchet@33192
   720
val is_sel = String.isPrefix discr_prefix orf String.isPrefix sel_prefix
blanchet@33192
   721
val is_sel_like_and_no_discr =
blanchet@35665
   722
  String.isPrefix sel_prefix orf
blanchet@35665
   723
  (member (op =) [@{const_name fst}, @{const_name snd}])
blanchet@33192
   724
blanchet@33192
   725
fun in_fun_lhs_for InConstr = InSel
blanchet@33192
   726
  | in_fun_lhs_for _ = InFunLHS
blanchet@33192
   727
fun in_fun_rhs_for InConstr = InConstr
blanchet@33192
   728
  | in_fun_rhs_for InSel = InSel
blanchet@33192
   729
  | in_fun_rhs_for InFunRHS1 = InFunRHS2
blanchet@33192
   730
  | in_fun_rhs_for _ = InFunRHS1
blanchet@33192
   731
blanchet@35067
   732
fun is_boxing_worth_it (hol_ctxt : hol_context) boxy T =
blanchet@33192
   733
  case T of
blanchet@35665
   734
    Type (@{type_name fun}, _) =>
blanchet@34923
   735
    (boxy = InPair orelse boxy = InFunLHS) andalso
blanchet@34923
   736
    not (is_boolean_type (body_type T))
blanchet@35665
   737
  | Type (@{type_name "*"}, Ts) =>
blanchet@34923
   738
    boxy = InPair orelse boxy = InFunRHS1 orelse boxy = InFunRHS2 orelse
blanchet@34923
   739
    ((boxy = InExpr orelse boxy = InFunLHS) andalso
blanchet@35067
   740
     exists (is_boxing_worth_it hol_ctxt InPair)
blanchet@35067
   741
            (map (box_type hol_ctxt InPair) Ts))
blanchet@33192
   742
  | _ => false
blanchet@35280
   743
and should_box_type (hol_ctxt as {thy, boxes, ...}) boxy z =
blanchet@33192
   744
  case triple_lookup (type_match thy) boxes (Type z) of
blanchet@33192
   745
    SOME (SOME box_me) => box_me
blanchet@35067
   746
  | _ => is_boxing_worth_it hol_ctxt boxy (Type z)
blanchet@35067
   747
and box_type hol_ctxt boxy T =
blanchet@33192
   748
  case T of
blanchet@35665
   749
    Type (z as (@{type_name fun}, [T1, T2])) =>
blanchet@34923
   750
    if boxy <> InConstr andalso boxy <> InSel andalso
blanchet@35067
   751
       should_box_type hol_ctxt boxy z then
blanchet@33192
   752
      Type (@{type_name fun_box},
blanchet@35067
   753
            [box_type hol_ctxt InFunLHS T1, box_type hol_ctxt InFunRHS1 T2])
blanchet@33192
   754
    else
blanchet@35067
   755
      box_type hol_ctxt (in_fun_lhs_for boxy) T1
blanchet@35067
   756
      --> box_type hol_ctxt (in_fun_rhs_for boxy) T2
blanchet@35665
   757
  | Type (z as (@{type_name "*"}, Ts)) =>
blanchet@34969
   758
    if boxy <> InConstr andalso boxy <> InSel
blanchet@35067
   759
       andalso should_box_type hol_ctxt boxy z then
blanchet@35067
   760
      Type (@{type_name pair_box}, map (box_type hol_ctxt InSel) Ts)
blanchet@33192
   761
    else
blanchet@35665
   762
      Type (@{type_name "*"},
blanchet@35665
   763
            map (box_type hol_ctxt
blanchet@34118
   764
                          (if boxy = InConstr orelse boxy = InSel then boxy
blanchet@34118
   765
                           else InPair)) Ts)
blanchet@33192
   766
  | _ => T
blanchet@33192
   767
blanchet@35190
   768
fun binarize_nat_and_int_in_type @{typ nat} = @{typ "unsigned_bit word"}
blanchet@35190
   769
  | binarize_nat_and_int_in_type @{typ int} = @{typ "signed_bit word"}
blanchet@35190
   770
  | binarize_nat_and_int_in_type (Type (s, Ts)) =
blanchet@35190
   771
    Type (s, map binarize_nat_and_int_in_type Ts)
blanchet@35190
   772
  | binarize_nat_and_int_in_type T = T
blanchet@35190
   773
val binarize_nat_and_int_in_term = map_types binarize_nat_and_int_in_type
blanchet@35190
   774
blanchet@33192
   775
fun discr_for_constr (s, T) = (discr_prefix ^ s, body_type T --> bool_T)
blanchet@33192
   776
blanchet@33192
   777
fun num_sels_for_constr_type T = length (maybe_curried_binder_types T)
blanchet@33192
   778
fun nth_sel_name_for_constr_name s n =
blanchet@33192
   779
  if s = @{const_name Pair} then
blanchet@33192
   780
    if n = 0 then @{const_name fst} else @{const_name snd}
blanchet@33192
   781
  else
blanchet@33192
   782
    sel_prefix_for n ^ s
blanchet@33192
   783
fun nth_sel_for_constr x ~1 = discr_for_constr x
blanchet@33192
   784
  | nth_sel_for_constr (s, T) n =
blanchet@33192
   785
    (nth_sel_name_for_constr_name s n,
blanchet@33192
   786
     body_type T --> nth (maybe_curried_binder_types T) n)
blanchet@35190
   787
fun binarized_and_boxed_nth_sel_for_constr hol_ctxt binarize =
blanchet@35190
   788
  apsnd ((binarize ? binarize_nat_and_int_in_type) o box_type hol_ctxt InSel)
blanchet@35190
   789
  oo nth_sel_for_constr
blanchet@33192
   790
blanchet@33192
   791
fun sel_no_from_name s =
blanchet@33192
   792
  if String.isPrefix discr_prefix s then
blanchet@33192
   793
    ~1
blanchet@33192
   794
  else if String.isPrefix sel_prefix s then
blanchet@33192
   795
    s |> unprefix sel_prefix |> Int.fromString |> the
blanchet@33192
   796
  else if s = @{const_name snd} then
blanchet@33192
   797
    1
blanchet@33192
   798
  else
blanchet@33192
   799
    0
blanchet@33192
   800
blanchet@35075
   801
val close_form =
blanchet@35075
   802
  let
blanchet@35075
   803
    fun close_up zs zs' =
blanchet@35075
   804
      fold (fn (z as ((s, _), T)) => fn t' =>
blanchet@35075
   805
               Term.all T $ Abs (s, T, abstract_over (Var z, t')))
blanchet@35075
   806
           (take (length zs' - length zs) zs')
blanchet@35075
   807
    fun aux zs (@{const "==>"} $ t1 $ t2) =
blanchet@35075
   808
        let val zs' = Term.add_vars t1 zs in
blanchet@35075
   809
          close_up zs zs' (Logic.mk_implies (t1, aux zs' t2))
blanchet@35075
   810
        end
blanchet@35075
   811
      | aux zs t = close_up zs (Term.add_vars t zs) t
blanchet@35075
   812
  in aux [] end
blanchet@35075
   813
blanchet@33192
   814
fun eta_expand _ t 0 = t
blanchet@33192
   815
  | eta_expand Ts (Abs (s, T, t')) n =
blanchet@33192
   816
    Abs (s, T, eta_expand (T :: Ts) t' (n - 1))
blanchet@33192
   817
  | eta_expand Ts t n =
blanchet@33192
   818
    fold_rev (curry3 Abs ("x\<^isub>\<eta>" ^ nat_subscript n))
blanchet@33192
   819
             (List.take (binder_types (fastype_of1 (Ts, t)), n))
blanchet@33192
   820
             (list_comb (incr_boundvars n t, map Bound (n - 1 downto 0)))
blanchet@33192
   821
blanchet@33192
   822
fun extensionalize t =
blanchet@33192
   823
  case t of
blanchet@33192
   824
    (t0 as @{const Trueprop}) $ t1 => t0 $ extensionalize t1
blanchet@33192
   825
  | Const (@{const_name "op ="}, _) $ t1 $ Abs (s, T, t2) =>
blanchet@33192
   826
    let val v = Var ((s, maxidx_of_term t + 1), T) in
blanchet@33192
   827
      extensionalize (HOLogic.mk_eq (t1 $ v, subst_bound (v, t2)))
blanchet@33192
   828
    end
blanchet@33192
   829
  | _ => t
blanchet@33192
   830
blanchet@33192
   831
fun distinctness_formula T =
blanchet@33192
   832
  all_distinct_unordered_pairs_of
blanchet@33192
   833
  #> map (fn (t1, t2) => @{const Not} $ (HOLogic.eq_const T $ t1 $ t2))
blanchet@33192
   834
  #> List.foldr (s_conj o swap) @{const True}
blanchet@33192
   835
blanchet@35220
   836
fun zero_const T = Const (@{const_name zero_class.zero}, T)
blanchet@33192
   837
fun suc_const T = Const (@{const_name Suc}, T --> T)
blanchet@33192
   838
blanchet@35220
   839
fun uncached_datatype_constrs ({thy, stds, ...} : hol_context)
blanchet@35220
   840
                              (T as Type (s, Ts)) =
blanchet@33574
   841
    (case AList.lookup (op =) (#codatatypes (Data.get thy)) s of
blanchet@34969
   842
       SOME (_, xs' as (_ :: _)) => map (apsnd (repair_constr_type thy T)) xs'
blanchet@33572
   843
     | _ =>
blanchet@35220
   844
       if is_datatype thy stds T then
blanchet@33572
   845
         case Datatype.get_info thy s of
blanchet@33572
   846
           SOME {index, descr, ...} =>
blanchet@33572
   847
           let
blanchet@33572
   848
             val (_, dtyps, constrs) = AList.lookup (op =) descr index |> the
blanchet@33572
   849
           in
blanchet@33572
   850
             map (fn (s', Us) =>
blanchet@33572
   851
                     (s', map (Refute.typ_of_dtyp descr (dtyps ~~ Ts)) Us
blanchet@33572
   852
                          ---> T)) constrs
blanchet@33572
   853
           end
blanchet@33572
   854
         | NONE =>
blanchet@33572
   855
           if is_record_type T then
blanchet@33572
   856
             let
blanchet@33572
   857
               val s' = unsuffix Record.ext_typeN s ^ Record.extN
blanchet@33572
   858
               val T' = (Record.get_extT_fields thy T
blanchet@33572
   859
                        |> apsnd single |> uncurry append |> map snd) ---> T
blanchet@33572
   860
             in [(s', T')] end
blanchet@34923
   861
           else if is_quot_type thy T then
blanchet@34923
   862
             [(@{const_name Quot}, rep_type_for_quot_type thy T --> T)]
blanchet@33572
   863
           else case typedef_info thy s of
blanchet@33572
   864
             SOME {abs_type, rep_type, Abs_name, ...} =>
blanchet@35311
   865
             [(Abs_name,
blanchet@35311
   866
               varify_and_instantiate_type thy abs_type T rep_type --> T)]
blanchet@33572
   867
           | NONE =>
blanchet@33572
   868
             if T = @{typ ind} then
blanchet@33572
   869
               [dest_Const @{const Zero_Rep}, dest_Const @{const Suc_Rep}]
blanchet@33572
   870
             else
blanchet@33572
   871
               []
blanchet@33572
   872
       else
blanchet@33572
   873
         [])
blanchet@33571
   874
  | uncached_datatype_constrs _ _ = []
blanchet@35220
   875
fun datatype_constrs (hol_ctxt as {constr_cache, ...}) T =
blanchet@33571
   876
  case AList.lookup (op =) (!constr_cache) T of
blanchet@33571
   877
    SOME xs => xs
blanchet@33571
   878
  | NONE =>
blanchet@35220
   879
    let val xs = uncached_datatype_constrs hol_ctxt T in
blanchet@33571
   880
      (Unsynchronized.change constr_cache (cons (T, xs)); xs)
blanchet@33571
   881
    end
blanchet@35190
   882
fun binarized_and_boxed_datatype_constrs hol_ctxt binarize =
blanchet@35190
   883
  map (apsnd ((binarize ? binarize_nat_and_int_in_type)
blanchet@35190
   884
              o box_type hol_ctxt InConstr)) o datatype_constrs hol_ctxt
blanchet@33192
   885
val num_datatype_constrs = length oo datatype_constrs
blanchet@33192
   886
blanchet@33192
   887
fun constr_name_for_sel_like @{const_name fst} = @{const_name Pair}
blanchet@33192
   888
  | constr_name_for_sel_like @{const_name snd} = @{const_name Pair}
blanchet@33192
   889
  | constr_name_for_sel_like s' = original_name s'
blanchet@35190
   890
fun binarized_and_boxed_constr_for_sel hol_ctxt binarize (s', T') =
blanchet@33192
   891
  let val s = constr_name_for_sel_like s' in
blanchet@35190
   892
    AList.lookup (op =)
blanchet@35190
   893
        (binarized_and_boxed_datatype_constrs hol_ctxt binarize (domain_type T'))
blanchet@35190
   894
        s
blanchet@33192
   895
    |> the |> pair s
blanchet@33192
   896
  end
blanchet@34969
   897
blanchet@35067
   898
fun discr_term_for_constr hol_ctxt (x as (s, T)) =
blanchet@33192
   899
  let val dataT = body_type T in
blanchet@33192
   900
    if s = @{const_name Suc} then
blanchet@33192
   901
      Abs (Name.uu, dataT,
blanchet@33192
   902
           @{const Not} $ HOLogic.mk_eq (zero_const dataT, Bound 0))
blanchet@35067
   903
    else if num_datatype_constrs hol_ctxt dataT >= 2 then
blanchet@33192
   904
      Const (discr_for_constr x)
blanchet@33192
   905
    else
blanchet@33192
   906
      Abs (Name.uu, dataT, @{const True})
blanchet@33192
   907
  end
blanchet@35280
   908
fun discriminate_value (hol_ctxt as {thy, ...}) x t =
blanchet@35280
   909
  case head_of t of
blanchet@35280
   910
    Const x' =>
blanchet@33192
   911
    if x = x' then @{const True}
blanchet@33192
   912
    else if is_constr_like thy x' then @{const False}
blanchet@35067
   913
    else betapply (discr_term_for_constr hol_ctxt x, t)
blanchet@35067
   914
  | _ => betapply (discr_term_for_constr hol_ctxt x, t)
blanchet@33192
   915
blanchet@35220
   916
fun nth_arg_sel_term_for_constr thy stds (x as (s, T)) n =
blanchet@33192
   917
  let val (arg_Ts, dataT) = strip_type T in
blanchet@35220
   918
    if dataT = nat_T andalso is_standard_datatype thy stds nat_T then
blanchet@35220
   919
      @{term "%n::nat. n - 1"}
blanchet@33192
   920
    else if is_pair_type dataT then
blanchet@33192
   921
      Const (nth_sel_for_constr x n)
blanchet@33192
   922
    else
blanchet@33192
   923
      let
blanchet@35665
   924
        fun aux m (Type (@{type_name "*"}, [T1, T2])) =
blanchet@33192
   925
            let
blanchet@33192
   926
              val (m, t1) = aux m T1
blanchet@33192
   927
              val (m, t2) = aux m T2
blanchet@33192
   928
            in (m, HOLogic.mk_prod (t1, t2)) end
blanchet@33192
   929
          | aux m T =
blanchet@33192
   930
            (m + 1, Const (nth_sel_name_for_constr_name s m, dataT --> T)
blanchet@33192
   931
                    $ Bound 0)
blanchet@33192
   932
        val m = fold (Integer.add o num_factors_in_type)
blanchet@33192
   933
                     (List.take (arg_Ts, n)) 0
blanchet@33192
   934
      in Abs ("x", dataT, aux m (nth arg_Ts n) |> snd) end
blanchet@33192
   935
  end
blanchet@35220
   936
fun select_nth_constr_arg thy stds x t n res_T =
blanchet@35220
   937
  (case strip_comb t of
blanchet@35220
   938
     (Const x', args) =>
blanchet@35220
   939
     if x = x' then nth args n
blanchet@35220
   940
     else if is_constr_like thy x' then Const (@{const_name unknown}, res_T)
blanchet@35220
   941
     else raise SAME ()
blanchet@35220
   942
   | _ => raise SAME())
blanchet@35220
   943
  handle SAME () => betapply (nth_arg_sel_term_for_constr thy stds x n, t)
blanchet@33192
   944
blanchet@35220
   945
fun construct_value _ _ x [] = Const x
blanchet@35220
   946
  | construct_value thy stds (x as (s, _)) args =
blanchet@33192
   947
    let val args = map Envir.eta_contract args in
blanchet@33192
   948
      case hd args of
blanchet@35280
   949
        Const (s', _) $ t =>
blanchet@34923
   950
        if is_sel_like_and_no_discr s' andalso
blanchet@34923
   951
           constr_name_for_sel_like s' = s andalso
blanchet@35220
   952
           forall (fn (n, t') =>
blanchet@35220
   953
                      select_nth_constr_arg thy stds x t n dummyT = t')
blanchet@34923
   954
                  (index_seq 0 (length args) ~~ args) then
blanchet@33192
   955
          t
blanchet@33192
   956
        else
blanchet@33192
   957
          list_comb (Const x, args)
blanchet@33192
   958
      | _ => list_comb (Const x, args)
blanchet@33192
   959
    end
blanchet@33192
   960
blanchet@35665
   961
fun constr_expand (hol_ctxt as {thy, stds, ...}) T t =
blanchet@35665
   962
  (case head_of t of
blanchet@35665
   963
     Const x => if is_constr_like thy x then t else raise SAME ()
blanchet@35665
   964
   | _ => raise SAME ())
blanchet@35665
   965
  handle SAME () =>
blanchet@35665
   966
         let
blanchet@35665
   967
           val x' as (_, T') =
blanchet@35665
   968
             if is_pair_type T then
blanchet@35665
   969
               let val (T1, T2) = HOLogic.dest_prodT T in
blanchet@35665
   970
                 (@{const_name Pair}, T1 --> T2 --> T)
blanchet@35665
   971
               end
blanchet@35665
   972
             else
blanchet@35665
   973
               datatype_constrs hol_ctxt T |> hd
blanchet@35665
   974
           val arg_Ts = binder_types T'
blanchet@35665
   975
         in
blanchet@35665
   976
           list_comb (Const x', map2 (select_nth_constr_arg thy stds x' t)
blanchet@35665
   977
                                     (index_seq 0 (length arg_Ts)) arg_Ts)
blanchet@35665
   978
         end
blanchet@35665
   979
blanchet@35665
   980
fun coerce_bound_no f j t =
blanchet@35665
   981
  case t of
blanchet@35665
   982
    t1 $ t2 => coerce_bound_no f j t1 $ coerce_bound_no f j t2
blanchet@35665
   983
  | Abs (s, T, t') => Abs (s, T, coerce_bound_no f (j + 1) t')
blanchet@35665
   984
  | Bound j' => if j' = j then f t else t
blanchet@35665
   985
  | _ => t
blanchet@35665
   986
fun coerce_bound_0_in_term hol_ctxt new_T old_T =
blanchet@35665
   987
  old_T <> new_T ? coerce_bound_no (coerce_term hol_ctxt [new_T] old_T new_T) 0
blanchet@35665
   988
and coerce_term (hol_ctxt as {thy, stds, fast_descrs, ...}) Ts new_T old_T t =
blanchet@35665
   989
  if old_T = new_T then
blanchet@35665
   990
    t
blanchet@35665
   991
  else
blanchet@35665
   992
    case (new_T, old_T) of
blanchet@35665
   993
      (Type (new_s, new_Ts as [new_T1, new_T2]),
blanchet@35665
   994
       Type (@{type_name fun}, [old_T1, old_T2])) =>
blanchet@35665
   995
      (case eta_expand Ts t 1 of
blanchet@35665
   996
         Abs (s, _, t') =>
blanchet@35665
   997
         Abs (s, new_T1,
blanchet@35665
   998
              t' |> coerce_bound_0_in_term hol_ctxt new_T1 old_T1
blanchet@35665
   999
                 |> coerce_term hol_ctxt (new_T1 :: Ts) new_T2 old_T2)
blanchet@35665
  1000
         |> Envir.eta_contract
blanchet@35665
  1001
         |> new_s <> @{type_name fun}
blanchet@35665
  1002
            ? construct_value thy stds
blanchet@35665
  1003
                  (if new_s = @{type_name fin_fun} then @{const_name FinFun}
blanchet@35665
  1004
                   else @{const_name FunBox},
blanchet@35665
  1005
                   Type (@{type_name fun}, new_Ts) --> new_T)
blanchet@35665
  1006
              o single
blanchet@35665
  1007
       | t' => raise TERM ("Nitpick_HOL.coerce_term", [t']))
blanchet@35665
  1008
    | (Type (new_s, new_Ts as [new_T1, new_T2]),
blanchet@35665
  1009
       Type (old_s, old_Ts as [old_T1, old_T2])) =>
blanchet@35665
  1010
      if old_s = @{type_name fin_fun} orelse old_s = @{type_name fun_box} orelse
blanchet@35665
  1011
         old_s = @{type_name pair_box} orelse old_s = @{type_name "*"} then
blanchet@35665
  1012
        case constr_expand hol_ctxt old_T t of
blanchet@35665
  1013
          Const (old_s, _) $ t1 =>
blanchet@35665
  1014
          if new_s = @{type_name fun} then
blanchet@35665
  1015
            coerce_term hol_ctxt Ts new_T (Type (@{type_name fun}, old_Ts)) t1
blanchet@35665
  1016
          else
blanchet@35665
  1017
            construct_value thy stds
blanchet@35665
  1018
                (old_s, Type (@{type_name fun}, new_Ts) --> new_T)
blanchet@35665
  1019
                [coerce_term hol_ctxt Ts (Type (@{type_name fun}, new_Ts))
blanchet@35665
  1020
                             (Type (@{type_name fun}, old_Ts)) t1]
blanchet@35665
  1021
        | Const _ $ t1 $ t2 =>
blanchet@35665
  1022
          construct_value thy stds
blanchet@35665
  1023
              (if new_s = @{type_name "*"} then @{const_name Pair}
blanchet@35665
  1024
               else @{const_name PairBox}, new_Ts ---> new_T)
blanchet@35665
  1025
              (map3 (coerce_term hol_ctxt Ts) [new_T1, new_T2] [old_T1, old_T2]
blanchet@35665
  1026
                    [t1, t2])
blanchet@35665
  1027
        | t' => raise TERM ("Nitpick_HOL.coerce_term", [t'])
blanchet@35665
  1028
      else
blanchet@35665
  1029
        raise TYPE ("Nitpick_HOL.coerce_term", [new_T, old_T], [t])
blanchet@35665
  1030
    | _ => raise TYPE ("Nitpick_HOL.coerce_term", [new_T, old_T], [t])
blanchet@35665
  1031
blanchet@35665
  1032
fun card_of_type assigns (Type (@{type_name fun}, [T1, T2])) =
blanchet@34120
  1033
    reasonable_power (card_of_type assigns T2) (card_of_type assigns T1)
blanchet@35665
  1034
  | card_of_type assigns (Type (@{type_name "*"}, [T1, T2])) =
blanchet@34120
  1035
    card_of_type assigns T1 * card_of_type assigns T2
blanchet@33192
  1036
  | card_of_type _ (Type (@{type_name itself}, _)) = 1
blanchet@33192
  1037
  | card_of_type _ @{typ prop} = 2
blanchet@33192
  1038
  | card_of_type _ @{typ bool} = 2
blanchet@33192
  1039
  | card_of_type _ @{typ unit} = 1
blanchet@34120
  1040
  | card_of_type assigns T =
blanchet@34120
  1041
    case AList.lookup (op =) assigns T of
blanchet@33192
  1042
      SOME k => k
blanchet@33192
  1043
    | NONE => if T = @{typ bisim_iterator} then 0
blanchet@33224
  1044
              else raise TYPE ("Nitpick_HOL.card_of_type", [T], [])
blanchet@35665
  1045
fun bounded_card_of_type max default_card assigns
blanchet@35665
  1046
                         (Type (@{type_name fun}, [T1, T2])) =
blanchet@33192
  1047
    let
blanchet@34120
  1048
      val k1 = bounded_card_of_type max default_card assigns T1
blanchet@34120
  1049
      val k2 = bounded_card_of_type max default_card assigns T2
blanchet@33192
  1050
    in
blanchet@33192
  1051
      if k1 = max orelse k2 = max then max
blanchet@33192
  1052
      else Int.min (max, reasonable_power k2 k1)
blanchet@33192
  1053
    end
blanchet@35665
  1054
  | bounded_card_of_type max default_card assigns
blanchet@35665
  1055
                         (Type (@{type_name "*"}, [T1, T2])) =
blanchet@33192
  1056
    let
blanchet@34120
  1057
      val k1 = bounded_card_of_type max default_card assigns T1
blanchet@34120
  1058
      val k2 = bounded_card_of_type max default_card assigns T2
blanchet@33192
  1059
    in if k1 = max orelse k2 = max then max else Int.min (max, k1 * k2) end
blanchet@34120
  1060
  | bounded_card_of_type max default_card assigns T =
blanchet@33192
  1061
    Int.min (max, if default_card = ~1 then
blanchet@34120
  1062
                    card_of_type assigns T
blanchet@33192
  1063
                  else
blanchet@34120
  1064
                    card_of_type assigns T
blanchet@33224
  1065
                    handle TYPE ("Nitpick_HOL.card_of_type", _, _) =>
blanchet@33192
  1066
                           default_card)
blanchet@35385
  1067
fun bounded_exact_card_of_type hol_ctxt finitizable_dataTs max default_card
blanchet@35385
  1068
                               assigns T =
blanchet@33192
  1069
  let
blanchet@33192
  1070
    fun aux avoid T =
blanchet@34118
  1071
      (if member (op =) avoid T then
blanchet@33192
  1072
         0
blanchet@35385
  1073
       else if member (op =) finitizable_dataTs T then
blanchet@35385
  1074
         raise SAME ()
blanchet@33192
  1075
       else case T of
blanchet@35665
  1076
         Type (@{type_name fun}, [T1, T2]) =>
blanchet@33192
  1077
         let
blanchet@33192
  1078
           val k1 = aux avoid T1
blanchet@33192
  1079
           val k2 = aux avoid T2
blanchet@33192
  1080
         in
blanchet@33192
  1081
           if k1 = 0 orelse k2 = 0 then 0
blanchet@33192
  1082
           else if k1 >= max orelse k2 >= max then max
blanchet@33192
  1083
           else Int.min (max, reasonable_power k2 k1)
blanchet@33192
  1084
         end
blanchet@35665
  1085
       | Type (@{type_name "*"}, [T1, T2]) =>
blanchet@33192
  1086
         let
blanchet@33192
  1087
           val k1 = aux avoid T1
blanchet@33192
  1088
           val k2 = aux avoid T2
blanchet@33192
  1089
         in
blanchet@33192
  1090
           if k1 = 0 orelse k2 = 0 then 0
blanchet@33192
  1091
           else if k1 >= max orelse k2 >= max then max
blanchet@33192
  1092
           else Int.min (max, k1 * k2)
blanchet@33192
  1093
         end
blanchet@33192
  1094
       | Type (@{type_name itself}, _) => 1
blanchet@33192
  1095
       | @{typ prop} => 2
blanchet@33192
  1096
       | @{typ bool} => 2
blanchet@33192
  1097
       | @{typ unit} => 1
blanchet@33192
  1098
       | Type _ =>
blanchet@35067
  1099
         (case datatype_constrs hol_ctxt T of
blanchet@34123
  1100
            [] => if is_integer_type T orelse is_bit_type T then 0
blanchet@34123
  1101
                  else raise SAME ()
blanchet@33192
  1102
          | constrs =>
blanchet@33192
  1103
            let
blanchet@33192
  1104
              val constr_cards =
blanchet@35280
  1105
                map (Integer.prod o map (aux (T :: avoid)) o binder_types o snd)
blanchet@35280
  1106
                    constrs
blanchet@33192
  1107
            in
blanchet@34118
  1108
              if exists (curry (op =) 0) constr_cards then 0
blanchet@33192
  1109
              else Integer.sum constr_cards
blanchet@33192
  1110
            end)
blanchet@33192
  1111
       | _ => raise SAME ())
blanchet@34120
  1112
      handle SAME () =>
blanchet@34120
  1113
             AList.lookup (op =) assigns T |> the_default default_card
blanchet@33192
  1114
  in Int.min (max, aux [] T) end
blanchet@33192
  1115
blanchet@35665
  1116
val small_type_max_card = 5
blanchet@35665
  1117
blanchet@35384
  1118
fun is_finite_type hol_ctxt T =
blanchet@35665
  1119
  bounded_exact_card_of_type hol_ctxt [] 1 2 [] T > 0
blanchet@35665
  1120
fun is_small_finite_type hol_ctxt T =
blanchet@35665
  1121
  let val n = bounded_exact_card_of_type hol_ctxt [] 1 2 [] T in
blanchet@35665
  1122
    n > 0 andalso n <= small_type_max_card
blanchet@35665
  1123
  end
blanchet@33192
  1124
blanchet@33192
  1125
fun is_ground_term (t1 $ t2) = is_ground_term t1 andalso is_ground_term t2
blanchet@33192
  1126
  | is_ground_term (Const _) = true
blanchet@33192
  1127
  | is_ground_term _ = false
blanchet@33192
  1128
blanchet@36062
  1129
fun hashw_term (t1 $ t2) = hashw (hashw_term t1, hashw_term t2)
blanchet@36062
  1130
  | hashw_term (Const (s, _)) = hashw_string (s, 0w0)
blanchet@33192
  1131
  | hashw_term _ = 0w0
blanchet@33192
  1132
val hash_term = Word.toInt o hashw_term
blanchet@33192
  1133
blanchet@33192
  1134
fun special_bounds ts =
wenzelm@35408
  1135
  fold Term.add_vars ts [] |> sort (Term_Ord.fast_indexname_ord o pairself fst)
blanchet@33192
  1136
blanchet@33192
  1137
fun abs_var ((s, j), T) body = Abs (s, T, abstract_over (Var ((s, j), T), body))
blanchet@33192
  1138
blanchet@33562
  1139
fun is_funky_typedef_name thy s =
blanchet@34118
  1140
  member (op =) [@{type_name unit}, @{type_name "*"}, @{type_name "+"},
blanchet@34923
  1141
                 @{type_name int}] s orelse
blanchet@34923
  1142
  is_frac_type thy (Type (s, []))
blanchet@33562
  1143
fun is_funky_typedef thy (Type (s, _)) = is_funky_typedef_name thy s
blanchet@33562
  1144
  | is_funky_typedef _ _ = false
blanchet@33192
  1145
fun is_arity_type_axiom (Const (@{const_name HOL.type_class}, _)
blanchet@33192
  1146
                         $ Const (@{const_name TYPE}, _)) = true
blanchet@33192
  1147
  | is_arity_type_axiom _ = false
blanchet@33197
  1148
fun is_typedef_axiom thy boring (@{const "==>"} $ _ $ t2) =
blanchet@33197
  1149
    is_typedef_axiom thy boring t2
blanchet@33197
  1150
  | is_typedef_axiom thy boring
blanchet@33192
  1151
        (@{const Trueprop} $ (Const (@{const_name Typedef.type_definition}, _)
blanchet@35665
  1152
         $ Const (_, Type (@{type_name fun}, [Type (s, _), _]))
blanchet@35665
  1153
         $ Const _ $ _)) =
blanchet@33562
  1154
    boring <> is_funky_typedef_name thy s andalso is_typedef thy s
blanchet@33192
  1155
  | is_typedef_axiom _ _ _ = false
blanchet@36126
  1156
val is_class_axiom =
blanchet@36126
  1157
  Logic.strip_horn #> swap #> op :: #> forall (can Logic.dest_of_class)
blanchet@33192
  1158
blanchet@33192
  1159
(* Distinguishes between (1) constant definition axioms, (2) type arity and
blanchet@33192
  1160
   typedef axioms, and (3) other axioms, and returns the pair ((1), (3)).
blanchet@33192
  1161
   Typedef axioms are uninteresting to Nitpick, because it can retrieve them
blanchet@33192
  1162
   using "typedef_info". *)
blanchet@33192
  1163
fun partition_axioms_by_definitionality thy axioms def_names =
blanchet@33192
  1164
  let
blanchet@33192
  1165
    val axioms = sort (fast_string_ord o pairself fst) axioms
blanchet@33192
  1166
    val defs = OrdList.inter (fast_string_ord o apsnd fst) def_names axioms
blanchet@33192
  1167
    val nondefs =
blanchet@33192
  1168
      OrdList.subtract (fast_string_ord o apsnd fst) def_names axioms
blanchet@33192
  1169
      |> filter_out ((is_arity_type_axiom orf is_typedef_axiom thy true) o snd)
blanchet@33192
  1170
  in pairself (map snd) (defs, nondefs) end
blanchet@33192
  1171
blanchet@33197
  1172
(* Ideally we would check against "Complex_Main", not "Refute", but any theory
blanchet@33197
  1173
   will do as long as it contains all the "axioms" and "axiomatization"
blanchet@33192
  1174
   commands. *)
blanchet@33192
  1175
fun is_built_in_theory thy = Theory.subthy (thy, @{theory Refute})
blanchet@33192
  1176
blanchet@35283
  1177
val is_trivial_definition =
blanchet@35283
  1178
  the_default false o try (op aconv o Logic.dest_equals)
blanchet@33192
  1179
val is_plain_definition =
blanchet@33192
  1180
  let
blanchet@33192
  1181
    fun do_lhs t1 =
blanchet@33192
  1182
      case strip_comb t1 of
blanchet@34923
  1183
        (Const _, args) =>
blanchet@34923
  1184
        forall is_Var args andalso not (has_duplicates (op =) args)
blanchet@33192
  1185
      | _ => false
blanchet@33192
  1186
    fun do_eq (Const (@{const_name "=="}, _) $ t1 $ _) = do_lhs t1
blanchet@33192
  1187
      | do_eq (@{const Trueprop} $ (Const (@{const_name "op ="}, _) $ t1 $ _)) =
blanchet@33192
  1188
        do_lhs t1
blanchet@33192
  1189
      | do_eq _ = false
blanchet@33192
  1190
  in do_eq end
blanchet@33192
  1191
blanchet@35335
  1192
fun all_axioms_of thy subst =
blanchet@33192
  1193
  let
blanchet@35335
  1194
    val axioms_of_thys =
blanchet@35893
  1195
      maps Thm.axioms_of
blanchet@35893
  1196
      #> map (apsnd (subst_atomic subst o prop_of))
blanchet@35893
  1197
      #> filter_out (is_class_axiom o snd)
blanchet@33192
  1198
    val specs = Defs.all_specifications_of (Theory.defs_of thy)
wenzelm@33701
  1199
    val def_names = specs |> maps snd |> map_filter #def
blanchet@33197
  1200
                    |> OrdList.make fast_string_ord
blanchet@33192
  1201
    val thys = thy :: Theory.ancestors_of thy
blanchet@33192
  1202
    val (built_in_thys, user_thys) = List.partition is_built_in_theory thys
blanchet@33192
  1203
    val built_in_axioms = axioms_of_thys built_in_thys
blanchet@33192
  1204
    val user_axioms = axioms_of_thys user_thys
blanchet@33192
  1205
    val (built_in_defs, built_in_nondefs) =
blanchet@33192
  1206
      partition_axioms_by_definitionality thy built_in_axioms def_names
blanchet@33197
  1207
      ||> filter (is_typedef_axiom thy false)
blanchet@33192
  1208
    val (user_defs, user_nondefs) =
blanchet@33192
  1209
      partition_axioms_by_definitionality thy user_axioms def_names
blanchet@33197
  1210
    val (built_in_nondefs, user_nondefs) =
blanchet@33197
  1211
      List.partition (is_typedef_axiom thy false) user_nondefs
blanchet@33197
  1212
      |>> append built_in_nondefs
blanchet@34118
  1213
    val defs =
blanchet@34118
  1214
      (thy |> PureThy.all_thms_of
blanchet@34118
  1215
           |> filter (curry (op =) Thm.definitionK o Thm.get_kind o snd)
blanchet@35283
  1216
           |> map (prop_of o snd)
blanchet@35283
  1217
           |> filter_out is_trivial_definition
blanchet@35283
  1218
           |> filter is_plain_definition) @
blanchet@34118
  1219
      user_defs @ built_in_defs
blanchet@33192
  1220
  in (defs, built_in_nondefs, user_nondefs) end
blanchet@33192
  1221
blanchet@35220
  1222
fun arity_of_built_in_const thy stds fast_descrs (s, T) =
blanchet@33192
  1223
  if s = @{const_name If} then
blanchet@33192
  1224
    if nth_range_type 3 T = @{typ bool} then NONE else SOME 3
blanchet@35220
  1225
  else
blanchet@35220
  1226
    let val std_nats = is_standard_datatype thy stds nat_T in
blanchet@35220
  1227
      case AList.lookup (op =)
blanchet@35220
  1228
                    (built_in_consts
blanchet@35220
  1229
                     |> std_nats ? append built_in_nat_consts
blanchet@35220
  1230
                     |> fast_descrs ? append built_in_descr_consts) s of
blanchet@35220
  1231
        SOME n => SOME n
blanchet@35220
  1232
      | NONE =>
blanchet@35220
  1233
        case AList.lookup (op =)
blanchet@35220
  1234
                 (built_in_typed_consts
blanchet@35220
  1235
                  |> std_nats ? append built_in_typed_nat_consts)
blanchet@35220
  1236
                 (s, unarize_type T) of
blanchet@35220
  1237
          SOME n => SOME n
blanchet@35220
  1238
        | NONE =>
blanchet@35280
  1239
          case s of
blanchet@35280
  1240
            @{const_name zero_class.zero} =>
blanchet@35280
  1241
            if is_iterator_type T then SOME 0 else NONE
blanchet@35280
  1242
          | @{const_name Suc} =>
blanchet@35280
  1243
            if is_iterator_type (domain_type T) then SOME 0 else NONE
blanchet@35280
  1244
          | _ => if is_fun_type T andalso is_set_type (domain_type T) then
blanchet@35280
  1245
                   AList.lookup (op =) built_in_set_consts s
blanchet@35280
  1246
                 else
blanchet@35280
  1247
                   NONE
blanchet@35220
  1248
    end
blanchet@35220
  1249
val is_built_in_const = is_some oooo arity_of_built_in_const
blanchet@33192
  1250
blanchet@33192
  1251
(* This function is designed to work for both real definition axioms and
blanchet@33192
  1252
   simplification rules (equational specifications). *)
blanchet@33192
  1253
fun term_under_def t =
blanchet@33192
  1254
  case t of
blanchet@33192
  1255
    @{const "==>"} $ _ $ t2 => term_under_def t2
blanchet@33192
  1256
  | Const (@{const_name "=="}, _) $ t1 $ _ => term_under_def t1
blanchet@33192
  1257
  | @{const Trueprop} $ t1 => term_under_def t1
blanchet@33192
  1258
  | Const (@{const_name "op ="}, _) $ t1 $ _ => term_under_def t1
blanchet@33192
  1259
  | Abs (_, _, t') => term_under_def t'
blanchet@33192
  1260
  | t1 $ _ => term_under_def t1
blanchet@33192
  1261
  | _ => t
blanchet@33192
  1262
blanchet@33192
  1263
(* Here we crucially rely on "Refute.specialize_type" performing a preorder
blanchet@33192
  1264
   traversal of the term, without which the wrong occurrence of a constant could
blanchet@33192
  1265
   be matched in the face of overloading. *)
blanchet@35220
  1266
fun def_props_for_const thy stds fast_descrs table (x as (s, _)) =
blanchet@35220
  1267
  if is_built_in_const thy stds fast_descrs x then
blanchet@33192
  1268
    []
blanchet@33192
  1269
  else
blanchet@33192
  1270
    these (Symtab.lookup table s)
blanchet@33192
  1271
    |> map_filter (try (Refute.specialize_type thy x))
blanchet@34118
  1272
    |> filter (curry (op =) (Const x) o term_under_def)
blanchet@33192
  1273
blanchet@35280
  1274
fun normalized_rhs_of t =
blanchet@33192
  1275
  let
blanchet@33743
  1276
    fun aux (v as Var _) (SOME t) = SOME (lambda v t)
blanchet@35280
  1277
      | aux (c as Const (@{const_name TYPE}, _)) (SOME t) = SOME (lambda c t)
blanchet@33743
  1278
      | aux _ _ = NONE
blanchet@33192
  1279
    val (lhs, rhs) =
blanchet@33192
  1280
      case t of
blanchet@33192
  1281
        Const (@{const_name "=="}, _) $ t1 $ t2 => (t1, t2)
blanchet@33192
  1282
      | @{const Trueprop} $ (Const (@{const_name "op ="}, _) $ t1 $ t2) =>
blanchet@33192
  1283
        (t1, t2)
blanchet@33224
  1284
      | _ => raise TERM ("Nitpick_HOL.normalized_rhs_of", [t])
blanchet@33192
  1285
    val args = strip_comb lhs |> snd
blanchet@33743
  1286
  in fold_rev aux args (SOME rhs) end
blanchet@33192
  1287
blanchet@33192
  1288
fun def_of_const thy table (x as (s, _)) =
blanchet@35220
  1289
  if is_built_in_const thy [(NONE, false)] false x orelse
blanchet@35220
  1290
     original_name s <> s then
blanchet@33192
  1291
    NONE
blanchet@33192
  1292
  else
blanchet@35220
  1293
    x |> def_props_for_const thy [(NONE, false)] false table |> List.last
blanchet@35280
  1294
      |> normalized_rhs_of |> Option.map (prefix_abs_vars s)
blanchet@33192
  1295
    handle List.Empty => NONE
blanchet@33192
  1296
blanchet@33192
  1297
fun fixpoint_kind_of_rhs (Abs (_, _, t)) = fixpoint_kind_of_rhs t
blanchet@33192
  1298
  | fixpoint_kind_of_rhs (Const (@{const_name lfp}, _) $ Abs _) = Lfp
blanchet@33192
  1299
  | fixpoint_kind_of_rhs (Const (@{const_name gfp}, _) $ Abs _) = Gfp
blanchet@33192
  1300
  | fixpoint_kind_of_rhs _ = NoFp
blanchet@33192
  1301
blanchet@33192
  1302
fun is_mutually_inductive_pred_def thy table t =
blanchet@33192
  1303
  let
blanchet@33192
  1304
    fun is_good_arg (Bound _) = true
blanchet@33192
  1305
      | is_good_arg (Const (s, _)) =
blanchet@34923
  1306
        s = @{const_name True} orelse s = @{const_name False} orelse
blanchet@34923
  1307
        s = @{const_name undefined}
blanchet@33192
  1308
      | is_good_arg _ = false
blanchet@33192
  1309
  in
blanchet@33192
  1310
    case t |> strip_abs_body |> strip_comb of
blanchet@33192
  1311
      (Const x, ts as (_ :: _)) =>
blanchet@33192
  1312
      (case def_of_const thy table x of
blanchet@33192
  1313
         SOME t' => fixpoint_kind_of_rhs t' <> NoFp andalso forall is_good_arg ts
blanchet@33192
  1314
       | NONE => false)
blanchet@33192
  1315
    | _ => false
blanchet@33192
  1316
  end
blanchet@33192
  1317
fun unfold_mutually_inductive_preds thy table =
blanchet@33192
  1318
  map_aterms (fn t as Const x =>
blanchet@33192
  1319
                 (case def_of_const thy table x of
blanchet@33192
  1320
                    SOME t' =>
blanchet@33192
  1321
                    let val t' = Envir.eta_contract t' in
blanchet@33192
  1322
                      if is_mutually_inductive_pred_def thy table t' then t'
blanchet@33192
  1323
                      else t
blanchet@33192
  1324
                    end
blanchet@33192
  1325
                 | NONE => t)
blanchet@33192
  1326
               | t => t)
blanchet@33192
  1327
blanchet@35220
  1328
fun case_const_names thy stds =
blanchet@33192
  1329
  Symtab.fold (fn (dtype_s, {index, descr, case_name, ...}) =>
blanchet@35220
  1330
                  if is_basic_datatype thy stds dtype_s then
blanchet@33192
  1331
                    I
blanchet@33192
  1332
                  else
blanchet@33192
  1333
                    cons (case_name, AList.lookup (op =) descr index
blanchet@33192
  1334
                                     |> the |> #3 |> length))
blanchet@33192
  1335
              (Datatype.get_all thy) [] @
blanchet@33574
  1336
  map (apsnd length o snd) (#codatatypes (Data.get thy))
blanchet@33192
  1337
blanchet@35714
  1338
fun fixpoint_kind_of_const thy table x =
blanchet@35714
  1339
  if is_built_in_const thy [(NONE, false)] false x then
blanchet@35714
  1340
    NoFp
blanchet@35714
  1341
  else
blanchet@35714
  1342
    fixpoint_kind_of_rhs (the (def_of_const thy table x))
blanchet@35714
  1343
    handle Option.Option => NoFp
blanchet@33192
  1344
blanchet@35714
  1345
fun is_real_inductive_pred ({thy, stds, fast_descrs, def_table, intro_table,
blanchet@35714
  1346
                             ...} : hol_context) x =
blanchet@35714
  1347
  fixpoint_kind_of_const thy def_table x <> NoFp andalso
blanchet@35714
  1348
  not (null (def_props_for_const thy stds fast_descrs intro_table x))
blanchet@35714
  1349
fun is_real_equational_fun ({thy, stds, fast_descrs, simp_table, psimp_table,
blanchet@35714
  1350
                             ...} : hol_context) x =
blanchet@35714
  1351
  exists (fn table => not (null (def_props_for_const thy stds fast_descrs table
blanchet@35714
  1352
                                                     x)))
blanchet@35714
  1353
         [!simp_table, psimp_table]
blanchet@35714
  1354
fun is_inductive_pred hol_ctxt =
blanchet@35714
  1355
  is_real_inductive_pred hol_ctxt andf (not o is_real_equational_fun hol_ctxt)
blanchet@35714
  1356
fun is_equational_fun hol_ctxt =
blanchet@35714
  1357
  (is_real_equational_fun hol_ctxt orf is_real_inductive_pred hol_ctxt orf
blanchet@35714
  1358
   (String.isPrefix ubfp_prefix orf String.isPrefix lbfp_prefix) o fst)
blanchet@33192
  1359
blanchet@35714
  1360
fun lhs_of_equation t =
blanchet@35714
  1361
  case t of
blanchet@35714
  1362
    Const (@{const_name all}, _) $ Abs (_, _, t1) => lhs_of_equation t1
blanchet@35714
  1363
  | Const (@{const_name "=="}, _) $ t1 $ _ => SOME t1
blanchet@35714
  1364
  | @{const "==>"} $ _ $ t2 => lhs_of_equation t2
blanchet@35714
  1365
  | @{const Trueprop} $ t1 => lhs_of_equation t1
blanchet@35714
  1366
  | Const (@{const_name All}, _) $ Abs (_, _, t1) => lhs_of_equation t1
blanchet@35714
  1367
  | Const (@{const_name "op ="}, _) $ t1 $ _ => SOME t1
blanchet@35714
  1368
  | @{const "op -->"} $ _ $ t2 => lhs_of_equation t2
blanchet@35714
  1369
  | _ => NONE
blanchet@35714
  1370
fun is_constr_pattern _ (Bound _) = true
blanchet@35714
  1371
  | is_constr_pattern _ (Var _) = true
blanchet@35714
  1372
  | is_constr_pattern thy t =
blanchet@35714
  1373
    case strip_comb t of
blanchet@35714
  1374
      (Const x, args) =>
blanchet@35714
  1375
      is_constr_like thy x andalso forall (is_constr_pattern thy) args
blanchet@35714
  1376
    | _ => false
blanchet@35714
  1377
fun is_constr_pattern_lhs thy t =
blanchet@35714
  1378
  forall (is_constr_pattern thy) (snd (strip_comb t))
blanchet@35714
  1379
fun is_constr_pattern_formula thy t =
blanchet@35714
  1380
  case lhs_of_equation t of
blanchet@35714
  1381
    SOME t' => is_constr_pattern_lhs thy t'
blanchet@35714
  1382
  | NONE => false
blanchet@33192
  1383
blanchet@35807
  1384
(* Similar to "Refute.specialize_type" but returns all matches rather than only
blanchet@35807
  1385
   the first (preorder) match. *)
blanchet@35807
  1386
fun multi_specialize_type thy slack (s, T) t =
blanchet@35807
  1387
  let
blanchet@35807
  1388
    fun aux (Const (s', T')) ys =
blanchet@35807
  1389
        if s = s' then
blanchet@35807
  1390
          ys |> (if AList.defined (op =) ys T' then
blanchet@35807
  1391
                   I
blanchet@35807
  1392
                 else
blanchet@35807
  1393
                   cons (T', Refute.monomorphic_term
blanchet@35807
  1394
                                 (Sign.typ_match thy (T', T) Vartab.empty) t)
blanchet@35807
  1395
                   handle Type.TYPE_MATCH => I
blanchet@35807
  1396
                        | Refute.REFUTE _ =>
blanchet@35807
  1397
                          if slack then
blanchet@35807
  1398
                            I
blanchet@35807
  1399
                          else
blanchet@35807
  1400
                            raise NOT_SUPPORTED ("too much polymorphism in \
blanchet@35807
  1401
                                                 \axiom involving " ^ quote s))
blanchet@35807
  1402
        else
blanchet@35807
  1403
          ys
blanchet@35807
  1404
      | aux _ ys = ys
blanchet@35807
  1405
  in map snd (fold_aterms aux t []) end
blanchet@35807
  1406
fun nondef_props_for_const thy slack table (x as (s, _)) =
blanchet@35807
  1407
  these (Symtab.lookup table s) |> maps (multi_specialize_type thy slack x)
blanchet@35807
  1408
blanchet@35807
  1409
fun unvarify_term (t1 $ t2) = unvarify_term t1 $ unvarify_term t2
blanchet@35807
  1410
  | unvarify_term (Var ((s, 0), T)) = Free (s, T)
blanchet@35807
  1411
  | unvarify_term (Abs (s, T, t')) = Abs (s, T, unvarify_term t')
blanchet@35807
  1412
  | unvarify_term t = t
blanchet@35807
  1413
fun axiom_for_choice_spec thy =
blanchet@35807
  1414
  unvarify_term
blanchet@35807
  1415
  #> Object_Logic.atomize_term thy
blanchet@35807
  1416
  #> Choice_Specification.close_form
blanchet@35807
  1417
  #> HOLogic.mk_Trueprop
blanchet@35807
  1418
fun is_choice_spec_fun ({thy, def_table, nondef_table, choice_spec_table, ...}
blanchet@35807
  1419
                        : hol_context) x =
blanchet@35807
  1420
  case nondef_props_for_const thy true choice_spec_table x of
blanchet@35807
  1421
    [] => false
blanchet@35807
  1422
  | ts => case def_of_const thy def_table x of
blanchet@35807
  1423
            SOME (Const (@{const_name Eps}, _) $ _) => true
blanchet@35807
  1424
          | SOME _ => false
blanchet@35807
  1425
          | NONE =>
blanchet@35807
  1426
            let val ts' = nondef_props_for_const thy true nondef_table x in
blanchet@35807
  1427
              length ts' = length ts andalso
blanchet@35807
  1428
              forall (fn t =>
blanchet@35807
  1429
                         exists (curry (op aconv) (axiom_for_choice_spec thy t))
blanchet@35807
  1430
                                ts') ts
blanchet@35807
  1431
            end
blanchet@35807
  1432
blanchet@35807
  1433
fun is_choice_spec_axiom thy choice_spec_table t =
blanchet@35807
  1434
  Symtab.exists (fn (_, ts) =>
blanchet@35807
  1435
                    exists (curry (op aconv) t o axiom_for_choice_spec thy) ts)
blanchet@35807
  1436
                choice_spec_table
blanchet@35807
  1437
blanchet@35714
  1438
(** Constant unfolding **)
blanchet@33192
  1439
blanchet@35220
  1440
fun constr_case_body thy stds (j, (x as (_, T))) =
blanchet@33192
  1441
  let val arg_Ts = binder_types T in
blanchet@35220
  1442
    list_comb (Bound j, map2 (select_nth_constr_arg thy stds x (Bound 0))
blanchet@33192
  1443
                             (index_seq 0 (length arg_Ts)) arg_Ts)
blanchet@33192
  1444
  end
blanchet@35220
  1445
fun add_constr_case (hol_ctxt as {thy, stds, ...}) res_T (j, x) res_t =
blanchet@34121
  1446
  Const (@{const_name If}, bool_T --> res_T --> res_T --> res_T)
blanchet@35220
  1447
  $ discriminate_value hol_ctxt x (Bound 0) $ constr_case_body thy stds (j, x)
blanchet@33571
  1448
  $ res_t
blanchet@35220
  1449
fun optimized_case_def (hol_ctxt as {thy, stds, ...}) dataT res_T =
blanchet@33192
  1450
  let
blanchet@35067
  1451
    val xs = datatype_constrs hol_ctxt dataT
blanchet@35179
  1452
    val func_Ts = map ((fn T => binder_types T ---> res_T) o snd) xs
blanchet@35179
  1453
    val (xs', x) = split_last xs
blanchet@33192
  1454
  in
blanchet@35220
  1455
    constr_case_body thy stds (1, x)
blanchet@35179
  1456
    |> fold_rev (add_constr_case hol_ctxt res_T) (length xs downto 2 ~~ xs')
blanchet@33192
  1457
    |> fold_rev (curry absdummy) (func_Ts @ [dataT])
blanchet@33192
  1458
  end
blanchet@35220
  1459
fun optimized_record_get (hol_ctxt as {thy, stds, ...}) s rec_T res_T t =
blanchet@35067
  1460
  let val constr_x = hd (datatype_constrs hol_ctxt rec_T) in
blanchet@33192
  1461
    case no_of_record_field thy s rec_T of
blanchet@33192
  1462
      ~1 => (case rec_T of
blanchet@33192
  1463
               Type (_, Ts as _ :: _) =>
blanchet@33192
  1464
               let
blanchet@33192
  1465
                 val rec_T' = List.last Ts
blanchet@33192
  1466
                 val j = num_record_fields thy rec_T - 1
blanchet@33192
  1467
               in
blanchet@35220
  1468
                 select_nth_constr_arg thy stds constr_x t j res_T
blanchet@35067
  1469
                 |> optimized_record_get hol_ctxt s rec_T' res_T
blanchet@33192
  1470
               end
blanchet@33224
  1471
             | _ => raise TYPE ("Nitpick_HOL.optimized_record_get", [rec_T],
blanchet@33224
  1472
                                []))
blanchet@35220
  1473
    | j => select_nth_constr_arg thy stds constr_x t j res_T
blanchet@33192
  1474
  end
blanchet@35220
  1475
fun optimized_record_update (hol_ctxt as {thy, stds, ...}) s rec_T fun_t rec_t =
blanchet@33192
  1476
  let
blanchet@35067
  1477
    val constr_x as (_, constr_T) = hd (datatype_constrs hol_ctxt rec_T)
blanchet@33192
  1478
    val Ts = binder_types constr_T
blanchet@33192
  1479
    val n = length Ts
blanchet@33192
  1480
    val special_j = no_of_record_field thy s rec_T
blanchet@35220
  1481
    val ts =
blanchet@35220
  1482
      map2 (fn j => fn T =>
blanchet@35220
  1483
               let val t = select_nth_constr_arg thy stds constr_x rec_t j T in
blanchet@35220
  1484
                 if j = special_j then
blanchet@35220
  1485
                   betapply (fun_t, t)
blanchet@35220
  1486
                 else if j = n - 1 andalso special_j = ~1 then
blanchet@35220
  1487
                   optimized_record_update hol_ctxt s
blanchet@35220
  1488
                       (rec_T |> dest_Type |> snd |> List.last) fun_t t
blanchet@35220
  1489
                 else
blanchet@35220
  1490
                   t
blanchet@35220
  1491
               end) (index_seq 0 n) Ts
blanchet@33192
  1492
  in list_comb (Const constr_x, ts) end
blanchet@33192
  1493
blanchet@35067
  1494
(* Prevents divergence in case of cyclic or infinite definition dependencies. *)
blanchet@33747
  1495
val unfold_max_depth = 255
blanchet@33192
  1496
blanchet@35284
  1497
fun unfold_defs_in_term (hol_ctxt as {thy, ctxt, stds, fast_descrs, case_names,
blanchet@35280
  1498
                                      def_table, ground_thm_table, ersatz_table,
blanchet@35280
  1499
                                      ...}) =
blanchet@33192
  1500
  let
blanchet@33192
  1501
    fun do_term depth Ts t =
blanchet@33192
  1502
      case t of
blanchet@33192
  1503
        (t0 as Const (@{const_name Int.number_class.number_of},
blanchet@35665
  1504
                      Type (@{type_name fun}, [_, ran_T]))) $ t1 =>
blanchet@33192
  1505
        ((if is_number_type thy ran_T then
blanchet@33192
  1506
            let
blanchet@33192
  1507
              val j = t1 |> HOLogic.dest_numeral
blanchet@33882
  1508
                         |> ran_T = nat_T ? Integer.max 0
blanchet@33192
  1509
              val s = numeral_prefix ^ signed_string_of_int j
blanchet@33192
  1510
            in
blanchet@35220
  1511
              if is_integer_like_type ran_T then
blanchet@35220
  1512
                if is_standard_datatype thy stds ran_T then
blanchet@35220
  1513
                  Const (s, ran_T)
blanchet@35220
  1514
                else
blanchet@35220
  1515
                  funpow j (curry (op $) (suc_const ran_T)) (zero_const ran_T)
blanchet@33192
  1516
              else
blanchet@33192
  1517
                do_term depth Ts (Const (@{const_name of_int}, int_T --> ran_T)
blanchet@33192
  1518
                                  $ Const (s, int_T))
blanchet@33192
  1519
            end
blanchet@33192
  1520
            handle TERM _ => raise SAME ()
blanchet@33192
  1521
          else
blanchet@33192
  1522
            raise SAME ())
blanchet@33192
  1523
         handle SAME () => betapply (do_term depth Ts t0, do_term depth Ts t1))
blanchet@33864
  1524
      | Const (@{const_name refl_on}, T) $ Const (@{const_name top}, _) $ t2 =>
blanchet@33192
  1525
        do_const depth Ts t (@{const_name refl'}, range_type T) [t2]
blanchet@35280
  1526
      | (t0 as Const (@{const_name Sigma}, _)) $ t1 $ (t2 as Abs (_, _, t2')) =>
blanchet@33192
  1527
        betapplys (t0 |> loose_bvar1 (t2', 0) ? do_term depth Ts,
blanchet@33192
  1528
                   map (do_term depth Ts) [t1, t2])
blanchet@33192
  1529
      | Const (x as (@{const_name distinct},
blanchet@35665
  1530
               Type (@{type_name fun}, [Type (@{type_name list}, [T']), _])))
blanchet@33192
  1531
        $ (t1 as _ $ _) =>
blanchet@33192
  1532
        (t1 |> HOLogic.dest_list |> distinctness_formula T'
blanchet@33192
  1533
         handle TERM _ => do_const depth Ts t x [t1])
blanchet@35280
  1534
      | Const (x as (@{const_name If}, _)) $ t1 $ t2 $ t3 =>
blanchet@34923
  1535
        if is_ground_term t1 andalso
blanchet@34923
  1536
           exists (Pattern.matches thy o rpair t1)
blanchet@34923
  1537
                  (Inttab.lookup_list ground_thm_table (hash_term t1)) then
blanchet@33192
  1538
          do_term depth Ts t2
blanchet@33192
  1539
        else
blanchet@33192
  1540
          do_const depth Ts t x [t1, t2, t3]
blanchet@33192
  1541
      | Const x $ t1 $ t2 $ t3 => do_const depth Ts t x [t1, t2, t3]
blanchet@33192
  1542
      | Const x $ t1 $ t2 => do_const depth Ts t x [t1, t2]
blanchet@33192
  1543
      | Const x $ t1 => do_const depth Ts t x [t1]
blanchet@33192
  1544
      | Const x => do_const depth Ts t x []
blanchet@33192
  1545
      | t1 $ t2 => betapply (do_term depth Ts t1, do_term depth Ts t2)
blanchet@33192
  1546
      | Free _ => t
blanchet@33192
  1547
      | Var _ => t
blanchet@33192
  1548
      | Bound _ => t
blanchet@33192
  1549
      | Abs (s, T, body) => Abs (s, T, do_term depth (T :: Ts) body)
blanchet@33192
  1550
    and select_nth_constr_arg_with_args _ _ (x as (_, T)) [] n res_T =
blanchet@33192
  1551
        (Abs (Name.uu, body_type T,
blanchet@35220
  1552
              select_nth_constr_arg thy stds x (Bound 0) n res_T), [])
blanchet@33192
  1553
      | select_nth_constr_arg_with_args depth Ts x (t :: ts) n res_T =
blanchet@35220
  1554
        (select_nth_constr_arg thy stds x (do_term depth Ts t) n res_T, ts)
blanchet@33192
  1555
    and do_const depth Ts t (x as (s, T)) ts =
blanchet@33192
  1556
      case AList.lookup (op =) ersatz_table s of
blanchet@33192
  1557
        SOME s' =>
blanchet@33192
  1558
        do_const (depth + 1) Ts (list_comb (Const (s', T), ts)) (s', T) ts
blanchet@33192
  1559
      | NONE =>
blanchet@33192
  1560
        let
blanchet@33192
  1561
          val (const, ts) =
blanchet@35220
  1562
            if is_built_in_const thy stds fast_descrs x then
blanchet@33877
  1563
              (Const x, ts)
blanchet@33192
  1564
            else case AList.lookup (op =) case_names s of
blanchet@33192
  1565
              SOME n =>
blanchet@33192
  1566
              let
blanchet@33192
  1567
                val (dataT, res_T) = nth_range_type n T
blanchet@33705
  1568
                                     |> pairf domain_type range_type
blanchet@33192
  1569
              in
blanchet@35067
  1570
                (optimized_case_def hol_ctxt dataT res_T
blanchet@33192
  1571
                 |> do_term (depth + 1) Ts, ts)
blanchet@33192
  1572
              end
blanchet@33192
  1573
            | _ =>
blanchet@35220
  1574
              if is_constr thy stds x then
blanchet@33192
  1575
                (Const x, ts)
blanchet@33572
  1576
              else if is_stale_constr thy x then
blanchet@34923
  1577
                raise NOT_SUPPORTED ("(non-co)constructors of codatatypes \
blanchet@33572
  1578
                                     \(\"" ^ s ^ "\")")
blanchet@35284
  1579
              else if is_quot_abs_fun ctxt x then
blanchet@34923
  1580
                let
blanchet@34923
  1581
                  val rep_T = domain_type T
blanchet@34923
  1582
                  val abs_T = range_type T
blanchet@34923
  1583
                in
blanchet@34923
  1584
                  (Abs (Name.uu, rep_T,
blanchet@34923
  1585
                        Const (@{const_name Quot}, rep_T --> abs_T)
blanchet@35311
  1586
                               $ (Const (quot_normal_name_for_type ctxt abs_T,
blanchet@34923
  1587
                                         rep_T --> rep_T) $ Bound 0)), ts)
blanchet@34923
  1588
                end
blanchet@35284
  1589
              else if is_quot_rep_fun ctxt x then
blanchet@34923
  1590
                let
blanchet@34923
  1591
                  val abs_T = domain_type T
blanchet@34923
  1592
                  val rep_T = range_type T
blanchet@34923
  1593
                  val x' = (@{const_name Quot}, rep_T --> abs_T)
blanchet@34923
  1594
                in select_nth_constr_arg_with_args depth Ts x' ts 0 rep_T end
blanchet@33192
  1595
              else if is_record_get thy x then
blanchet@33192
  1596
                case length ts of
blanchet@33192
  1597
                  0 => (do_term depth Ts (eta_expand Ts t 1), [])
blanchet@35067
  1598
                | _ => (optimized_record_get hol_ctxt s (domain_type T)
blanchet@34969
  1599
                            (range_type T) (do_term depth Ts (hd ts)), tl ts)
blanchet@33192
  1600
              else if is_record_update thy x then
blanchet@33192
  1601
                case length ts of
blanchet@35067
  1602
                  2 => (optimized_record_update hol_ctxt
blanchet@33571
  1603
                            (unsuffix Record.updateN s) (nth_range_type 2 T)
blanchet@33571
  1604
                            (do_term depth Ts (hd ts))
blanchet@33571
  1605
                            (do_term depth Ts (nth ts 1)), [])
blanchet@33192
  1606
                | n => (do_term depth Ts (eta_expand Ts t (2 - n)), [])
blanchet@33192
  1607
              else if is_rep_fun thy x then
blanchet@33192
  1608
                let val x' = mate_of_rep_fun thy x in
blanchet@35220
  1609
                  if is_constr thy stds x' then
blanchet@33192
  1610
                    select_nth_constr_arg_with_args depth Ts x' ts 0
blanchet@33192
  1611
                                                    (range_type T)
blanchet@33192
  1612
                  else
blanchet@33192
  1613
                    (Const x, ts)
blanchet@33192
  1614
                end
blanchet@35807
  1615
              else if is_equational_fun hol_ctxt x orelse
blanchet@35807
  1616
                      is_choice_spec_fun hol_ctxt x then
blanchet@33192
  1617
                (Const x, ts)
blanchet@33192
  1618
              else case def_of_const thy def_table x of
blanchet@33192
  1619
                SOME def =>
blanchet@33192
  1620
                if depth > unfold_max_depth then
blanchet@34121
  1621
                  raise TOO_LARGE ("Nitpick_HOL.unfold_defs_in_term",
blanchet@34121
  1622
                                   "too many nested definitions (" ^
blanchet@34121
  1623
                                   string_of_int depth ^ ") while expanding " ^
blanchet@34121
  1624
                                   quote s)
blanchet@33192
  1625
                else if s = @{const_name wfrec'} then
blanchet@33192
  1626
                  (do_term (depth + 1) Ts (betapplys (def, ts)), [])
blanchet@33192
  1627
                else
blanchet@33192
  1628
                  (do_term (depth + 1) Ts def, ts)
blanchet@33192
  1629
              | NONE => (Const x, ts)
blanchet@33192
  1630
        in s_betapplys (const, map (do_term depth Ts) ts) |> Envir.beta_norm end
blanchet@33192
  1631
  in do_term 0 [] end
blanchet@33192
  1632
blanchet@35714
  1633
(** Axiom extraction/generation **)
blanchet@35714
  1634
blanchet@35807
  1635
fun pair_for_prop t =
blanchet@35807
  1636
  case term_under_def t of
blanchet@35807
  1637
    Const (s, _) => (s, t)
blanchet@35807
  1638
  | t' => raise TERM ("Nitpick_HOL.pair_for_prop", [t, t'])
blanchet@35807
  1639
fun def_table_for get ctxt subst =
blanchet@35807
  1640
  ctxt |> get |> map (pair_for_prop o subst_atomic subst)
blanchet@35807
  1641
       |> AList.group (op =) |> Symtab.make
blanchet@35807
  1642
fun paired_with_consts t = map (rpair t) (Term.add_const_names t [])
blanchet@35714
  1643
fun const_def_table ctxt subst ts =
blanchet@35807
  1644
  def_table_for (map prop_of o Nitpick_Defs.get) ctxt subst
blanchet@35714
  1645
  |> fold (fn (s, t) => Symtab.map_default (s, []) (cons t))
blanchet@35714
  1646
          (map pair_for_prop ts)
blanchet@35714
  1647
fun const_nondef_table ts =
blanchet@35807
  1648
  fold (append o paired_with_consts) ts [] |> AList.group (op =) |> Symtab.make
blanchet@35807
  1649
val const_simp_table = def_table_for (map prop_of o Nitpick_Simps.get)
blanchet@35807
  1650
val const_psimp_table = def_table_for (map prop_of o Nitpick_Psimps.get)
blanchet@35807
  1651
fun const_choice_spec_table ctxt subst =
blanchet@35807
  1652
  map (subst_atomic subst o prop_of) (Nitpick_Choice_Specs.get ctxt)
blanchet@35807
  1653
  |> const_nondef_table
blanchet@35714
  1654
fun inductive_intro_table ctxt subst def_table =
blanchet@35807
  1655
  def_table_for
blanchet@35807
  1656
      (map (unfold_mutually_inductive_preds (ProofContext.theory_of ctxt)
blanchet@35807
  1657
                                            def_table o prop_of)
blanchet@35807
  1658
           o Nitpick_Intros.get) ctxt subst
blanchet@35714
  1659
fun ground_theorem_table thy =
blanchet@35714
  1660
  fold ((fn @{const Trueprop} $ t1 =>
blanchet@35714
  1661
            is_ground_term t1 ? Inttab.map_default (hash_term t1, []) (cons t1)
blanchet@35714
  1662
          | _ => I) o prop_of o snd) (PureThy.all_thms_of thy) Inttab.empty
blanchet@35714
  1663
blanchet@35807
  1664
(* TODO: Move to "Nitpick.thy" *)
blanchet@35714
  1665
val basic_ersatz_table =
blanchet@35714
  1666
  [(@{const_name prod_case}, @{const_name split}),
blanchet@35714
  1667
   (@{const_name card}, @{const_name card'}),
blanchet@35714
  1668
   (@{const_name setsum}, @{const_name setsum'}),
blanchet@35714
  1669
   (@{const_name fold_graph}, @{const_name fold_graph'}),
blanchet@35714
  1670
   (@{const_name wf}, @{const_name wf'}),
blanchet@35714
  1671
   (@{const_name wf_wfrec}, @{const_name wf_wfrec'}),
blanchet@35714
  1672
   (@{const_name wfrec}, @{const_name wfrec'})]
blanchet@35714
  1673
blanchet@35714
  1674
fun ersatz_table thy =
blanchet@35714
  1675
  fold (append o snd) (#frac_types (Data.get thy)) basic_ersatz_table
blanchet@35714
  1676
blanchet@35714
  1677
fun add_simps simp_table s eqs =
blanchet@35714
  1678
  Unsynchronized.change simp_table
blanchet@35714
  1679
      (Symtab.update (s, eqs @ these (Symtab.lookup (!simp_table) s)))
blanchet@35714
  1680
blanchet@35714
  1681
fun inverse_axioms_for_rep_fun thy (x as (_, T)) =
blanchet@35714
  1682
  let val abs_T = domain_type T in
blanchet@35714
  1683
    typedef_info thy (fst (dest_Type abs_T)) |> the
blanchet@35714
  1684
    |> pairf #Abs_inverse #Rep_inverse
blanchet@35714
  1685
    |> pairself (Refute.specialize_type thy x o prop_of o the)
blanchet@35714
  1686
    ||> single |> op ::
blanchet@35714
  1687
  end
blanchet@35714
  1688
fun optimized_typedef_axioms thy (abs_z as (abs_s, _)) =
blanchet@35714
  1689
  let val abs_T = Type abs_z in
blanchet@35714
  1690
    if is_univ_typedef thy abs_T then
blanchet@35714
  1691
      []
blanchet@35714
  1692
    else case typedef_info thy abs_s of
blanchet@35714
  1693
      SOME {abs_type, rep_type, Rep_name, prop_of_Rep, set_name, ...} =>
blanchet@35714
  1694
      let
blanchet@35714
  1695
        val rep_T = varify_and_instantiate_type thy abs_type abs_T rep_type
blanchet@35714
  1696
        val rep_t = Const (Rep_name, abs_T --> rep_T)
blanchet@35714
  1697
        val set_t = Const (set_name, rep_T --> bool_T)
blanchet@35714
  1698
        val set_t' =
blanchet@35714
  1699
          prop_of_Rep |> HOLogic.dest_Trueprop
blanchet@35714
  1700
                      |> Refute.specialize_type thy (dest_Const rep_t)
blanchet@35714
  1701
                      |> HOLogic.dest_mem |> snd
blanchet@35714
  1702
      in
blanchet@35714
  1703
        [HOLogic.all_const abs_T
blanchet@35714
  1704
         $ Abs (Name.uu, abs_T, set_t $ (rep_t $ Bound 0))]
blanchet@35714
  1705
        |> set_t <> set_t' ? cons (HOLogic.mk_eq (set_t, set_t'))
blanchet@35714
  1706
        |> map HOLogic.mk_Trueprop
blanchet@35714
  1707
      end
blanchet@35714
  1708
    | NONE => []
blanchet@35714
  1709
  end
blanchet@35714
  1710
fun optimized_quot_type_axioms ctxt stds abs_z =
blanchet@35714
  1711
  let
blanchet@35714
  1712
    val thy = ProofContext.theory_of ctxt
blanchet@35714
  1713
    val abs_T = Type abs_z
blanchet@35714
  1714
    val rep_T = rep_type_for_quot_type thy abs_T
blanchet@35714
  1715
    val equiv_rel = equiv_relation_for_quot_type thy abs_T
blanchet@35714
  1716
    val a_var = Var (("a", 0), abs_T)
blanchet@35714
  1717
    val x_var = Var (("x", 0), rep_T)
blanchet@35714
  1718
    val y_var = Var (("y", 0), rep_T)
blanchet@35714
  1719
    val x = (@{const_name Quot}, rep_T --> abs_T)
blanchet@35714
  1720
    val sel_a_t = select_nth_constr_arg thy stds x a_var 0 rep_T
blanchet@35714
  1721
    val normal_t = Const (quot_normal_name_for_type ctxt abs_T, rep_T --> rep_T)
blanchet@35714
  1722
    val normal_x = normal_t $ x_var
blanchet@35714
  1723
    val normal_y = normal_t $ y_var
blanchet@35714
  1724
    val is_unknown_t = Const (@{const_name is_unknown}, rep_T --> bool_T)
blanchet@35714
  1725
  in
blanchet@35714
  1726
    [Logic.mk_equals (normal_t $ sel_a_t, sel_a_t),
blanchet@35714
  1727
     Logic.list_implies
blanchet@35714
  1728
         ([@{const Not} $ (is_unknown_t $ normal_x),
blanchet@35714
  1729
           @{const Not} $ (is_unknown_t $ normal_y),
blanchet@35714
  1730
           equiv_rel $ x_var $ y_var] |> map HOLogic.mk_Trueprop,
blanchet@35714
  1731
           Logic.mk_equals (normal_x, normal_y)),
blanchet@35714
  1732
     Logic.list_implies
blanchet@35714
  1733
         ([HOLogic.mk_Trueprop (@{const Not} $ (is_unknown_t $ normal_x)),
blanchet@35714
  1734
           HOLogic.mk_Trueprop (@{const Not} $ HOLogic.mk_eq (normal_x, x_var))],
blanchet@35714
  1735
          HOLogic.mk_Trueprop (equiv_rel $ x_var $ normal_x))]
blanchet@35714
  1736
  end
blanchet@35714
  1737
blanchet@35220
  1738
fun codatatype_bisim_axioms (hol_ctxt as {thy, stds, ...}) T =
blanchet@33192
  1739
  let
blanchet@35067
  1740
    val xs = datatype_constrs hol_ctxt T
blanchet@33192
  1741
    val set_T = T --> bool_T
blanchet@33192
  1742
    val iter_T = @{typ bisim_iterator}
blanchet@34121
  1743
    val bisim_const = Const (@{const_name bisim}, iter_T --> T --> T --> bool_T)
blanchet@33192
  1744
    val bisim_max = @{const bisim_iterator_max}
blanchet@33192
  1745
    val n_var = Var (("n", 0), iter_T)
blanchet@33192
  1746
    val n_var_minus_1 =
blanchet@35666
  1747
      Const (@{const_name safe_The}, (iter_T --> bool_T) --> iter_T)
blanchet@33192
  1748
      $ Abs ("m", iter_T, HOLogic.eq_const iter_T
blanchet@33192
  1749
                          $ (suc_const iter_T $ Bound 0) $ n_var)
blanchet@33192
  1750
    val x_var = Var (("x", 0), T)
blanchet@33192
  1751
    val y_var = Var (("y", 0), T)
blanchet@33192
  1752
    fun nth_sub_bisim x n nth_T =
blanchet@33192
  1753
      (if is_codatatype thy nth_T then bisim_const $ n_var_minus_1
blanchet@33192
  1754
       else HOLogic.eq_const nth_T)
blanchet@35220
  1755
      $ select_nth_constr_arg thy stds x x_var n nth_T
blanchet@35220
  1756
      $ select_nth_constr_arg thy stds x y_var n nth_T
blanchet@33192
  1757
    fun case_func (x as (_, T)) =
blanchet@33192
  1758
      let
blanchet@33192
  1759
        val arg_Ts = binder_types T
blanchet@33192
  1760
        val core_t =
blanchet@35067
  1761
          discriminate_value hol_ctxt x y_var ::
blanchet@33192
  1762
          map2 (nth_sub_bisim x) (index_seq 0 (length arg_Ts)) arg_Ts
blanchet@33192
  1763
          |> foldr1 s_conj
blanchet@33192
  1764
      in List.foldr absdummy core_t arg_Ts end
blanchet@33192
  1765
  in
blanchet@33192
  1766
    [HOLogic.eq_const bool_T $ (bisim_const $ n_var $ x_var $ y_var)
blanchet@33192
  1767
     $ (@{term "op |"} $ (HOLogic.eq_const iter_T $ n_var $ zero_const iter_T)
blanchet@35067
  1768
        $ (betapplys (optimized_case_def hol_ctxt T bool_T,
blanchet@33192
  1769
                      map case_func xs @ [x_var]))),
blanchet@33192
  1770
     HOLogic.eq_const set_T $ (bisim_const $ bisim_max $ x_var)
blanchet@34121
  1771
     $ (Const (@{const_name insert}, T --> set_T --> set_T)
blanchet@35220
  1772
        $ x_var $ Const (@{const_name bot_class.bot}, set_T))]
blanchet@33192
  1773
    |> map HOLogic.mk_Trueprop
blanchet@33192
  1774
  end
blanchet@33192
  1775
blanchet@33192
  1776
exception NO_TRIPLE of unit
blanchet@33192
  1777
blanchet@33192
  1778
fun triple_for_intro_rule thy x t =
blanchet@33192
  1779
  let
wenzelm@35625
  1780
    val prems = Logic.strip_imp_prems t |> map (Object_Logic.atomize_term thy)
wenzelm@35625
  1781
    val concl = Logic.strip_imp_concl t |> Object_Logic.atomize_term thy
blanchet@34118
  1782
    val (main, side) = List.partition (exists_Const (curry (op =) x)) prems
blanchet@36385
  1783
    val is_good_head = curry (op =) (Const x) o head_of
blanchet@33192
  1784
  in
blanchet@33192
  1785
    if forall is_good_head main then (side, main, concl) else raise NO_TRIPLE ()
blanchet@33192
  1786
  end
blanchet@33192
  1787
blanchet@33192
  1788
val tuple_for_args = HOLogic.mk_tuple o snd o strip_comb
blanchet@33192
  1789
blanchet@33192
  1790
fun wf_constraint_for rel side concl main =
blanchet@33192
  1791
  let
blanchet@33192
  1792
    val core = HOLogic.mk_mem (HOLogic.mk_prod (tuple_for_args main,
blanchet@33192
  1793
                                                tuple_for_args concl), Var rel)
blanchet@33192
  1794
    val t = List.foldl HOLogic.mk_imp core side
blanchet@33192
  1795
    val vars = filter (not_equal rel) (Term.add_vars t [])
blanchet@33192
  1796
  in
blanchet@33192
  1797
    Library.foldl (fn (t', ((x, j), T)) =>
blanchet@33192
  1798
                      HOLogic.all_const T
blanchet@33192
  1799
                      $ Abs (x, T, abstract_over (Var ((x, j), T), t')))
blanchet@33192
  1800
                  (t, vars)
blanchet@33192
  1801
  end
blanchet@33192
  1802
blanchet@33192
  1803
fun wf_constraint_for_triple rel (side, main, concl) =
blanchet@33192
  1804
  map (wf_constraint_for rel side concl) main |> foldr1 s_conj
blanchet@33192
  1805
blanchet@33192
  1806
fun terminates_by ctxt timeout goal tac =
blanchet@33192
  1807
  can (SINGLE (Classical.safe_tac (claset_of ctxt)) #> the
blanchet@33192
  1808
       #> SINGLE (DETERM_TIMEOUT timeout
blanchet@33192
  1809
                                 (tac ctxt (auto_tac (clasimpset_of ctxt))))
blanchet@33192
  1810
       #> the #> Goal.finish ctxt) goal
blanchet@33192
  1811
blanchet@35181
  1812
val max_cached_wfs = 50
blanchet@35181
  1813
val cached_timeout =
blanchet@35181
  1814
  Synchronized.var "Nitpick_HOL.cached_timeout" (SOME Time.zeroTime)
blanchet@35181
  1815
val cached_wf_props =
blanchet@35181
  1816
  Synchronized.var "Nitpick_HOL.cached_wf_props" ([] : (term * bool) list)
blanchet@33192
  1817
krauss@33351
  1818
val termination_tacs = [Lexicographic_Order.lex_order_tac true,
blanchet@33192
  1819
                        ScnpReconstruct.sizechange_tac]
blanchet@33192
  1820
blanchet@33571
  1821
fun uncached_is_well_founded_inductive_pred
blanchet@35220
  1822
        ({thy, ctxt, stds, debug, fast_descrs, tac_timeout, intro_table, ...}
blanchet@35067
  1823
         : hol_context) (x as (_, T)) =
blanchet@35220
  1824
  case def_props_for_const thy stds fast_descrs intro_table x of
blanchet@33571
  1825
    [] => raise TERM ("Nitpick_HOL.uncached_is_well_founded_inductive",
blanchet@33224
  1826
                      [Const x])
blanchet@33192
  1827
  | intro_ts =>
blanchet@33192
  1828
    (case map (triple_for_intro_rule thy x) intro_ts
blanchet@33192
  1829
          |> filter_out (null o #2) of
blanchet@33192
  1830
       [] => true
blanchet@33192
  1831
     | triples =>
blanchet@33192
  1832
       let
blanchet@33192
  1833
         val binders_T = HOLogic.mk_tupleT (binder_types T)
blanchet@33192
  1834
         val rel_T = HOLogic.mk_prodT (binders_T, binders_T) --> bool_T
blanchet@33882
  1835
         val j = fold Integer.max (map maxidx_of_term intro_ts) 0 + 1
blanchet@33192
  1836
         val rel = (("R", j), rel_T)
blanchet@33192
  1837
         val prop = Const (@{const_name wf}, rel_T --> bool_T) $ Var rel ::
blanchet@33192
  1838
                    map (wf_constraint_for_triple rel) triples
blanchet@33192
  1839
                    |> foldr1 s_conj |> HOLogic.mk_Trueprop
blanchet@33192
  1840
         val _ = if debug then
blanchet@33192
  1841
                   priority ("Wellfoundedness goal: " ^
blanchet@33192
  1842
                             Syntax.string_of_term ctxt prop ^ ".")
blanchet@33192
  1843
                 else
blanchet@33192
  1844
                   ()
blanchet@33192
  1845
       in
blanchet@35181
  1846
         if tac_timeout = Synchronized.value cached_timeout andalso
blanchet@35181
  1847
            length (Synchronized.value cached_wf_props) < max_cached_wfs then
blanchet@33548
  1848
           ()
blanchet@33548
  1849
         else
blanchet@35181
  1850
           (Synchronized.change cached_wf_props (K []);
blanchet@35181
  1851
            Synchronized.change cached_timeout (K tac_timeout));
blanchet@35181
  1852
         case AList.lookup (op =) (Synchronized.value cached_wf_props) prop of
blanchet@33192
  1853
           SOME wf => wf
blanchet@33192
  1854
         | NONE =>
blanchet@33192
  1855
           let
blanchet@33192
  1856
             val goal = prop |> cterm_of thy |> Goal.init
blanchet@33705
  1857
             val wf = exists (terminates_by ctxt tac_timeout goal)
blanchet@33705
  1858
                             termination_tacs
blanchet@35181
  1859
           in Synchronized.change cached_wf_props (cons (prop, wf)); wf end
blanchet@33192
  1860
       end)
blanchet@35309
  1861
    handle List.Empty => false | NO_TRIPLE () => false
blanchet@33192
  1862
blanchet@35067
  1863
(* The type constraint below is a workaround for a Poly/ML crash. *)
blanchet@33192
  1864
blanchet@33192
  1865
fun is_well_founded_inductive_pred
blanchet@35067
  1866
        (hol_ctxt as {thy, wfs, def_table, wf_cache, ...} : hol_context)
blanchet@33192
  1867
        (x as (s, _)) =
blanchet@33192
  1868
  case triple_lookup (const_match thy) wfs x of
blanchet@33192
  1869
    SOME (SOME b) => b
blanchet@34923
  1870
  | _ => s = @{const_name Nats} orelse s = @{const_name fold_graph'} orelse
blanchet@34923
  1871
         case AList.lookup (op =) (!wf_cache) x of
blanchet@35181
  1872
           SOME (_, wf) => wf
blanchet@35181
  1873
         | NONE =>
blanchet@35181
  1874
           let
blanchet@35181
  1875
             val gfp = (fixpoint_kind_of_const thy def_table x = Gfp)
blanchet@35181
  1876
             val wf = uncached_is_well_founded_inductive_pred hol_ctxt x
blanchet@35181
  1877
           in
blanchet@35181
  1878
             Unsynchronized.change wf_cache (cons (x, (gfp, wf))); wf
blanchet@35181
  1879
           end
blanchet@33192
  1880
blanchet@35280
  1881
fun ap_curry [_] _ t = t
blanchet@35280
  1882
  | ap_curry arg_Ts tuple_T t =
blanchet@33192
  1883
    let val n = length arg_Ts in
blanchet@33192
  1884
      list_abs (map (pair "c") arg_Ts,
blanchet@33192
  1885
                incr_boundvars n t
blanchet@33192
  1886
                $ mk_flat_tuple tuple_T (map Bound (n - 1 downto 0)))
blanchet@33192
  1887
    end
blanchet@33192
  1888
blanchet@33192
  1889
fun num_occs_of_bound_in_term j (t1 $ t2) =
blanchet@33192
  1890
    op + (pairself (num_occs_of_bound_in_term j) (t1, t2))
blanchet@35280
  1891
  | num_occs_of_bound_in_term j (Abs (_, _, t')) =
blanchet@33192
  1892
    num_occs_of_bound_in_term (j + 1) t'
blanchet@33192
  1893
  | num_occs_of_bound_in_term j (Bound j') = if j' = j then 1 else 0
blanchet@33192
  1894
  | num_occs_of_bound_in_term _ _ = 0
blanchet@33192
  1895
blanchet@33192
  1896
val is_linear_inductive_pred_def =
blanchet@33192
  1897
  let
blanchet@33192
  1898
    fun do_disjunct j (Const (@{const_name Ex}, _) $ Abs (_, _, t2)) =
blanchet@33192
  1899
        do_disjunct (j + 1) t2
blanchet@33192
  1900
      | do_disjunct j t =
blanchet@33192
  1901
        case num_occs_of_bound_in_term j t of
blanchet@33192
  1902
          0 => true
blanchet@35067
  1903
        | 1 => exists (curry (op =) (Bound j) o head_of) (conjuncts_of t)
blanchet@33192
  1904
        | _ => false
blanchet@33192
  1905
    fun do_lfp_def (Const (@{const_name lfp}, _) $ t2) =
blanchet@33192
  1906
        let val (xs, body) = strip_abs t2 in
blanchet@33192
  1907
          case length xs of
blanchet@33192
  1908
            1 => false
blanchet@35067
  1909
          | n => forall (do_disjunct (n - 1)) (disjuncts_of body)
blanchet@33192
  1910
        end
blanchet@33192
  1911
      | do_lfp_def _ = false
blanchet@33192
  1912
  in do_lfp_def o strip_abs_body end
blanchet@33192
  1913
blanchet@33851
  1914
fun n_ptuple_paths 0 = []
blanchet@33851
  1915
  | n_ptuple_paths 1 = []
blanchet@33851
  1916
  | n_ptuple_paths n = [] :: map (cons 2) (n_ptuple_paths (n - 1))
blanchet@33851
  1917
val ap_n_split = HOLogic.mk_psplits o n_ptuple_paths
blanchet@33192
  1918
blanchet@33192
  1919
val linear_pred_base_and_step_rhss =
blanchet@33192
  1920
  let
blanchet@33192
  1921
    fun aux (Const (@{const_name lfp}, _) $ t2) =
blanchet@33192
  1922
        let
blanchet@33192
  1923
          val (xs, body) = strip_abs t2
blanchet@33192
  1924
          val arg_Ts = map snd (tl xs)
blanchet@33192
  1925
          val tuple_T = HOLogic.mk_tupleT arg_Ts
blanchet@33192
  1926
          val j = length arg_Ts
blanchet@33192
  1927
          fun repair_rec j (Const (@{const_name Ex}, T1) $ Abs (s2, T2, t2')) =
blanchet@33192
  1928
              Const (@{const_name Ex}, T1)
blanchet@33192
  1929
              $ Abs (s2, T2, repair_rec (j + 1) t2')
blanchet@33192
  1930
            | repair_rec j (@{const "op &"} $ t1 $ t2) =
blanchet@33192
  1931
              @{const "op &"} $ repair_rec j t1 $ repair_rec j t2
blanchet@33192
  1932
            | repair_rec j t =
blanchet@33192
  1933
              let val (head, args) = strip_comb t in
blanchet@33192
  1934
                if head = Bound j then
blanchet@33192
  1935
                  HOLogic.eq_const tuple_T $ Bound j
blanchet@33192
  1936
                  $ mk_flat_tuple tuple_T args
blanchet@33192
  1937
                else
blanchet@33192
  1938
                  t
blanchet@33192
  1939
              end
blanchet@33192
  1940
          val (nonrecs, recs) =
blanchet@34118
  1941
            List.partition (curry (op =) 0 o num_occs_of_bound_in_term j)
blanchet@35067
  1942
                           (disjuncts_of body)
blanchet@33192
  1943
          val base_body = nonrecs |> List.foldl s_disj @{const False}
blanchet@33192
  1944
          val step_body = recs |> map (repair_rec j)
blanchet@33192
  1945
                               |> List.foldl s_disj @{const False} 
blanchet@33192
  1946
        in
blanchet@33192
  1947
          (list_abs (tl xs, incr_bv (~1, j, base_body))
blanchet@33851
  1948
           |> ap_n_split (length arg_Ts) tuple_T bool_T,
blanchet@33192
  1949
           Abs ("y", tuple_T, list_abs (tl xs, step_body)
blanchet@33851
  1950
                              |> ap_n_split (length arg_Ts) tuple_T bool_T))
blanchet@33192
  1951
        end
blanchet@33192
  1952
      | aux t =
blanchet@33224
  1953
        raise TERM ("Nitpick_HOL.linear_pred_base_and_step_rhss.aux", [t])
blanchet@33192
  1954
  in aux end
blanchet@33192
  1955
blanchet@35280
  1956
fun starred_linear_pred_const (hol_ctxt as {simp_table, ...}) (s, T) def =
blanchet@33192
  1957
  let
blanchet@33192
  1958
    val j = maxidx_of_term def + 1
blanchet@33192
  1959
    val (outer, fp_app) = strip_abs def
blanchet@33192
  1960
    val outer_bounds = map Bound (length outer - 1 downto 0)
blanchet@33192
  1961
    val outer_vars = map (fn (s, T) => Var ((s, j), T)) outer
blanchet@33192
  1962
    val fp_app = subst_bounds (rev outer_vars, fp_app)
blanchet@33192
  1963
    val (outer_Ts, rest_T) = strip_n_binders (length outer) T
blanchet@33192
  1964
    val tuple_arg_Ts = strip_type rest_T |> fst
blanchet@33192
  1965
    val tuple_T = HOLogic.mk_tupleT tuple_arg_Ts
blanchet@33192
  1966
    val set_T = tuple_T --> bool_T
blanchet@33192
  1967
    val curried_T = tuple_T --> set_T
blanchet@35665
  1968
    val uncurried_T = Type (@{type_name "*"}, [tuple_T, tuple_T]) --> bool_T
blanchet@33192
  1969
    val (base_rhs, step_rhs) = linear_pred_base_and_step_rhss fp_app
blanchet@33192
  1970
    val base_x as (base_s, _) = (base_prefix ^ s, outer_Ts ---> set_T)
blanchet@33192
  1971
    val base_eq = HOLogic.mk_eq (list_comb (Const base_x, outer_vars), base_rhs)
blanchet@33192
  1972
                  |> HOLogic.mk_Trueprop
blanchet@33192
  1973
    val _ = add_simps simp_table base_s [base_eq]
blanchet@33192
  1974
    val step_x as (step_s, _) = (step_prefix ^ s, outer_Ts ---> curried_T)
blanchet@33192
  1975
    val step_eq = HOLogic.mk_eq (list_comb (Const step_x, outer_vars), step_rhs)
blanchet@33192
  1976
                  |> HOLogic.mk_Trueprop
blanchet@33192
  1977
    val _ = add_simps simp_table step_s [step_eq]
blanchet@33192
  1978
  in
blanchet@33192
  1979
    list_abs (outer,
blanchet@33192
  1980
              Const (@{const_name Image}, uncurried_T --> set_T --> set_T)
blanchet@33192
  1981
              $ (Const (@{const_name rtrancl}, uncurried_T --> uncurried_T)
blanchet@33192
  1982
                 $ (Const (@{const_name split}, curried_T --> uncurried_T)
blanchet@33192
  1983
                    $ list_comb (Const step_x, outer_bounds)))
blanchet@33192
  1984
              $ list_comb (Const base_x, outer_bounds)
blanchet@35280
  1985
              |> ap_curry tuple_arg_Ts tuple_T)
blanchet@35067
  1986
    |> unfold_defs_in_term hol_ctxt
blanchet@33192
  1987
  end
blanchet@33192
  1988
blanchet@35067
  1989
fun unrolled_inductive_pred_const (hol_ctxt as {thy, star_linear_preds,
blanchet@33192
  1990
                                                def_table, simp_table, ...})
blanchet@33192
  1991
                                  gfp (x as (s, T)) =
blanchet@33192
  1992
  let
blanchet@33192
  1993
    val iter_T = iterator_type_for_const gfp x
blanchet@33192
  1994
    val x' as (s', _) = (unrolled_prefix ^ s, iter_T --> T)
blanchet@33192
  1995
    val unrolled_const = Const x' $ zero_const iter_T
blanchet@33192
  1996
    val def = the (def_of_const thy def_table x)
blanchet@33192
  1997
  in
blanchet@35067
  1998
    if is_equational_fun hol_ctxt x' then
blanchet@33192
  1999
      unrolled_const (* already done *)
blanchet@34923
  2000
    else if not gfp andalso is_linear_inductive_pred_def def andalso
blanchet@34923
  2001
         star_linear_preds then
blanchet@35067
  2002
      starred_linear_pred_const hol_ctxt x def
blanchet@33192
  2003
    else
blanchet@33192
  2004
      let
blanchet@33192
  2005
        val j = maxidx_of_term def + 1
blanchet@33192
  2006
        val (outer, fp_app) = strip_abs def
blanchet@33192
  2007
        val outer_bounds = map Bound (length outer - 1 downto 0)
blanchet@33192
  2008
        val cur = Var ((iter_var_prefix, j + 1), iter_T)
blanchet@33192
  2009
        val next = suc_const iter_T $ cur
blanchet@33192
  2010
        val rhs = case fp_app of
blanchet@33192
  2011
                    Const _ $ t =>
blanchet@33192
  2012
                    betapply (t, list_comb (Const x', next :: outer_bounds))
blanchet@33224
  2013
                  | _ => raise TERM ("Nitpick_HOL.unrolled_inductive_pred_\
blanchet@33224
  2014
                                     \const", [fp_app])
blanchet@33192
  2015
        val (inner, naked_rhs) = strip_abs rhs
blanchet@33192
  2016
        val all = outer @ inner
blanchet@33192
  2017
        val bounds = map Bound (length all - 1 downto 0)
blanchet@33192
  2018
        val vars = map (fn (s, T) => Var ((s, j), T)) all
blanchet@33192
  2019
        val eq = HOLogic.mk_eq (list_comb (Const x', cur :: bounds), naked_rhs)
blanchet@33192
  2020
                 |> HOLogic.mk_Trueprop |> curry subst_bounds (rev vars)
blanchet@33192
  2021
        val _ = add_simps simp_table s' [eq]
blanchet@33192
  2022
      in unrolled_const end
blanchet@33192
  2023
  end
blanchet@33192
  2024
blanchet@35067
  2025
fun raw_inductive_pred_axiom ({thy, def_table, ...} : hol_context) x =
blanchet@33192
  2026
  let
blanchet@33192
  2027
    val def = the (def_of_const thy def_table x)
blanchet@33192
  2028
    val (outer, fp_app) = strip_abs def
blanchet@33192
  2029
    val outer_bounds = map Bound (length outer - 1 downto 0)
blanchet@33192
  2030
    val rhs = case fp_app of
blanchet@33192
  2031
                Const _ $ t => betapply (t, list_comb (Const x, outer_bounds))
blanchet@33224
  2032
              | _ => raise TERM ("Nitpick_HOL.raw_inductive_pred_axiom",
blanchet@33192
  2033
                                 [fp_app])
blanchet@33192
  2034
    val (inner, naked_rhs) = strip_abs rhs
blanchet@33192
  2035
    val all = outer @ inner
blanchet@33192
  2036
    val bounds = map Bound (length all - 1 downto 0)
blanchet@33192
  2037
    val j = maxidx_of_term def + 1
blanchet@33192
  2038
    val vars = map (fn (s, T) => Var ((s, j), T)) all
blanchet@33192
  2039
  in
blanchet@33192
  2040
    HOLogic.mk_eq (list_comb (Const x, bounds), naked_rhs)
blanchet@33192
  2041
    |> HOLogic.mk_Trueprop |> curry subst_bounds (rev vars)
blanchet@33192
  2042
  end
blanchet@35067
  2043
fun inductive_pred_axiom hol_ctxt (x as (s, T)) =
blanchet@33192
  2044
  if String.isPrefix ubfp_prefix s orelse String.isPrefix lbfp_prefix s then
blanchet@35714
  2045
    let val x' = (strip_first_name_sep s |> snd, T) in
blanchet@35067
  2046
      raw_inductive_pred_axiom hol_ctxt x' |> subst_atomic [(Const x', Const x)]
blanchet@33192
  2047
    end
blanchet@33192
  2048
  else
blanchet@35067
  2049
    raw_inductive_pred_axiom hol_ctxt x
blanchet@33192
  2050
blanchet@35220
  2051
fun raw_equational_fun_axioms (hol_ctxt as {thy, stds, fast_descrs, simp_table,
blanchet@35280
  2052
                                            psimp_table, ...}) x =
blanchet@35220
  2053
  case def_props_for_const thy stds fast_descrs (!simp_table) x of
blanchet@35220
  2054
    [] => (case def_props_for_const thy stds fast_descrs psimp_table x of
blanchet@35067
  2055
             [] => [inductive_pred_axiom hol_ctxt x]
blanchet@33192
  2056
           | psimps => psimps)
blanchet@33192
  2057
  | simps => simps
blanchet@33192
  2058
val equational_fun_axioms = map extensionalize oo raw_equational_fun_axioms
blanchet@35067
  2059
fun is_equational_fun_surely_complete hol_ctxt x =
blanchet@35067
  2060
  case raw_equational_fun_axioms hol_ctxt x of
blanchet@35067
  2061
    [@{const Trueprop} $ (Const (@{const_name "op ="}, _) $ t1 $ _)] =>
blanchet@35067
  2062
    strip_comb t1 |> snd |> forall is_Var
blanchet@35067
  2063
  | _ => false
blanchet@33192
  2064
blanchet@35714
  2065
(** Type preprocessing **)
blanchet@35714
  2066
blanchet@33547
  2067
fun merge_type_vars_in_terms ts =
blanchet@33192
  2068
  let
blanchet@33192
  2069
    fun add_type (TFree (s, S)) table =
blanchet@33192
  2070
        (case AList.lookup (op =) table S of
blanchet@33192
  2071
           SOME s' =>
blanchet@33192
  2072
           if string_ord (s', s) = LESS then AList.update (op =) (S, s') table
blanchet@33192
  2073
           else table
blanchet@33192
  2074
         | NONE => (S, s) :: table)
blanchet@33192
  2075
      | add_type _ table = table
blanchet@33192
  2076
    val table = fold (fold_types (fold_atyps add_type)) ts []
blanchet@35280
  2077
    fun coalesce (TFree (_, S)) = TFree (AList.lookup (op =) table S |> the, S)
blanchet@33192
  2078
      | coalesce T = T
blanchet@33192
  2079
  in map (map_types (map_atyps coalesce)) ts end
blanchet@33192
  2080
blanchet@35190
  2081
fun add_ground_types hol_ctxt binarize =
blanchet@35190
  2082
  let
blanchet@35190
  2083
    fun aux T accum =
blanchet@35190
  2084
      case T of
blanchet@35665
  2085
        Type (@{type_name fun}, Ts) => fold aux Ts accum
blanchet@35665
  2086
      | Type (@{type_name "*"}, Ts) => fold aux Ts accum
blanchet@35190
  2087
      | Type (@{type_name itself}, [T1]) => aux T1 accum
blanchet@35190
  2088
      | Type (_, Ts) =>
blanchet@35190
  2089
        if member (op =) (@{typ prop} :: @{typ bool} :: @{typ unit} :: accum)
blanchet@35190
  2090
                  T then
blanchet@35190
  2091
          accum
blanchet@35190
  2092
        else
blanchet@35190
  2093
          T :: accum
blanchet@35190
  2094
          |> fold aux (case binarized_and_boxed_datatype_constrs hol_ctxt
blanchet@35190
  2095
                                                                 binarize T of
blanchet@35190
  2096
                         [] => Ts
blanchet@35190
  2097
                       | xs => map snd xs)
blanchet@35190
  2098
      | _ => insert (op =) T accum
blanchet@35190
  2099
  in aux end
blanchet@34985
  2100
blanchet@35190
  2101
fun ground_types_in_type hol_ctxt binarize T =
blanchet@35190
  2102
  add_ground_types hol_ctxt binarize T []
blanchet@35190
  2103
fun ground_types_in_terms hol_ctxt binarize ts =
blanchet@35190
  2104
  fold (fold_types (add_ground_types hol_ctxt binarize)) ts []
blanchet@33192
  2105
blanchet@33192
  2106
end;