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