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