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