| author | wenzelm | 
| Sat, 10 Oct 2020 21:12:20 +0200 | |
| changeset 72425 | d0937d55eb90 | 
| parent 71179 | 592e2afdd50c | 
| child 73978 | 906ecb049141 | 
| permissions | -rw-r--r-- | 
| 33978 
2380c1dac86e
fix soundness bug in Nitpick's "destroy_constrs" optimization
 blanchet parents: 
33968diff
changeset | 1 | (* Title: HOL/Tools/Nitpick/nitpick_hol.ML | 
| 33192 | 2 | Author: Jasmin Blanchette, TU Muenchen | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34936diff
changeset | 3 | Copyright 2008, 2009, 2010 | 
| 33192 | 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 | |
| 55889 | 11 | type special_fun = ((string * typ) * int list * term list) * (string * typ) | 
| 12 | type unrolled = (string * typ) * (string * typ) | |
| 13 | type wf_cache = ((string * typ) * (bool * bool)) list | |
| 33192 | 14 | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 15 | type hol_context = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 16 |     {thy: theory,
 | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 17 | ctxt: Proof.context, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 18 | max_bisim_depth: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 19 | boxes: (typ option * bool option) list, | 
| 55889 | 20 | wfs: ((string * typ) option * bool option) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 21 | user_axioms: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 22 | debug: bool, | 
| 38209 | 23 | whacks: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 24 | binary_ints: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 25 | destroy_constrs: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 26 | specialize: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 27 | star_linear_preds: bool, | 
| 41871 
394eef237bd1
lower threshold for implicitly using "nitpick_simp" for predicate definitions when "total_consts" is on
 blanchet parents: 
41860diff
changeset | 28 | total_consts: bool option, | 
| 41876 | 29 | needs: term list option, | 
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
54489diff
changeset | 30 | tac_timeout: Time.time, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 31 | evals: term list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 32 | case_names: (string * int) list, | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 33 | def_tables: const_table * const_table, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 34 | nondef_table: const_table, | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 35 | nondefs: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 36 | simp_table: const_table Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 37 | psimp_table: const_table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 38 | choice_spec_table: const_table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 39 | intro_table: const_table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 40 | ground_thm_table: term list Inttab.table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 41 | ersatz_table: (string * string) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 42 | skolems: (string * string list) list Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 43 | special_funs: special_fun list Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 44 | unrolled_preds: unrolled list Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 45 | wf_cache: wf_cache Unsynchronized.ref, | 
| 55889 | 46 | constr_cache: (typ * (string * typ) list) list Unsynchronized.ref} | 
| 33192 | 47 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 48 | datatype fixpoint_kind = Lfp | Gfp | NoFp | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 49 | datatype boxability = | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 50 | InConstr | InSel | InExpr | InPair | InFunLHS | InFunRHS1 | InFunRHS2 | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 51 | |
| 33192 | 52 | val name_sep : string | 
| 53 | val numeral_prefix : string | |
| 35718 | 54 | val base_prefix : string | 
| 55 | val step_prefix : string | |
| 56 | val unrolled_prefix : string | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 57 | val ubfp_prefix : string | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 58 | val lbfp_prefix : string | 
| 35311 | 59 | val quot_normal_prefix : string | 
| 33192 | 60 | val skolem_prefix : string | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 61 | val special_prefix : string | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 62 | val uncurry_prefix : string | 
| 33192 | 63 | val eval_prefix : string | 
| 35718 | 64 | val iter_var_prefix : string | 
| 65 | val strip_first_name_sep : string -> string * string | |
| 33192 | 66 | val original_name : string -> string | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 67 | val abs_var : indexname * typ -> term -> term | 
| 34998 | 68 | val s_conj : term * term -> term | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 69 | val s_disj : term * term -> term | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 70 | val strip_any_connective : term -> term list * term | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 71 | val conjuncts_of : term -> term list | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 72 | val disjuncts_of : term -> term list | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 73 | val unarize_unbox_etc_type : typ -> typ | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 74 | val uniterize_unarize_unbox_etc_type : typ -> typ | 
| 33192 | 75 | val string_for_type : Proof.context -> typ -> string | 
| 38188 | 76 | val pretty_for_type : Proof.context -> typ -> Pretty.T | 
| 33192 | 77 | val prefix_name : string -> string -> string | 
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 78 | val shortest_name : string -> string | 
| 33192 | 79 | val short_name : string -> string | 
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 80 | val shorten_names_in_term : term -> term | 
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 81 | val strict_type_match : theory -> typ * typ -> bool | 
| 33192 | 82 | val type_match : theory -> typ * typ -> bool | 
| 55889 | 83 | val const_match : theory -> (string * typ) * (string * typ) -> bool | 
| 33192 | 84 | val term_match : theory -> term * term -> bool | 
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 85 | val frac_from_term_pair : typ -> term -> term -> term | 
| 33192 | 86 | val is_fun_type : typ -> bool | 
| 46115 | 87 | val is_set_type : typ -> bool | 
| 88 | val is_fun_or_set_type : typ -> bool | |
| 46081 
8f6465f7021b
ported mono calculus to handle "set" type constructors
 blanchet parents: 
45980diff
changeset | 89 | val is_set_like_type : typ -> bool | 
| 33192 | 90 | val is_pair_type : typ -> bool | 
| 91 | val is_lfp_iterator_type : typ -> bool | |
| 92 | val is_gfp_iterator_type : typ -> bool | |
| 93 | val is_fp_iterator_type : typ -> bool | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 94 | val is_iterator_type : typ -> bool | 
| 33192 | 95 | val is_boolean_type : typ -> bool | 
| 96 | val is_integer_type : typ -> bool | |
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 97 | val is_bit_type : typ -> bool | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 98 | val is_word_type : typ -> bool | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 99 | val is_integer_like_type : typ -> bool | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 100 | val is_number_type : Proof.context -> typ -> bool | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 101 | val is_higher_order_type : typ -> bool | 
| 46081 
8f6465f7021b
ported mono calculus to handle "set" type constructors
 blanchet parents: 
45980diff
changeset | 102 | val elem_type : typ -> typ | 
| 46083 | 103 | val pseudo_domain_type : typ -> typ | 
| 104 | val pseudo_range_type : typ -> typ | |
| 55889 | 105 | val const_for_iterator_type : typ -> string * typ | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 106 | val strip_n_binders : int -> typ -> typ list * typ | 
| 33192 | 107 | val nth_range_type : int -> typ -> typ | 
| 108 | val num_factors_in_type : typ -> int | |
| 109 | val curried_binder_types : typ -> typ list | |
| 110 | val mk_flat_tuple : typ -> term list -> term | |
| 111 | val dest_n_tuple : int -> term -> term list | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 112 | val is_codatatype : Proof.context -> typ -> bool | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 113 | val is_quot_type : Proof.context -> typ -> bool | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 114 | val is_pure_typedef : Proof.context -> typ -> bool | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 115 | val is_univ_typedef : Proof.context -> typ -> bool | 
| 55890 | 116 | val is_data_type : Proof.context -> typ -> bool | 
| 55889 | 117 | val is_record_get : theory -> string * typ -> bool | 
| 118 | val is_record_update : theory -> string * typ -> bool | |
| 119 | val is_abs_fun : Proof.context -> string * typ -> bool | |
| 120 | val is_rep_fun : Proof.context -> string * typ -> bool | |
| 121 | val is_quot_abs_fun : Proof.context -> string * typ -> bool | |
| 122 | val is_quot_rep_fun : Proof.context -> string * typ -> bool | |
| 123 | val mate_of_rep_fun : Proof.context -> string * typ -> string * typ | |
| 124 | val is_nonfree_constr : Proof.context -> string * typ -> bool | |
| 125 | val is_free_constr : Proof.context -> string * typ -> bool | |
| 126 | val is_constr : Proof.context -> string * typ -> bool | |
| 33192 | 127 | val is_sel : string -> bool | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 128 | val is_sel_like_and_no_discr : string -> bool | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 129 | val box_type : hol_context -> boxability -> typ -> typ | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 130 | val binarize_nat_and_int_in_type : typ -> typ | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 131 | val binarize_nat_and_int_in_term : term -> term | 
| 55889 | 132 | val discr_for_constr : string * typ -> string * typ | 
| 33192 | 133 | val num_sels_for_constr_type : typ -> int | 
| 134 | val nth_sel_name_for_constr_name : string -> int -> string | |
| 55889 | 135 | val nth_sel_for_constr : string * typ -> int -> string * typ | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 136 | val binarized_and_boxed_nth_sel_for_constr : | 
| 55889 | 137 | hol_context -> bool -> string * typ -> int -> string * typ | 
| 33192 | 138 | val sel_no_from_name : string -> int | 
| 35078 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 139 | val close_form : term -> term | 
| 33192 | 140 | val distinctness_formula : typ -> term list -> term | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 141 | val register_frac_type : | 
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 142 | string -> (string * string) list -> morphism -> Context.generic | 
| 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 143 | -> Context.generic | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 144 | val register_frac_type_global : | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 145 | string -> (string * string) list -> theory -> theory | 
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 146 | val unregister_frac_type : | 
| 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 147 | string -> morphism -> Context.generic -> Context.generic | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 148 | val unregister_frac_type_global : string -> theory -> theory | 
| 44012 | 149 | val register_ersatz : | 
| 150 | (string * string) list -> morphism -> Context.generic -> Context.generic | |
| 151 | val register_ersatz_global : (string * string) list -> theory -> theory | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 152 | val register_codatatype : | 
| 55889 | 153 | typ -> string -> (string * typ) list -> morphism -> Context.generic -> | 
| 154 | Context.generic | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 155 | val register_codatatype_global : | 
| 55889 | 156 | typ -> string -> (string * typ) list -> theory -> theory | 
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 157 | val unregister_codatatype : | 
| 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 158 | typ -> morphism -> Context.generic -> Context.generic | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 159 | val unregister_codatatype_global : typ -> theory -> theory | 
| 55890 | 160 | val binarized_and_boxed_data_type_constrs : | 
| 55889 | 161 | hol_context -> bool -> typ -> (string * typ) list | 
| 33192 | 162 | val constr_name_for_sel_like : string -> string | 
| 55889 | 163 | val binarized_and_boxed_constr_for_sel : hol_context -> bool -> | 
| 164 | string * typ -> string * typ | |
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 165 | val card_of_type : (typ * int) list -> typ -> int | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 166 | val bounded_card_of_type : int -> int -> (typ * int) list -> typ -> int | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 167 | val bounded_exact_card_of_type : | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 168 | hol_context -> typ list -> int -> int -> (typ * int) list -> typ -> int | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 169 | val typical_card_of_type : typ -> int | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 170 | val is_finite_type : hol_context -> typ -> bool | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 171 | val is_special_eligible_arg : bool -> typ list -> term -> bool | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 172 | val s_let : | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 173 | typ list -> string -> int -> typ -> typ -> (term -> term) -> term -> term | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 174 | val s_betapply : typ list -> term * term -> term | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 175 | val s_betapplys : typ list -> term * term list -> term | 
| 55889 | 176 | val discriminate_value : hol_context -> string * typ -> term -> term | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 177 | val select_nth_constr_arg : | 
| 55889 | 178 | Proof.context -> string * typ -> term -> int -> typ -> term | 
| 179 | val construct_value : Proof.context -> string * typ -> term list -> term | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 180 | val coerce_term : hol_context -> typ list -> typ -> typ -> term -> term | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 181 | val special_bounds : term list -> (indexname * typ) list | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 182 | val is_funky_typedef : Proof.context -> typ -> bool | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 183 | val all_defs_of : theory -> (term * term) list -> term list | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 184 | val all_nondefs_of : Proof.context -> (term * term) list -> term list | 
| 55889 | 185 | val arity_of_built_in_const : string * typ -> int option | 
| 186 | val is_built_in_const : string * typ -> bool | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 187 | val term_under_def : term -> term | 
| 55888 | 188 | val case_const_names : Proof.context -> (string * int) list | 
| 35718 | 189 | val unfold_defs_in_term : hol_context -> term -> term | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 190 | val const_def_tables : | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 191 | Proof.context -> (term * term) list -> term list | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 192 | -> const_table * const_table | 
| 33192 | 193 | val const_nondef_table : term list -> const_table | 
| 35335 | 194 | val const_simp_table : Proof.context -> (term * term) list -> const_table | 
| 195 | val const_psimp_table : Proof.context -> (term * term) list -> const_table | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 196 | val const_choice_spec_table : | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 197 | Proof.context -> (term * term) list -> const_table | 
| 35335 | 198 | val inductive_intro_table : | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 199 | Proof.context -> (term * term) list -> const_table * const_table | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 200 | -> const_table | 
| 33192 | 201 | val ground_theorem_table : theory -> term list Inttab.table | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 202 | val ersatz_table : Proof.context -> (string * string) list | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 203 | val add_simps : const_table Unsynchronized.ref -> string -> term list -> unit | 
| 55889 | 204 | val inverse_axioms_for_rep_fun : Proof.context -> string * typ -> term list | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 205 | val optimized_typedef_axioms : Proof.context -> string * typ list -> term list | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 206 | val optimized_quot_type_axioms : | 
| 55888 | 207 | Proof.context -> string * typ list -> term list | 
| 55889 | 208 | val def_of_const : theory -> const_table * const_table -> string * typ -> | 
| 209 | term option | |
| 35718 | 210 | val fixpoint_kind_of_rhs : term -> fixpoint_kind | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 211 | val fixpoint_kind_of_const : | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 212 | theory -> const_table * const_table -> string * typ -> fixpoint_kind | 
| 55889 | 213 | val is_raw_inductive_pred : hol_context -> string * typ -> bool | 
| 41994 
c567c860caf6
always destroy constructor patterns, since this seems to be always useful
 blanchet parents: 
41898diff
changeset | 214 | val is_constr_pattern : Proof.context -> term -> bool | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 215 | val is_constr_pattern_lhs : Proof.context -> term -> bool | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 216 | val is_constr_pattern_formula : Proof.context -> term -> bool | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 217 | val nondef_props_for_const : | 
| 55889 | 218 | theory -> bool -> const_table -> string * typ -> term list | 
| 219 | val is_choice_spec_fun : hol_context -> string * typ -> bool | |
| 59970 | 220 | val is_choice_spec_axiom : Proof.context -> const_table -> term -> bool | 
| 55889 | 221 | val is_raw_equational_fun : hol_context -> string * typ -> bool | 
| 222 | val is_equational_fun : hol_context -> string * typ -> bool | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 223 | val codatatype_bisim_axioms : hol_context -> typ -> term list | 
| 55889 | 224 | val is_well_founded_inductive_pred : hol_context -> string * typ -> bool | 
| 225 | val unrolled_inductive_pred_const : hol_context -> bool -> string * typ -> | |
| 226 | term | |
| 227 | val equational_fun_axioms : hol_context -> string * typ -> term list | |
| 228 | val is_equational_fun_surely_complete : hol_context -> string * typ -> bool | |
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 229 | val merged_type_var_table_for_terms : | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 230 | theory -> term list -> (sort * string) list | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 231 | val merge_type_vars_in_term : | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 232 | theory -> bool -> (sort * string) list -> term -> term | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 233 | val ground_types_in_type : hol_context -> bool -> typ -> typ list | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 234 | val ground_types_in_terms : hol_context -> bool -> term list -> typ list | 
| 33192 | 235 | end; | 
| 236 | ||
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33202diff
changeset | 237 | structure Nitpick_HOL : NITPICK_HOL = | 
| 33192 | 238 | struct | 
| 239 | ||
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33202diff
changeset | 240 | open Nitpick_Util | 
| 33192 | 241 | |
| 242 | type const_table = term list Symtab.table | |
| 55889 | 243 | type special_fun = ((string * typ) * int list * term list) * (string * typ) | 
| 244 | type unrolled = (string * typ) * (string * typ) | |
| 245 | type wf_cache = ((string * typ) * (bool * bool)) list | |
| 33192 | 246 | |
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 247 | type hol_context = | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 248 |   {thy: theory,
 | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 249 | ctxt: Proof.context, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 250 | max_bisim_depth: int, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 251 | boxes: (typ option * bool option) list, | 
| 55889 | 252 | wfs: ((string * typ) option * bool option) list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 253 | user_axioms: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 254 | debug: bool, | 
| 38209 | 255 | whacks: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 256 | binary_ints: bool option, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 257 | destroy_constrs: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 258 | specialize: bool, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 259 | star_linear_preds: bool, | 
| 41871 
394eef237bd1
lower threshold for implicitly using "nitpick_simp" for predicate definitions when "total_consts" is on
 blanchet parents: 
41860diff
changeset | 260 | total_consts: bool option, | 
| 41876 | 261 | needs: term list option, | 
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
54489diff
changeset | 262 | tac_timeout: Time.time, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 263 | evals: term list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 264 | case_names: (string * int) list, | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 265 | def_tables: const_table * const_table, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 266 | nondef_table: const_table, | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 267 | nondefs: term list, | 
| 36390 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 268 | simp_table: const_table Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 269 | psimp_table: const_table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 270 | choice_spec_table: const_table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 271 | intro_table: const_table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 272 | ground_thm_table: term list Inttab.table, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 273 | ersatz_table: (string * string) list, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 274 | skolems: (string * string list) list Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 275 | special_funs: special_fun list Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 276 | unrolled_preds: unrolled list Unsynchronized.ref, | 
| 
eee4ee6a5cbe
remove "show_skolems" option and change style of record declarations
 blanchet parents: 
36389diff
changeset | 277 | wf_cache: wf_cache Unsynchronized.ref, | 
| 55889 | 278 | constr_cache: (typ * (string * typ) list) list Unsynchronized.ref} | 
| 33192 | 279 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 280 | datatype fixpoint_kind = Lfp | Gfp | NoFp | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 281 | datatype boxability = | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 282 | InConstr | InSel | InExpr | InPair | InFunLHS | InFunRHS1 | InFunRHS2 | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 283 | |
| 55080 | 284 | (* FIXME: Get rid of 'codatatypes' and related functionality *) | 
| 41472 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
41052diff
changeset | 285 | structure Data = Generic_Data | 
| 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
41052diff
changeset | 286 | ( | 
| 33192 | 287 |   type T = {frac_types: (string * (string * string) list) list,
 | 
| 44012 | 288 | ersatz_table: (string * string) list, | 
| 55889 | 289 | codatatypes: (string * (string * (string * typ) list)) list} | 
| 44012 | 290 |   val empty = {frac_types = [], ersatz_table = [], codatatypes = []}
 | 
| 33192 | 291 | val extend = I | 
| 44012 | 292 |   fun merge ({frac_types = fs1, ersatz_table = et1, codatatypes = cs1},
 | 
| 293 |              {frac_types = fs2, ersatz_table = et2, codatatypes = cs2}) : T =
 | |
| 33699 
f33b036ef318
permissive AList.merge -- most likely setup for theory data (beware of spurious AList.DUP);
 wenzelm parents: 
33583diff
changeset | 294 |     {frac_types = AList.merge (op =) (K true) (fs1, fs2),
 | 
| 44012 | 295 | ersatz_table = AList.merge (op =) (K true) (et1, et2), | 
| 41472 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
41052diff
changeset | 296 | codatatypes = AList.merge (op =) (K true) (cs1, cs2)} | 
| 
f6ab14e61604
misc tuning and comments based on review of Theory_Data, Proof_Data, Generic_Data usage;
 wenzelm parents: 
41052diff
changeset | 297 | ) | 
| 33192 | 298 | |
| 299 | val name_sep = "$" | |
| 300 | val numeral_prefix = nitpick_prefix ^ "num" ^ name_sep | |
| 301 | val sel_prefix = nitpick_prefix ^ "sel" | |
| 302 | val discr_prefix = nitpick_prefix ^ "is" ^ name_sep | |
| 303 | val lfp_iterator_prefix = nitpick_prefix ^ "lfpit" ^ name_sep | |
| 304 | val gfp_iterator_prefix = nitpick_prefix ^ "gfpit" ^ name_sep | |
| 305 | val unrolled_prefix = nitpick_prefix ^ "unroll" ^ name_sep | |
| 306 | val base_prefix = nitpick_prefix ^ "base" ^ name_sep | |
| 307 | val step_prefix = nitpick_prefix ^ "step" ^ name_sep | |
| 308 | val ubfp_prefix = nitpick_prefix ^ "ubfp" ^ name_sep | |
| 309 | val lbfp_prefix = nitpick_prefix ^ "lbfp" ^ name_sep | |
| 35311 | 310 | val quot_normal_prefix = nitpick_prefix ^ "qn" ^ name_sep | 
| 33192 | 311 | val skolem_prefix = nitpick_prefix ^ "sk" | 
| 312 | val special_prefix = nitpick_prefix ^ "sp" | |
| 313 | val uncurry_prefix = nitpick_prefix ^ "unc" | |
| 314 | val eval_prefix = nitpick_prefix ^ "eval" | |
| 315 | val iter_var_prefix = "i" | |
| 35718 | 316 | |
| 317 | (** Constant/type information and term/type manipulation **) | |
| 33192 | 318 | |
| 319 | fun sel_prefix_for j = sel_prefix ^ string_of_int j ^ name_sep | |
| 55889 | 320 | |
| 35311 | 321 | fun quot_normal_name_for_type ctxt T = | 
| 59433 | 322 | quot_normal_prefix ^ YXML.content_of (Syntax.string_of_typ ctxt T) | 
| 33192 | 323 | |
| 324 | val strip_first_name_sep = | |
| 325 | Substring.full #> Substring.position name_sep ##> Substring.triml 1 | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 326 | #> apply2 Substring.string | 
| 55889 | 327 | |
| 33192 | 328 | fun original_name s = | 
| 329 | if String.isPrefix nitpick_prefix s then | |
| 330 | case strip_first_name_sep s of (s1, "") => s1 | (_, s2) => original_name s2 | |
| 331 | else | |
| 332 | s | |
| 35718 | 333 | |
| 69597 | 334 | fun s_conj (t1, \<^const>\<open>True\<close>) = t1 | 
| 335 | | s_conj (\<^const>\<open>True\<close>, t2) = t2 | |
| 34998 | 336 | | s_conj (t1, t2) = | 
| 69597 | 337 | if t1 = \<^const>\<open>False\<close> orelse t2 = \<^const>\<open>False\<close> then \<^const>\<open>False\<close> | 
| 34998 | 338 | else HOLogic.mk_conj (t1, t2) | 
| 55889 | 339 | |
| 69597 | 340 | fun s_disj (t1, \<^const>\<open>False\<close>) = t1 | 
| 341 | | s_disj (\<^const>\<open>False\<close>, t2) = t2 | |
| 34998 | 342 | | s_disj (t1, t2) = | 
| 69597 | 343 | if t1 = \<^const>\<open>True\<close> orelse t2 = \<^const>\<open>True\<close> then \<^const>\<open>True\<close> | 
| 34998 | 344 | else HOLogic.mk_disj (t1, t2) | 
| 345 | ||
| 346 | fun strip_connective conn_t (t as (t0 $ t1 $ t2)) = | |
| 347 | if t0 = conn_t then strip_connective t0 t2 @ strip_connective t0 t1 else [t] | |
| 348 | | strip_connective _ t = [t] | |
| 55889 | 349 | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 350 | fun strip_any_connective (t as (t0 $ _ $ _)) = | 
| 69597 | 351 | if t0 = \<^const>\<open>HOL.conj\<close> orelse t0 = \<^const>\<open>HOL.disj\<close> then | 
| 34998 | 352 | (strip_connective t0 t, t0) | 
| 353 | else | |
| 69597 | 354 | ([t], \<^const>\<open>Not\<close>) | 
| 355 | | strip_any_connective t = ([t], \<^const>\<open>Not\<close>) | |
| 356 | val conjuncts_of = strip_connective \<^const>\<open>HOL.conj\<close> | |
| 357 | val disjuncts_of = strip_connective \<^const>\<open>HOL.disj\<close> | |
| 34998 | 358 | |
| 33192 | 359 | (* 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 | 360 | "Nitpick_Nut.nut_from_term", and perhaps in "Nitpick_Mono.consider_term" as | 
| 33192 | 361 | well. *) | 
| 362 | val built_in_consts = | |
| 69593 | 363 | [(\<^const_name>\<open>Pure.all\<close>, 1), | 
| 364 | (\<^const_name>\<open>Pure.eq\<close>, 2), | |
| 365 | (\<^const_name>\<open>Pure.imp\<close>, 2), | |
| 366 | (\<^const_name>\<open>Pure.conjunction\<close>, 2), | |
| 367 | (\<^const_name>\<open>Trueprop\<close>, 1), | |
| 368 | (\<^const_name>\<open>Not\<close>, 1), | |
| 369 | (\<^const_name>\<open>False\<close>, 0), | |
| 370 | (\<^const_name>\<open>True\<close>, 0), | |
| 371 | (\<^const_name>\<open>All\<close>, 1), | |
| 372 | (\<^const_name>\<open>Ex\<close>, 1), | |
| 373 | (\<^const_name>\<open>HOL.eq\<close>, 1), | |
| 374 | (\<^const_name>\<open>HOL.conj\<close>, 2), | |
| 375 | (\<^const_name>\<open>HOL.disj\<close>, 2), | |
| 376 | (\<^const_name>\<open>HOL.implies\<close>, 2), | |
| 377 | (\<^const_name>\<open>If\<close>, 3), | |
| 378 | (\<^const_name>\<open>Let\<close>, 2), | |
| 379 | (\<^const_name>\<open>Pair\<close>, 2), | |
| 380 | (\<^const_name>\<open>fst\<close>, 1), | |
| 381 | (\<^const_name>\<open>snd\<close>, 1), | |
| 382 | (\<^const_name>\<open>Set.member\<close>, 2), | |
| 383 | (\<^const_name>\<open>Collect\<close>, 1), | |
| 384 | (\<^const_name>\<open>Id\<close>, 0), | |
| 385 | (\<^const_name>\<open>converse\<close>, 1), | |
| 386 | (\<^const_name>\<open>trancl\<close>, 1), | |
| 387 | (\<^const_name>\<open>relcomp\<close>, 2), | |
| 388 | (\<^const_name>\<open>finite\<close>, 1), | |
| 389 | (\<^const_name>\<open>unknown\<close>, 0), | |
| 390 | (\<^const_name>\<open>is_unknown\<close>, 1), | |
| 391 | (\<^const_name>\<open>safe_The\<close>, 1), | |
| 392 | (\<^const_name>\<open>Frac\<close>, 0), | |
| 393 | (\<^const_name>\<open>norm_frac\<close>, 0), | |
| 394 | (\<^const_name>\<open>Suc\<close>, 0), | |
| 395 | (\<^const_name>\<open>nat\<close>, 0), | |
| 396 | (\<^const_name>\<open>nat_gcd\<close>, 0), | |
| 397 | (\<^const_name>\<open>nat_lcm\<close>, 0)] | |
| 33192 | 398 | val built_in_typed_consts = | 
| 69593 | 399 | [((\<^const_name>\<open>zero_class.zero\<close>, nat_T), 0), | 
| 400 | ((\<^const_name>\<open>one_class.one\<close>, nat_T), 0), | |
| 401 | ((\<^const_name>\<open>plus_class.plus\<close>, nat_T --> nat_T --> nat_T), 0), | |
| 402 | ((\<^const_name>\<open>minus_class.minus\<close>, nat_T --> nat_T --> nat_T), 0), | |
| 403 | ((\<^const_name>\<open>times_class.times\<close>, nat_T --> nat_T --> nat_T), 0), | |
| 404 | ((\<^const_name>\<open>Rings.divide\<close>, nat_T --> nat_T --> nat_T), 0), | |
| 405 | ((\<^const_name>\<open>ord_class.less\<close>, nat_T --> nat_T --> bool_T), 2), | |
| 406 | ((\<^const_name>\<open>ord_class.less_eq\<close>, nat_T --> nat_T --> bool_T), 2), | |
| 407 | ((\<^const_name>\<open>of_nat\<close>, nat_T --> int_T), 0), | |
| 408 | ((\<^const_name>\<open>zero_class.zero\<close>, int_T), 0), | |
| 409 | ((\<^const_name>\<open>one_class.one\<close>, int_T), 0), | |
| 410 | ((\<^const_name>\<open>plus_class.plus\<close>, int_T --> int_T --> int_T), 0), | |
| 411 | ((\<^const_name>\<open>minus_class.minus\<close>, int_T --> int_T --> int_T), 0), | |
| 412 | ((\<^const_name>\<open>times_class.times\<close>, int_T --> int_T --> int_T), 0), | |
| 413 | ((\<^const_name>\<open>Rings.divide\<close>, int_T --> int_T --> int_T), 0), | |
| 414 | ((\<^const_name>\<open>uminus_class.uminus\<close>, int_T --> int_T), 0), | |
| 415 | ((\<^const_name>\<open>ord_class.less\<close>, int_T --> int_T --> bool_T), 2), | |
| 416 | ((\<^const_name>\<open>ord_class.less_eq\<close>, int_T --> int_T --> bool_T), 2)] | |
| 33192 | 417 | |
| 69593 | 418 | fun unarize_type \<^typ>\<open>unsigned_bit word\<close> = nat_T | 
| 419 | | unarize_type \<^typ>\<open>signed_bit word\<close> = int_T | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 420 | | unarize_type (Type (s, Ts as _ :: _)) = Type (s, map unarize_type Ts) | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 421 | | unarize_type T = T | 
| 55889 | 422 | |
| 69593 | 423 | fun unarize_unbox_etc_type (Type (\<^type_name>\<open>fun_box\<close>, Ts)) = | 
| 424 | unarize_unbox_etc_type (Type (\<^type_name>\<open>fun\<close>, Ts)) | |
| 425 | | unarize_unbox_etc_type (Type (\<^type_name>\<open>pair_box\<close>, Ts)) = | |
| 426 | Type (\<^type_name>\<open>prod\<close>, map unarize_unbox_etc_type Ts) | |
| 427 | | unarize_unbox_etc_type \<^typ>\<open>unsigned_bit word\<close> = nat_T | |
| 428 | | unarize_unbox_etc_type \<^typ>\<open>signed_bit word\<close> = int_T | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 429 | | unarize_unbox_etc_type (Type (s, Ts as _ :: _)) = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 430 | Type (s, map unarize_unbox_etc_type Ts) | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 431 | | unarize_unbox_etc_type T = T | 
| 55889 | 432 | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 433 | fun uniterize_type (Type (s, Ts as _ :: _)) = Type (s, map uniterize_type Ts) | 
| 69593 | 434 | | uniterize_type \<^typ>\<open>bisim_iterator\<close> = nat_T | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 435 | | uniterize_type T = T | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 436 | val uniterize_unarize_unbox_etc_type = uniterize_type o unarize_unbox_etc_type | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 437 | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 438 | fun string_for_type ctxt = Syntax.string_of_typ ctxt o unarize_unbox_etc_type | 
| 38188 | 439 | fun pretty_for_type ctxt = Syntax.pretty_typ ctxt o unarize_unbox_etc_type | 
| 33192 | 440 | |
| 441 | val prefix_name = Long_Name.qualify o Long_Name.base_name | |
| 56220 
4c43a2881b25
more explicit Long_Name operations (NB: analyzing qualifiers is inherently fragile);
 wenzelm parents: 
56161diff
changeset | 442 | val shortest_name = Long_Name.base_name | 
| 33192 | 443 | val prefix_abs_vars = Term.map_abs_vars o prefix_name | 
| 55889 | 444 | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 445 | fun short_name s = | 
| 33192 | 446 | case space_explode name_sep s of | 
| 447 | [_] => s |> String.isPrefix nitpick_prefix s ? unprefix nitpick_prefix | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 448 | | ss => map shortest_name ss |> space_implode "_" | 
| 55889 | 449 | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 450 | fun shorten_names_in_type (Type (s, Ts)) = | 
| 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 451 | Type (short_name s, map shorten_names_in_type Ts) | 
| 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 452 | | shorten_names_in_type T = T | 
| 55889 | 453 | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 454 | val shorten_names_in_term = | 
| 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 455 | map_aterms (fn Const (s, T) => Const (short_name s, T) | t => t) | 
| 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 456 | #> map_types shorten_names_in_type | 
| 33192 | 457 | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 458 | fun strict_type_match thy (T1, T2) = | 
| 33192 | 459 | (Sign.typ_match thy (T2, T1) Vartab.empty; true) | 
| 460 | handle Type.TYPE_MATCH => false | |
| 55889 | 461 | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 462 | fun type_match thy = strict_type_match thy o apply2 unarize_unbox_etc_type | 
| 55889 | 463 | |
| 33192 | 464 | fun const_match thy ((s1, T1), (s2, T2)) = | 
| 465 | s1 = s2 andalso type_match thy (T1, T2) | |
| 55889 | 466 | |
| 33192 | 467 | fun term_match thy (Const x1, Const x2) = const_match thy (x1, x2) | 
| 468 | | term_match thy (Free (s1, T1), Free (s2, T2)) = | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 469 | const_match thy ((shortest_name s1, T1), (shortest_name s2, T2)) | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 470 | | term_match _ (t1, t2) = t1 aconv t2 | 
| 33192 | 471 | |
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 472 | fun frac_from_term_pair T t1 t2 = | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 473 | case snd (HOLogic.dest_number t1) of | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 474 | 0 => HOLogic.mk_number T 0 | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 475 | | n1 => case snd (HOLogic.dest_number t2) of | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 476 | 1 => HOLogic.mk_number T n1 | 
| 69593 | 477 | | n2 => Const (\<^const_name>\<open>divide\<close>, T --> T --> T) | 
| 35711 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 478 | $ HOLogic.mk_number T n1 $ HOLogic.mk_number T n2 | 
| 
548d3f16404b
added term postprocessor to Nitpick, to provide custom syntax for typedefs
 blanchet parents: 
35671diff
changeset | 479 | |
| 69593 | 480 | fun is_fun_type (Type (\<^type_name>\<open>fun\<close>, _)) = true | 
| 33192 | 481 | | is_fun_type _ = false | 
| 55889 | 482 | |
| 69593 | 483 | fun is_set_type (Type (\<^type_name>\<open>set\<close>, _)) = true | 
| 46115 | 484 | | is_set_type _ = false | 
| 55889 | 485 | |
| 46115 | 486 | val is_fun_or_set_type = is_fun_type orf is_set_type | 
| 55889 | 487 | |
| 69593 | 488 | fun is_set_like_type (Type (\<^type_name>\<open>fun\<close>, [_, T'])) = | 
| 46115 | 489 | (body_type T' = bool_T) | 
| 69593 | 490 | | is_set_like_type (Type (\<^type_name>\<open>set\<close>, _)) = true | 
| 46081 
8f6465f7021b
ported mono calculus to handle "set" type constructors
 blanchet parents: 
45980diff
changeset | 491 | | is_set_like_type _ = false | 
| 55889 | 492 | |
| 69593 | 493 | fun is_pair_type (Type (\<^type_name>\<open>prod\<close>, _)) = true | 
| 33192 | 494 | | is_pair_type _ = false | 
| 55889 | 495 | |
| 33192 | 496 | fun is_lfp_iterator_type (Type (s, _)) = String.isPrefix lfp_iterator_prefix s | 
| 497 | | is_lfp_iterator_type _ = false | |
| 55889 | 498 | |
| 33192 | 499 | fun is_gfp_iterator_type (Type (s, _)) = String.isPrefix gfp_iterator_prefix s | 
| 500 | | is_gfp_iterator_type _ = false | |
| 55889 | 501 | |
| 33192 | 502 | val is_fp_iterator_type = is_lfp_iterator_type orf is_gfp_iterator_type | 
| 55889 | 503 | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 504 | fun is_iterator_type T = | 
| 69593 | 505 | (T = \<^typ>\<open>bisim_iterator\<close> orelse is_fp_iterator_type T) | 
| 55889 | 506 | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 507 | fun is_boolean_type T = (T = prop_T orelse T = bool_T) | 
| 55889 | 508 | |
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 509 | fun is_integer_type T = (T = nat_T orelse T = int_T) | 
| 55889 | 510 | |
| 69593 | 511 | fun is_bit_type T = (T = \<^typ>\<open>unsigned_bit\<close> orelse T = \<^typ>\<open>signed_bit\<close>) | 
| 55889 | 512 | |
| 69593 | 513 | fun is_word_type (Type (\<^type_name>\<open>word\<close>, _)) = true | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 514 | | is_word_type _ = false | 
| 55889 | 515 | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 516 | val is_integer_like_type = is_iterator_type orf is_integer_type orf is_word_type | 
| 55889 | 517 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 518 | fun is_frac_type ctxt (Type (s, [])) = | 
| 44012 | 519 | s |> AList.defined (op =) (#frac_types (Data.get (Context.Proof ctxt))) | 
| 33192 | 520 | | is_frac_type _ _ = false | 
| 55889 | 521 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 522 | fun is_number_type ctxt = is_integer_like_type orf is_frac_type ctxt | 
| 55889 | 523 | |
| 69593 | 524 | fun is_higher_order_type (Type (\<^type_name>\<open>fun\<close>, _)) = true | 
| 525 | | is_higher_order_type (Type (\<^type_name>\<open>set\<close>, _)) = true | |
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 526 | | is_higher_order_type (Type (_, Ts)) = exists is_higher_order_type Ts | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 527 | | is_higher_order_type _ = false | 
| 33192 | 528 | |
| 69593 | 529 | fun elem_type (Type (\<^type_name>\<open>set\<close>, [T'])) = T' | 
| 46081 
8f6465f7021b
ported mono calculus to handle "set" type constructors
 blanchet parents: 
45980diff
changeset | 530 |   | elem_type T = raise TYPE ("Nitpick_HOL.elem_type", [T], [])
 | 
| 55889 | 531 | |
| 69593 | 532 | fun pseudo_domain_type (Type (\<^type_name>\<open>fun\<close>, [T1, _])) = T1 | 
| 46083 | 533 | | pseudo_domain_type T = elem_type T | 
| 55889 | 534 | |
| 69593 | 535 | fun pseudo_range_type (Type (\<^type_name>\<open>fun\<close>, [_, T2])) = T2 | 
| 536 | | pseudo_range_type (Type (\<^type_name>\<open>set\<close>, _)) = bool_T | |
| 46083 | 537 |   | pseudo_range_type T = raise TYPE ("Nitpick_HOL.pseudo_range_type", [T], [])
 | 
| 46081 
8f6465f7021b
ported mono calculus to handle "set" type constructors
 blanchet parents: 
45980diff
changeset | 538 | |
| 33192 | 539 | fun iterator_type_for_const gfp (s, T) = | 
| 540 | Type ((if gfp then gfp_iterator_prefix else lfp_iterator_prefix) ^ s, | |
| 541 | binder_types T) | |
| 55889 | 542 | |
| 35718 | 543 | fun const_for_iterator_type (Type (s, Ts)) = | 
| 544 | (strip_first_name_sep s |> snd, Ts ---> bool_T) | |
| 33192 | 545 | | const_for_iterator_type T = | 
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33202diff
changeset | 546 |     raise TYPE ("Nitpick_HOL.const_for_iterator_type", [T], [])
 | 
| 33192 | 547 | |
| 548 | fun strip_n_binders 0 T = ([], T) | |
| 69593 | 549 | | strip_n_binders n (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) = | 
| 33192 | 550 | strip_n_binders (n - 1) T2 |>> cons T1 | 
| 69593 | 551 | | strip_n_binders n (Type (\<^type_name>\<open>fun_box\<close>, Ts)) = | 
| 552 | strip_n_binders n (Type (\<^type_name>\<open>fun\<close>, Ts)) | |
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33202diff
changeset | 553 |   | strip_n_binders _ T = raise TYPE ("Nitpick_HOL.strip_n_binders", [T], [])
 | 
| 55889 | 554 | |
| 33192 | 555 | val nth_range_type = snd oo strip_n_binders | 
| 556 | ||
| 69593 | 557 | fun num_factors_in_type (Type (\<^type_name>\<open>prod\<close>, [T1, T2])) = | 
| 33192 | 558 | fold (Integer.add o num_factors_in_type) [T1, T2] 0 | 
| 559 | | num_factors_in_type _ = 1 | |
| 55889 | 560 | |
| 33192 | 561 | val curried_binder_types = maps HOLogic.flatten_tupleT o binder_types | 
| 55889 | 562 | |
| 33192 | 563 | fun maybe_curried_binder_types T = | 
| 564 | (if is_pair_type (body_type T) then binder_types else curried_binder_types) T | |
| 565 | ||
| 566 | fun mk_flat_tuple _ [t] = t | |
| 69593 | 567 | | mk_flat_tuple (Type (\<^type_name>\<open>prod\<close>, [T1, T2])) (t :: ts) = | 
| 33192 | 568 | 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 | 569 |   | mk_flat_tuple T ts = raise TYPE ("Nitpick_HOL.mk_flat_tuple", [T], ts)
 | 
| 55889 | 570 | |
| 33192 | 571 | fun dest_n_tuple 1 t = [t] | 
| 572 | | dest_n_tuple n t = HOLogic.dest_prod t ||> dest_n_tuple (n - 1) |> op :: | |
| 573 | ||
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 574 | fun typedef_info ctxt s = | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 575 | if is_frac_type ctxt (Type (s, [])) then | 
| 69593 | 576 |     SOME {abs_type = Type (s, []), rep_type = \<^typ>\<open>int * int\<close>,
 | 
| 577 | Abs_name = \<^const_name>\<open>Abs_Frac\<close>, | |
| 578 | Rep_name = \<^const_name>\<open>Rep_Frac\<close>, | |
| 579 | prop_of_Rep = \<^prop>\<open>Rep_Frac x \<in> Collect Frac\<close> | |
| 47909 
5f1afeebafbc
fixed "real" after they were redefined as a 'quotient_type'
 blanchet parents: 
47782diff
changeset | 580 | |> Logic.varify_global, | 
| 52205 | 581 | Abs_inverse = NONE, Rep_inverse = NONE} | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 582 | else case Typedef.get_info ctxt s of | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 583 | (* When several entries are returned, it shouldn't matter much which one | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 584 | we take (according to Florian Haftmann). *) | 
| 39315 
27f7b7748425
always handle type variables in typedefs as global
 blanchet parents: 
38864diff
changeset | 585 | (* The "Logic.varifyT_global" calls are a temporary hack because these | 
| 
27f7b7748425
always handle type variables in typedefs as global
 blanchet parents: 
38864diff
changeset | 586 | types's type variables sometimes clash with locally fixed type variables. | 
| 
27f7b7748425
always handle type variables in typedefs as global
 blanchet parents: 
38864diff
changeset | 587 | Remove these calls once "Typedef" is fully localized. *) | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 588 |     ({abs_type, rep_type, Abs_name, Rep_name, ...},
 | 
| 49833 | 589 |      {Rep, Abs_inverse, Rep_inverse, ...}) :: _ =>
 | 
| 39315 
27f7b7748425
always handle type variables in typedefs as global
 blanchet parents: 
38864diff
changeset | 590 |     SOME {abs_type = Logic.varifyT_global abs_type,
 | 
| 
27f7b7748425
always handle type variables in typedefs as global
 blanchet parents: 
38864diff
changeset | 591 | rep_type = Logic.varifyT_global rep_type, Abs_name = Abs_name, | 
| 59582 | 592 | Rep_name = Rep_name, prop_of_Rep = Thm.prop_of Rep, | 
| 52205 | 593 | Abs_inverse = SOME Abs_inverse, Rep_inverse = SOME Rep_inverse} | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 594 | | _ => NONE | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 595 | |
| 55889 | 596 | val is_raw_typedef = is_some oo typedef_info | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 597 | val is_raw_free_datatype = is_some oo Ctr_Sugar.ctr_sugar_of | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 598 | |
| 55890 | 599 | val is_interpreted_type = | 
| 69593 | 600 | member (op =) [\<^type_name>\<open>prod\<close>, \<^type_name>\<open>set\<close>, \<^type_name>\<open>bool\<close>, | 
| 601 | \<^type_name>\<open>nat\<close>, \<^type_name>\<open>int\<close>, \<^type_name>\<open>natural\<close>, | |
| 602 | \<^type_name>\<open>integer\<close>] | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 603 | |
| 55080 | 604 | fun repair_constr_type (Type (_, Ts)) T = | 
| 605 | snd (dest_Const (Ctr_Sugar.mk_ctr Ts (Const (Name.uu, T)))) | |
| 33192 | 606 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 607 | fun register_frac_type_generic frac_s ersaetze generic = | 
| 33192 | 608 | let | 
| 44012 | 609 |     val {frac_types, ersatz_table, codatatypes} = Data.get generic
 | 
| 33192 | 610 | val frac_types = AList.update (op =) (frac_s, ersaetze) frac_types | 
| 44012 | 611 |   in Data.put {frac_types = frac_types, ersatz_table = ersatz_table,
 | 
| 612 | codatatypes = codatatypes} generic end | |
| 55889 | 613 | |
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 614 | (* TODO: Consider morphism. *) | 
| 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 615 | fun register_frac_type frac_s ersaetze (_ : morphism) = | 
| 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 616 | register_frac_type_generic frac_s ersaetze | 
| 55889 | 617 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 618 | val register_frac_type_global = Context.theory_map oo register_frac_type_generic | 
| 33192 | 619 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 620 | fun unregister_frac_type_generic frac_s = register_frac_type_generic frac_s [] | 
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 621 | (* TODO: Consider morphism. *) | 
| 55889 | 622 | |
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 623 | fun unregister_frac_type frac_s (_ : morphism) = | 
| 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 624 | unregister_frac_type_generic frac_s | 
| 55889 | 625 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 626 | val unregister_frac_type_global = | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 627 | Context.theory_map o unregister_frac_type_generic | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 628 | |
| 44012 | 629 | fun register_ersatz_generic ersatz generic = | 
| 630 | let | |
| 631 |     val {frac_types, ersatz_table, codatatypes} = Data.get generic
 | |
| 632 | val ersatz_table = AList.merge (op =) (K true) (ersatz_table, ersatz) | |
| 633 |   in Data.put {frac_types = frac_types, ersatz_table = ersatz_table,
 | |
| 634 | codatatypes = codatatypes} generic end | |
| 55889 | 635 | |
| 44012 | 636 | (* TODO: Consider morphism. *) | 
| 637 | fun register_ersatz ersatz (_ : morphism) = | |
| 638 | register_ersatz_generic ersatz | |
| 55889 | 639 | |
| 44012 | 640 | val register_ersatz_global = Context.theory_map o register_ersatz_generic | 
| 641 | ||
| 55080 | 642 | fun register_codatatype_generic coT case_name constr_xs generic = | 
| 33192 | 643 | let | 
| 44012 | 644 |     val {frac_types, ersatz_table, codatatypes} = Data.get generic
 | 
| 55080 | 645 | val constr_xs = map (apsnd (repair_constr_type coT)) constr_xs | 
| 646 | val (co_s, coTs) = dest_Type coT | |
| 33192 | 647 | val _ = | 
| 55080 | 648 | if forall is_TFree coTs andalso not (has_duplicates (op =) coTs) andalso | 
| 69593 | 649 | co_s <> \<^type_name>\<open>fun\<close> andalso not (is_interpreted_type co_s) then | 
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 650 | () | 
| 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 651 | else | 
| 55080 | 652 |         raise TYPE ("Nitpick_HOL.register_codatatype_generic", [coT], [])
 | 
| 33192 | 653 | val codatatypes = AList.update (op =) (co_s, (case_name, constr_xs)) | 
| 654 | codatatypes | |
| 44012 | 655 |   in Data.put {frac_types = frac_types, ersatz_table = ersatz_table,
 | 
| 656 | codatatypes = codatatypes} generic end | |
| 55889 | 657 | |
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 658 | (* TODO: Consider morphism. *) | 
| 55080 | 659 | fun register_codatatype coT case_name constr_xs (_ : morphism) = | 
| 660 | register_codatatype_generic coT case_name constr_xs | |
| 55889 | 661 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 662 | val register_codatatype_global = | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 663 | Context.theory_map ooo register_codatatype_generic | 
| 33192 | 664 | |
| 55080 | 665 | fun unregister_codatatype_generic coT = register_codatatype_generic coT "" [] | 
| 38284 
9f98107ad8b4
use "declaration" instead of "setup" to register Nitpick extensions
 blanchet parents: 
38282diff
changeset | 666 | (* TODO: Consider morphism. *) | 
| 55889 | 667 | |
| 55080 | 668 | fun unregister_codatatype coT (_ : morphism) = | 
| 669 | unregister_codatatype_generic coT | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 670 | val unregister_codatatype_global = | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 671 | Context.theory_map o unregister_codatatype_generic | 
| 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 672 | |
| 55889 | 673 | fun is_raw_codatatype ctxt s = | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 674 | Option.map #fp (BNF_FP_Def_Sugar.fp_sugar_of ctxt s) | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 675 | = SOME BNF_Util.Greatest_FP | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 676 | |
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 677 | fun is_registered_codatatype ctxt s = | 
| 55889 | 678 | not (null (these (Option.map snd (AList.lookup (op =) | 
| 679 | (#codatatypes (Data.get (Context.Proof ctxt))) s)))) | |
| 680 | ||
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 681 | fun is_codatatype ctxt (Type (s, _)) = | 
| 55889 | 682 | is_raw_codatatype ctxt s orelse is_registered_codatatype ctxt s | 
| 33192 | 683 | | is_codatatype _ _ = false | 
| 55889 | 684 | |
| 685 | fun is_registered_type ctxt (T as Type (s, _)) = | |
| 686 | is_frac_type ctxt T orelse is_registered_codatatype ctxt s | |
| 687 | | is_registered_type _ _ = false | |
| 688 | ||
| 689 | fun is_raw_quot_type ctxt (Type (s, _)) = | |
| 45280 | 690 | is_some (Quotient_Info.lookup_quotients ctxt s) | 
| 55889 | 691 | | is_raw_quot_type _ _ = false | 
| 692 | ||
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 693 | fun is_quot_type ctxt T = | 
| 55889 | 694 | is_raw_quot_type ctxt T andalso not (is_registered_type ctxt T) andalso | 
| 69593 | 695 | T <> \<^typ>\<open>int\<close> | 
| 55889 | 696 | |
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 697 | fun is_pure_typedef ctxt (T as Type (s, _)) = | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 698 | is_frac_type ctxt T orelse | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 699 | (is_raw_typedef ctxt s andalso | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 700 | not (is_raw_free_datatype ctxt s orelse is_raw_quot_type ctxt T orelse | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 701 | is_codatatype ctxt T orelse is_integer_like_type T)) | 
| 33192 | 702 | | is_pure_typedef _ _ = false | 
| 55889 | 703 | |
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 704 | fun is_univ_typedef ctxt (Type (s, _)) = | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 705 | (case typedef_info ctxt s of | 
| 49833 | 706 |        SOME {prop_of_Rep, ...} =>
 | 
| 35332 
22442ab3e7a3
optimized multisets in Nitpick by fishing "finite"
 blanchet parents: 
35311diff
changeset | 707 | let | 
| 
22442ab3e7a3
optimized multisets in Nitpick by fishing "finite"
 blanchet parents: 
35311diff
changeset | 708 | val t_opt = | 
| 49833 | 709 | try (snd o HOLogic.dest_mem o HOLogic.dest_Trueprop) prop_of_Rep | 
| 35332 
22442ab3e7a3
optimized multisets in Nitpick by fishing "finite"
 blanchet parents: 
35311diff
changeset | 710 | in | 
| 
22442ab3e7a3
optimized multisets in Nitpick by fishing "finite"
 blanchet parents: 
35311diff
changeset | 711 | case t_opt of | 
| 69593 | 712 | SOME (Const (\<^const_name>\<open>top\<close>, _)) => true | 
| 65049 | 713 | (* "Multiset.multiset" FIXME unchecked *) | 
| 69593 | 714 | | SOME (Const (\<^const_name>\<open>Collect\<close>, _) | 
| 715 | $ Abs (_, _, Const (\<^const_name>\<open>finite\<close>, _) $ _)) => true | |
| 65049 | 716 | (* "FinFun.finfun" FIXME unchecked *) | 
| 69593 | 717 | | SOME (Const (\<^const_name>\<open>Collect\<close>, _) $ Abs (_, _, | 
| 718 | Const (\<^const_name>\<open>Ex\<close>, _) $ Abs (_, _, | |
| 719 | Const (\<^const_name>\<open>finite\<close>, _) $ _))) => true | |
| 35332 
22442ab3e7a3
optimized multisets in Nitpick by fishing "finite"
 blanchet parents: 
35311diff
changeset | 720 | | _ => false | 
| 
22442ab3e7a3
optimized multisets in Nitpick by fishing "finite"
 blanchet parents: 
35311diff
changeset | 721 | end | 
| 33192 | 722 | | NONE => false) | 
| 723 | | is_univ_typedef _ _ = false | |
| 55889 | 724 | |
| 55890 | 725 | fun is_data_type ctxt (T as Type (s, _)) = | 
| 55889 | 726 | (is_raw_typedef ctxt s orelse is_registered_type ctxt T orelse | 
| 69593 | 727 | T = \<^typ>\<open>ind\<close> orelse is_raw_quot_type ctxt T) andalso | 
| 55890 | 728 | not (is_interpreted_type s) | 
| 729 | | is_data_type _ _ = false | |
| 33192 | 730 | |
| 731 | fun all_record_fields thy T = | |
| 732 | let val (recs, more) = Record.get_extT_fields thy T in | |
| 733 | recs @ more :: all_record_fields thy (snd more) | |
| 734 | end | |
| 735 | handle TYPE _ => [] | |
| 55889 | 736 | |
| 33192 | 737 | val num_record_fields = Integer.add 1 o length o fst oo Record.get_extT_fields | 
| 55889 | 738 | |
| 33192 | 739 | fun no_of_record_field thy s T1 = | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 740 | find_index (curry (op =) s o fst) (Record.get_extT_fields thy T1 ||> single |> op @) | 
| 55889 | 741 | |
| 69593 | 742 | fun is_record_get thy (s, Type (\<^type_name>\<open>fun\<close>, [T1, _])) = | 
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 743 | exists (curry (op =) s o fst) (all_record_fields thy T1) | 
| 33192 | 744 | | is_record_get _ _ = false | 
| 55889 | 745 | |
| 33192 | 746 | fun is_record_update thy (s, T) = | 
| 747 | String.isSuffix Record.updateN s andalso | |
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 748 | exists (curry (op =) (unsuffix Record.updateN s) o fst) (all_record_fields thy (body_type T)) | 
| 33192 | 749 | handle TYPE _ => false | 
| 55889 | 750 | |
| 69593 | 751 | fun is_abs_fun ctxt (s, Type (\<^type_name>\<open>fun\<close>, [_, Type (s', _)])) = | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 752 | (case typedef_info ctxt s' of | 
| 33192 | 753 |        SOME {Abs_name, ...} => s = Abs_name
 | 
| 754 | | NONE => false) | |
| 755 | | is_abs_fun _ _ = false | |
| 55889 | 756 | |
| 69593 | 757 | fun is_rep_fun ctxt (s, Type (\<^type_name>\<open>fun\<close>, [Type (s', _), _])) = | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 758 | (case typedef_info ctxt s' of | 
| 33192 | 759 |        SOME {Rep_name, ...} => s = Rep_name
 | 
| 760 | | NONE => false) | |
| 761 | | is_rep_fun _ _ = false | |
| 55889 | 762 | |
| 69593 | 763 | fun is_quot_abs_fun ctxt (x as (_, Type (\<^type_name>\<open>fun\<close>, | 
| 38215 
1c7d7eaebdf2
quotient types registered as codatatypes are no longer quotient types
 blanchet parents: 
38212diff
changeset | 764 | [_, abs_T as Type (s', _)]))) = | 
| 45797 | 765 | try (Quotient_Term.absrep_const_chk ctxt Quotient_Term.AbsF) s' | 
| 47909 
5f1afeebafbc
fixed "real" after they were redefined as a 'quotient_type'
 blanchet parents: 
47782diff
changeset | 766 | = SOME (Const x) andalso not (is_registered_type ctxt abs_T) | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 767 | | is_quot_abs_fun _ _ = false | 
| 55889 | 768 | |
| 69593 | 769 | fun is_quot_rep_fun ctxt (s, Type (\<^type_name>\<open>fun\<close>, | 
| 46819 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 770 | [abs_T as Type (abs_s, _), _])) = | 
| 46746 
a10dcc985e8d
improved handling of polymorphic quotient types, by avoiding comparing types that will generally differ in the polymorphic case
 blanchet parents: 
46745diff
changeset | 771 | (case try (Quotient_Term.absrep_const_chk ctxt Quotient_Term.RepF) abs_s of | 
| 47909 
5f1afeebafbc
fixed "real" after they were redefined as a 'quotient_type'
 blanchet parents: 
47782diff
changeset | 772 | SOME (Const (s', _)) => | 
| 
5f1afeebafbc
fixed "real" after they were redefined as a 'quotient_type'
 blanchet parents: 
47782diff
changeset | 773 | s = s' andalso not (is_registered_type ctxt abs_T) | 
| 48811 | 774 | | _ => false) | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 775 | | is_quot_rep_fun _ _ = false | 
| 33192 | 776 | |
| 69593 | 777 | fun mate_of_rep_fun ctxt (x as (_, Type (\<^type_name>\<open>fun\<close>, | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 778 | [T1 as Type (s', _), T2]))) = | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 779 | (case typedef_info ctxt s' of | 
| 69593 | 780 |        SOME {Abs_name, ...} => (Abs_name, Type (\<^type_name>\<open>fun\<close>, [T2, T1]))
 | 
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33202diff
changeset | 781 |      | 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 | 782 |   | mate_of_rep_fun _ x = raise TERM ("Nitpick_HOL.mate_of_rep_fun", [Const x])
 | 
| 55889 | 783 | |
| 45280 | 784 | fun rep_type_for_quot_type ctxt (T as Type (s, _)) = | 
| 785 | let | |
| 786 | val thy = Proof_Context.theory_of ctxt | |
| 787 |       val {qtyp, rtyp, ...} = the (Quotient_Info.lookup_quotients ctxt s)
 | |
| 788 | in | |
| 39345 | 789 | instantiate_type thy qtyp T rtyp | 
| 790 | end | |
| 791 | | rep_type_for_quot_type _ T = | |
| 792 |     raise TYPE ("Nitpick_HOL.rep_type_for_quot_type", [T], [])
 | |
| 55889 | 793 | |
| 35284 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35283diff
changeset | 794 | fun equiv_relation_for_quot_type thy (Type (s, Ts)) = | 
| 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35283diff
changeset | 795 | let | 
| 46745 
a6f83f21dc2c
fixed handling of "Rep_" function of quotient types -- side-effect of "set" constructor reintroduction
 blanchet parents: 
46320diff
changeset | 796 |       val {qtyp, equiv_rel, equiv_thm, ...} =
 | 
| 
a6f83f21dc2c
fixed handling of "Rep_" function of quotient types -- side-effect of "set" constructor reintroduction
 blanchet parents: 
46320diff
changeset | 797 | the (Quotient_Info.lookup_quotients thy s) | 
| 38243 | 798 | val partial = | 
| 59582 | 799 | case Thm.prop_of equiv_thm of | 
| 69597 | 800 | \<^const>\<open>Trueprop\<close> $ (Const (\<^const_name>\<open>equivp\<close>, _) $ _) => false | 
| 801 | | \<^const>\<open>Trueprop\<close> $ (Const (\<^const_name>\<open>part_equivp\<close>, _) $ _) => true | |
| 38243 | 802 | | _ => raise NOT_SUPPORTED "Ill-formed quotient type equivalence \ | 
| 803 | \relation theorem" | |
| 35284 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35283diff
changeset | 804 | val Ts' = qtyp |> dest_Type |> snd | 
| 38243 | 805 | in (subst_atomic_types (Ts' ~~ Ts) equiv_rel, partial) end | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 806 | | equiv_relation_for_quot_type _ T = | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 807 |     raise TYPE ("Nitpick_HOL.equiv_relation_for_quot_type", [T], [])
 | 
| 33192 | 808 | |
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 809 | fun is_raw_free_datatype_constr ctxt (s, T) = | 
| 55889 | 810 | case body_type T of | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 811 | dtT as Type (dt_s, _) => | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 812 | let | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 813 | val ctrs = | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 814 | case Ctr_Sugar.ctr_sugar_of ctxt dt_s of | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 815 |           SOME {ctrs, ...} => map dest_Const ctrs
 | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 816 | | _ => [] | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 817 | in | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 818 | exists (fn (s', T') => s = s' andalso repair_constr_type dtT T' = T) ctrs | 
| 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 819 | end | 
| 55889 | 820 | | _ => false | 
| 821 | ||
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 822 | fun is_registered_coconstr ctxt (s, T) = | 
| 55080 | 823 | case body_type T of | 
| 824 | coT as Type (co_s, _) => | |
| 825 | let | |
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 826 | val ctrs = | 
| 55080 | 827 | co_s | 
| 828 | |> AList.lookup (op =) (#codatatypes (Data.get (Context.Proof ctxt))) | |
| 829 | |> Option.map snd |> these | |
| 830 | in | |
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 831 | exists (fn (s', T') => s = s' andalso repair_constr_type coT T' = T) ctrs | 
| 55080 | 832 | end | 
| 833 | | _ => false | |
| 55889 | 834 | |
| 835 | fun is_nonfree_constr ctxt (s, T) = | |
| 69593 | 836 | member (op =) [\<^const_name>\<open>FunBox\<close>, \<^const_name>\<open>PairBox\<close>, | 
| 837 | \<^const_name>\<open>Quot\<close>, \<^const_name>\<open>Zero_Rep\<close>, | |
| 838 | \<^const_name>\<open>Suc_Rep\<close>] s orelse | |
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 839 | let val (x as (_, T)) = (s, unarize_unbox_etc_type T) in | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 840 | is_raw_free_datatype_constr ctxt x orelse | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 841 | (is_abs_fun ctxt x andalso is_pure_typedef ctxt (range_type T)) orelse | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 842 | is_registered_coconstr ctxt x | 
| 33192 | 843 | end | 
| 55889 | 844 | |
| 845 | fun is_free_constr ctxt (s, T) = | |
| 846 | is_nonfree_constr ctxt (s, T) andalso | |
| 51706 
0a4b4735d8bd
not all Nitpick 'constructors' are injective -- careful
 blanchet parents: 
51143diff
changeset | 847 | let val (x as (_, T)) = (s, unarize_unbox_etc_type T) in | 
| 
0a4b4735d8bd
not all Nitpick 'constructors' are injective -- careful
 blanchet parents: 
51143diff
changeset | 848 | not (is_abs_fun ctxt x) orelse is_univ_typedef ctxt (range_type T) | 
| 
0a4b4735d8bd
not all Nitpick 'constructors' are injective -- careful
 blanchet parents: 
51143diff
changeset | 849 | end | 
| 55889 | 850 | |
| 47909 
5f1afeebafbc
fixed "real" after they were redefined as a 'quotient_type'
 blanchet parents: 
47782diff
changeset | 851 | fun is_stale_constr ctxt (x as (s, T)) = | 
| 55889 | 852 | is_registered_type ctxt (body_type T) andalso is_nonfree_constr ctxt x andalso | 
| 69593 | 853 | not (s = \<^const_name>\<open>Abs_Frac\<close> orelse is_registered_coconstr ctxt x) | 
| 55889 | 854 | |
| 55888 | 855 | fun is_constr ctxt (x as (_, T)) = | 
| 55889 | 856 | is_nonfree_constr ctxt x andalso | 
| 55890 | 857 | not (is_interpreted_type (fst (dest_Type (unarize_type (body_type T))))) andalso | 
| 55888 | 858 | not (is_stale_constr ctxt x) | 
| 55889 | 859 | |
| 33192 | 860 | val is_sel = String.isPrefix discr_prefix orf String.isPrefix sel_prefix | 
| 861 | val is_sel_like_and_no_discr = | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 862 | String.isPrefix sel_prefix orf | 
| 69593 | 863 | (member (op =) [\<^const_name>\<open>fst\<close>, \<^const_name>\<open>snd\<close>]) | 
| 33192 | 864 | |
| 865 | fun in_fun_lhs_for InConstr = InSel | |
| 866 | | in_fun_lhs_for _ = InFunLHS | |
| 55889 | 867 | |
| 33192 | 868 | fun in_fun_rhs_for InConstr = InConstr | 
| 869 | | in_fun_rhs_for InSel = InSel | |
| 870 | | in_fun_rhs_for InFunRHS1 = InFunRHS2 | |
| 871 | | in_fun_rhs_for _ = InFunRHS1 | |
| 872 | ||
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 873 | fun is_boxing_worth_it (hol_ctxt : hol_context) boxy T = | 
| 33192 | 874 | case T of | 
| 69593 | 875 | Type (\<^type_name>\<open>fun\<close>, _) => | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 876 | (boxy = InPair orelse boxy = InFunLHS) andalso | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 877 | not (is_boolean_type (body_type T)) | 
| 69593 | 878 | | Type (\<^type_name>\<open>prod\<close>, Ts) => | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 879 | boxy = InPair orelse boxy = InFunRHS1 orelse boxy = InFunRHS2 orelse | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 880 | ((boxy = InExpr orelse boxy = InFunLHS) andalso | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 881 | exists (is_boxing_worth_it hol_ctxt InPair) | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 882 | (map (box_type hol_ctxt InPair) Ts)) | 
| 33192 | 883 | | _ => false | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 884 | and should_box_type (hol_ctxt as {thy, boxes, ...}) boxy z =
 | 
| 33192 | 885 | case triple_lookup (type_match thy) boxes (Type z) of | 
| 886 | SOME (SOME box_me) => box_me | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 887 | | _ => is_boxing_worth_it hol_ctxt boxy (Type z) | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 888 | and box_type hol_ctxt boxy T = | 
| 33192 | 889 | case T of | 
| 69593 | 890 | Type (z as (\<^type_name>\<open>fun\<close>, [T1, T2])) => | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 891 | if boxy <> InConstr andalso boxy <> InSel andalso | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 892 | should_box_type hol_ctxt boxy z then | 
| 69593 | 893 | Type (\<^type_name>\<open>fun_box\<close>, | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 894 | [box_type hol_ctxt InFunLHS T1, box_type hol_ctxt InFunRHS1 T2]) | 
| 33192 | 895 | else | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 896 | box_type hol_ctxt (in_fun_lhs_for boxy) T1 | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 897 | --> box_type hol_ctxt (in_fun_rhs_for boxy) T2 | 
| 69593 | 898 | | Type (z as (\<^type_name>\<open>prod\<close>, Ts)) => | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34936diff
changeset | 899 | if boxy <> InConstr andalso boxy <> InSel | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 900 | andalso should_box_type hol_ctxt boxy z then | 
| 69593 | 901 | Type (\<^type_name>\<open>pair_box\<close>, map (box_type hol_ctxt InSel) Ts) | 
| 33192 | 902 | else | 
| 69593 | 903 | Type (\<^type_name>\<open>prod\<close>, | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 904 | map (box_type hol_ctxt | 
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 905 | (if boxy = InConstr orelse boxy = InSel then boxy | 
| 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 906 | else InPair)) Ts) | 
| 33192 | 907 | | _ => T | 
| 908 | ||
| 69593 | 909 | fun binarize_nat_and_int_in_type \<^typ>\<open>nat\<close> = \<^typ>\<open>unsigned_bit word\<close> | 
| 910 | | binarize_nat_and_int_in_type \<^typ>\<open>int\<close> = \<^typ>\<open>signed_bit word\<close> | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 911 | | binarize_nat_and_int_in_type (Type (s, Ts)) = | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 912 | Type (s, map binarize_nat_and_int_in_type Ts) | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 913 | | binarize_nat_and_int_in_type T = T | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 914 | val binarize_nat_and_int_in_term = map_types binarize_nat_and_int_in_type | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 915 | |
| 33192 | 916 | fun discr_for_constr (s, T) = (discr_prefix ^ s, body_type T --> bool_T) | 
| 917 | ||
| 918 | fun num_sels_for_constr_type T = length (maybe_curried_binder_types T) | |
| 55889 | 919 | |
| 33192 | 920 | fun nth_sel_name_for_constr_name s n = | 
| 69593 | 921 | if s = \<^const_name>\<open>Pair\<close> then | 
| 922 | if n = 0 then \<^const_name>\<open>fst\<close> else \<^const_name>\<open>snd\<close> | |
| 33192 | 923 | else | 
| 924 | sel_prefix_for n ^ s | |
| 55889 | 925 | |
| 33192 | 926 | fun nth_sel_for_constr x ~1 = discr_for_constr x | 
| 927 | | nth_sel_for_constr (s, T) n = | |
| 928 | (nth_sel_name_for_constr_name s n, | |
| 929 | body_type T --> nth (maybe_curried_binder_types T) n) | |
| 55889 | 930 | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 931 | fun binarized_and_boxed_nth_sel_for_constr hol_ctxt binarize = | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 932 | apsnd ((binarize ? binarize_nat_and_int_in_type) o box_type hol_ctxt InSel) | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 933 | oo nth_sel_for_constr | 
| 33192 | 934 | |
| 935 | fun sel_no_from_name s = | |
| 936 | if String.isPrefix discr_prefix s then | |
| 937 | ~1 | |
| 938 | else if String.isPrefix sel_prefix s then | |
| 939 | s |> unprefix sel_prefix |> Int.fromString |> the | |
| 69593 | 940 | else if s = \<^const_name>\<open>snd\<close> then | 
| 33192 | 941 | 1 | 
| 942 | else | |
| 943 | 0 | |
| 944 | ||
| 35078 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 945 | val close_form = | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 946 | let | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 947 | fun close_up zs zs' = | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 948 | fold (fn (z as ((s, _), T)) => fn t' => | 
| 46217 
7b19666f0e3d
renamed Term.all to Logic.all_const, in accordance to HOLogic.all_const;
 wenzelm parents: 
46115diff
changeset | 949 | Logic.all_const T $ Abs (s, T, abstract_over (Var z, t'))) | 
| 35078 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 950 | (take (length zs' - length zs) zs') | 
| 69597 | 951 | fun aux zs (\<^const>\<open>Pure.imp\<close> $ t1 $ t2) = | 
| 35078 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 952 | let val zs' = Term.add_vars t1 zs in | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 953 | close_up zs zs' (Logic.mk_implies (t1, aux zs' t2)) | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 954 | end | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 955 | | aux zs t = close_up zs (Term.add_vars t zs) t | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 956 | in aux [] end | 
| 
6fd1052fe463
optimization to quantifiers in Nitpick's handling of simp rules + renamed some SAT solvers
 blanchet parents: 
35075diff
changeset | 957 | |
| 33192 | 958 | fun distinctness_formula T = | 
| 959 | all_distinct_unordered_pairs_of | |
| 69597 | 960 | #> map (fn (t1, t2) => \<^const>\<open>Not\<close> $ (HOLogic.eq_const T $ t1 $ t2)) | 
| 961 | #> List.foldr (s_conj o swap) \<^const>\<open>True\<close> | |
| 33192 | 962 | |
| 69593 | 963 | fun zero_const T = Const (\<^const_name>\<open>zero_class.zero\<close>, T) | 
| 964 | fun suc_const T = Const (\<^const_name>\<open>Suc\<close>, T --> T) | |
| 33192 | 965 | |
| 57992 | 966 | fun uncached_data_type_constrs ({ctxt, ...} : hol_context) (T as Type (s, _)) =
 | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 967 | if is_interpreted_type s then | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 968 | [] | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 969 | else | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 970 | (case AList.lookup (op =) (#codatatypes (Data.get (Context.Proof ctxt))) s of | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 971 | SOME (_, xs' as (_ :: _)) => map (apsnd (repair_constr_type T)) xs' | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 972 | | _ => | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 973 | if is_frac_type ctxt T then | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 974 | case typedef_info ctxt s of | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 975 |              SOME {abs_type, rep_type, Abs_name, ...} =>
 | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 976 | [(Abs_name, varify_and_instantiate_type ctxt abs_type T rep_type --> T)] | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 977 | | NONE => [] (* impossible *) | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 978 | else | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 979 | case Ctr_Sugar.ctr_sugar_of ctxt s of | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 980 |              SOME {ctrs, ...} =>
 | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 981 | map (apsnd (repair_constr_type T) o dest_Const) ctrs | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 982 | | NONE => | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 983 | if is_raw_quot_type ctxt T then | 
| 69593 | 984 | [(\<^const_name>\<open>Quot\<close>, rep_type_for_quot_type ctxt T --> T)] | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 985 | else case typedef_info ctxt s of | 
| 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 986 |                SOME {abs_type, rep_type, Abs_name, ...} =>
 | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 987 | [(Abs_name, varify_and_instantiate_type ctxt abs_type T rep_type --> T)] | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 988 | | NONE => | 
| 69597 | 989 | if T = \<^typ>\<open>ind\<close> then [dest_Const \<^const>\<open>Zero_Rep\<close>, dest_Const \<^const>\<open>Suc_Rep\<close>] | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 990 | else []) | 
| 55890 | 991 | | uncached_data_type_constrs _ _ = [] | 
| 55889 | 992 | |
| 55890 | 993 | fun data_type_constrs (hol_ctxt as {constr_cache, ...}) 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 | 994 | 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 | 995 | 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 | 996 | | NONE => | 
| 55890 | 997 | let val xs = uncached_data_type_constrs hol_ctxt T 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 | 998 | (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 | 999 | end | 
| 55889 | 1000 | |
| 55890 | 1001 | fun binarized_and_boxed_data_type_constrs hol_ctxt binarize = | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 1002 | map (apsnd ((binarize ? binarize_nat_and_int_in_type) | 
| 55890 | 1003 | o box_type hol_ctxt InConstr)) o data_type_constrs hol_ctxt | 
| 33192 | 1004 | |
| 69593 | 1005 | fun constr_name_for_sel_like \<^const_name>\<open>fst\<close> = \<^const_name>\<open>Pair\<close> | 
| 1006 | | constr_name_for_sel_like \<^const_name>\<open>snd\<close> = \<^const_name>\<open>Pair\<close> | |
| 33192 | 1007 | | constr_name_for_sel_like s' = original_name s' | 
| 55889 | 1008 | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 1009 | fun binarized_and_boxed_constr_for_sel hol_ctxt binarize (s', T') = | 
| 33192 | 1010 | let val s = constr_name_for_sel_like s' in | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 1011 | AList.lookup (op =) | 
| 55890 | 1012 | (binarized_and_boxed_data_type_constrs hol_ctxt binarize (domain_type T')) | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 1013 | s | 
| 33192 | 1014 | |> the |> pair s | 
| 1015 | end | |
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34936diff
changeset | 1016 | |
| 69593 | 1017 | fun card_of_type assigns (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) = | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1018 | reasonable_power (card_of_type assigns T2) (card_of_type assigns T1) | 
| 69593 | 1019 | | card_of_type assigns (Type (\<^type_name>\<open>prod\<close>, [T1, T2])) = | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1020 | card_of_type assigns T1 * card_of_type assigns T2 | 
| 69593 | 1021 | | card_of_type assigns (Type (\<^type_name>\<open>set\<close>, [T'])) = | 
| 46083 | 1022 | reasonable_power 2 (card_of_type assigns T') | 
| 69593 | 1023 | | card_of_type _ (Type (\<^type_name>\<open>itself\<close>, _)) = 1 | 
| 1024 | | card_of_type _ \<^typ>\<open>prop\<close> = 2 | |
| 1025 | | card_of_type _ \<^typ>\<open>bool\<close> = 2 | |
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1026 | | card_of_type assigns T = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1027 | case AList.lookup (op =) assigns T of | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1028 | SOME k => k | 
| 69593 | 1029 | | NONE => if T = \<^typ>\<open>bisim_iterator\<close> then 0 | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1030 |               else raise TYPE ("Nitpick_HOL.card_of_type", [T], [])
 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1031 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1032 | fun bounded_card_of_type max default_card assigns | 
| 69593 | 1033 | (Type (\<^type_name>\<open>fun\<close>, [T1, T2])) = | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1034 | let | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1035 | val k1 = bounded_card_of_type max default_card assigns T1 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1036 | val k2 = bounded_card_of_type max default_card assigns T2 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1037 | in | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1038 | if k1 = max orelse k2 = max then max | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1039 | else Int.min (max, reasonable_power k2 k1) | 
| 47668 | 1040 | handle TOO_LARGE _ => max | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1041 | end | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1042 | | bounded_card_of_type max default_card assigns | 
| 69593 | 1043 | (Type (\<^type_name>\<open>prod\<close>, [T1, T2])) = | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1044 | let | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1045 | val k1 = bounded_card_of_type max default_card assigns T1 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1046 | val k2 = bounded_card_of_type max default_card assigns T2 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1047 | in if k1 = max orelse k2 = max then max else Int.min (max, k1 * k2) end | 
| 46083 | 1048 | | bounded_card_of_type max default_card assigns | 
| 69593 | 1049 | (Type (\<^type_name>\<open>set\<close>, [T'])) = | 
| 46083 | 1050 | bounded_card_of_type max default_card assigns (T' --> bool_T) | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1051 | | bounded_card_of_type max default_card assigns T = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1052 | Int.min (max, if default_card = ~1 then | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1053 | card_of_type assigns T | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1054 | else | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1055 | card_of_type assigns T | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1056 |                     handle TYPE ("Nitpick_HOL.card_of_type", _, _) =>
 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1057 | default_card) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1058 | |
| 46320 | 1059 | (* Similar to "ATP_Util.tiny_card_of_type". *) | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1060 | fun bounded_exact_card_of_type hol_ctxt finitizable_dataTs max default_card | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1061 | assigns T = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1062 | let | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1063 | fun aux avoid T = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1064 | (if member (op =) avoid T then | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1065 | 0 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1066 | else if member (op =) finitizable_dataTs T then | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1067 | raise SAME () | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1068 | else case T of | 
| 69593 | 1069 | Type (\<^type_name>\<open>fun\<close>, [T1, T2]) => | 
| 42679 | 1070 | (case (aux avoid T1, aux avoid T2) of | 
| 1071 | (_, 1) => 1 | |
| 1072 | | (0, _) => 0 | |
| 1073 | | (_, 0) => 0 | |
| 1074 | | (k1, k2) => | |
| 1075 | if k1 >= max orelse k2 >= max then max | |
| 1076 | else Int.min (max, reasonable_power k2 k1)) | |
| 69593 | 1077 | | Type (\<^type_name>\<open>prod\<close>, [T1, T2]) => | 
| 42679 | 1078 | (case (aux avoid T1, aux avoid T2) of | 
| 1079 | (0, _) => 0 | |
| 1080 | | (_, 0) => 0 | |
| 1081 | | (k1, k2) => | |
| 1082 | if k1 >= max orelse k2 >= max then max | |
| 1083 | else Int.min (max, k1 * k2)) | |
| 69593 | 1084 | | Type (\<^type_name>\<open>set\<close>, [T']) => aux avoid (T' --> bool_T) | 
| 1085 | | Type (\<^type_name>\<open>itself\<close>, _) => 1 | |
| 1086 | | \<^typ>\<open>prop\<close> => 2 | |
| 1087 | | \<^typ>\<open>bool\<close> => 2 | |
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1088 | | Type _ => | 
| 55890 | 1089 | (case data_type_constrs hol_ctxt T of | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1090 | [] => if is_integer_type T orelse is_bit_type T then 0 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1091 | else raise SAME () | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1092 | | constrs => | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1093 | let | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1094 | val constr_cards = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1095 | map (Integer.prod o map (aux (T :: avoid)) o binder_types o snd) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1096 | constrs | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1097 | in | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1098 | if exists (curry (op =) 0) constr_cards then 0 | 
| 42679 | 1099 | else Int.min (max, Integer.sum constr_cards) | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1100 | end) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1101 | | _ => raise SAME ()) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1102 | handle SAME () => | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1103 | AList.lookup (op =) assigns T |> the_default default_card | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1104 | in Int.min (max, aux [] T) end | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1105 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1106 | val typical_atomic_card = 4 | 
| 41898 
55d981e1232a
improved formula for specialization, to prevent needless specializations -- and removed dead code
 blanchet parents: 
41876diff
changeset | 1107 | val typical_card_of_type = bounded_card_of_type 16777217 typical_atomic_card [] | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1108 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1109 | fun is_finite_type hol_ctxt T = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1110 | bounded_exact_card_of_type hol_ctxt [] 1 2 [] T > 0 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1111 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1112 | fun is_special_eligible_arg strict Ts t = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1113 | case map snd (Term.add_vars t []) @ map (nth Ts) (loose_bnos t) of | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1114 | [] => true | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1115 | | bad_Ts => | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1116 | let | 
| 41898 
55d981e1232a
improved formula for specialization, to prevent needless specializations -- and removed dead code
 blanchet parents: 
41876diff
changeset | 1117 | val bad_Ts_cost = | 
| 
55d981e1232a
improved formula for specialization, to prevent needless specializations -- and removed dead code
 blanchet parents: 
41876diff
changeset | 1118 | if strict then fold (curry (op *) o typical_card_of_type) bad_Ts 1 | 
| 
55d981e1232a
improved formula for specialization, to prevent needless specializations -- and removed dead code
 blanchet parents: 
41876diff
changeset | 1119 | else fold (Integer.max o typical_card_of_type) bad_Ts 0 | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1120 | val T_cost = typical_card_of_type (fastype_of1 (Ts, t)) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1121 | in (bad_Ts_cost, T_cost) |> (if strict then op < else op <=) end | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1122 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1123 | fun abs_var ((s, j), T) body = Abs (s, T, abstract_over (Var ((s, j), T), body)) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1124 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1125 | fun let_var s = (nitpick_prefix ^ s, 999) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1126 | val let_inline_threshold = 20 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1127 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1128 | fun s_let Ts s n abs_T body_T f t = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1129 | if (n - 1) * (size_of_term t - 1) <= let_inline_threshold orelse | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1130 | is_special_eligible_arg false Ts t then | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1131 | f t | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1132 | else | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1133 | let val z = (let_var s, abs_T) in | 
| 69593 | 1134 | Const (\<^const_name>\<open>Let\<close>, abs_T --> (abs_T --> body_T) --> body_T) | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1135 | $ t $ abs_var z (incr_boundvars 1 (f (Var z))) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1136 | end | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1137 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1138 | fun loose_bvar1_count (Bound i, k) = if i = k then 1 else 0 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1139 | | loose_bvar1_count (t1 $ t2, k) = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1140 | loose_bvar1_count (t1, k) + loose_bvar1_count (t2, k) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1141 | | loose_bvar1_count (Abs (_, _, t), k) = loose_bvar1_count (t, k + 1) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1142 | | loose_bvar1_count _ = 0 | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1143 | |
| 69593 | 1144 | fun s_betapply _ (t1 as Const (\<^const_name>\<open>Pure.eq\<close>, _) $ t1', t2) = | 
| 1145 | if t1' aconv t2 then \<^prop>\<open>True\<close> else t1 $ t2 | |
| 1146 | | s_betapply _ (t1 as Const (\<^const_name>\<open>HOL.eq\<close>, _) $ t1', t2) = | |
| 1147 | if t1' aconv t2 then \<^term>\<open>True\<close> else t1 $ t2 | |
| 69597 | 1148 | | s_betapply _ (Const (\<^const_name>\<open>If\<close>, _) $ \<^const>\<open>True\<close> $ t1', _) = t1' | 
| 1149 | | s_betapply _ (Const (\<^const_name>\<open>If\<close>, _) $ \<^const>\<open>False\<close> $ _, t2) = t2 | |
| 69593 | 1150 | | s_betapply Ts (Const (\<^const_name>\<open>Let\<close>, | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1151 | Type (_, [bound_T, Type (_, [_, body_T])])) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1152 | $ t12 $ Abs (s, T, t13'), t2) = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1153 | let val body_T' = range_type body_T in | 
| 69593 | 1154 | Const (\<^const_name>\<open>Let\<close>, bound_T --> (bound_T --> body_T') --> body_T') | 
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1155 | $ t12 $ Abs (s, T, s_betapply (T :: Ts) (t13', incr_boundvars 1 t2)) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1156 | end | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1157 | | s_betapply Ts (t1 as Abs (s1, T1, t1'), t2) = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1158 | (s_let Ts s1 (loose_bvar1_count (t1', 0)) T1 (fastype_of1 (T1 :: Ts, t1')) | 
| 42958 | 1159 | (curry betapply t1) t2 | 
| 1160 | (* FIXME: fix all "s_betapply []" calls *) | |
| 1161 | handle TERM _ => betapply (t1, t2) | |
| 1162 | | General.Subscript => betapply (t1, t2)) | |
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1163 | | s_betapply _ (t1, t2) = t1 $ t2 | 
| 55889 | 1164 | |
| 41860 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1165 | fun s_betapplys Ts = Library.foldl (s_betapply Ts) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1166 | |
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1167 | fun s_beta_norm Ts t = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1168 | let | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1169 | fun aux _ (Var _) = raise Same.SAME | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1170 | | aux Ts (Abs (s, T, t')) = Abs (s, T, aux (T :: Ts) t') | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1171 | | aux Ts ((t1 as Abs _) $ t2) = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1172 | Same.commit (aux Ts) (s_betapply Ts (t1, t2)) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1173 | | aux Ts (t1 $ t2) = | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1174 | ((case aux Ts t1 of | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1175 | t1 as Abs _ => Same.commit (aux Ts) (s_betapply Ts (t1, t2)) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1176 | | t1 => t1 $ Same.commit (aux Ts) t2) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1177 | handle Same.SAME => t1 $ aux Ts t2) | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1178 | | aux _ _ = raise Same.SAME | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1179 | in aux Ts t handle Same.SAME => t end | 
| 
49d0fc8c418c
improved "is_special_eligible_arg" further, by approximating the cardinality of the argument (as is done quite successfully elsewhere)
 blanchet parents: 
41859diff
changeset | 1180 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 1181 | fun discr_term_for_constr hol_ctxt (x as (s, T)) = | 
| 33192 | 1182 | let val dataT = body_type T in | 
| 69593 | 1183 | if s = \<^const_name>\<open>Suc\<close> then | 
| 69597 | 1184 | Abs (Name.uu, dataT, \<^const>\<open>Not\<close> $ HOLogic.mk_eq (zero_const dataT, Bound 0)) | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 1185 | else if length (data_type_constrs hol_ctxt dataT) >= 2 then | 
| 33192 | 1186 | Const (discr_for_constr x) | 
| 1187 | else | |
| 69597 | 1188 | Abs (Name.uu, dataT, \<^const>\<open>True\<close>) | 
| 33192 | 1189 | end | 
| 55889 | 1190 | |
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1191 | fun discriminate_value (hol_ctxt as {ctxt, ...}) x t =
 | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 1192 | case head_of t of | 
| 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 1193 | Const x' => | 
| 69597 | 1194 | if x = x' then \<^const>\<open>True\<close> | 
| 1195 | else if is_nonfree_constr ctxt x' then \<^const>\<open>False\<close> | |
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1196 | else s_betapply [] (discr_term_for_constr hol_ctxt x, t) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1197 | | _ => s_betapply [] (discr_term_for_constr hol_ctxt x, t) | 
| 33192 | 1198 | |
| 55888 | 1199 | fun nth_arg_sel_term_for_constr (x as (s, T)) n = | 
| 33192 | 1200 | let val (arg_Ts, dataT) = strip_type T in | 
| 55888 | 1201 | if dataT = nat_T then | 
| 69593 | 1202 | \<^term>\<open>%n::nat. n - 1\<close> | 
| 33192 | 1203 | else if is_pair_type dataT then | 
| 1204 | Const (nth_sel_for_constr x n) | |
| 1205 | else | |
| 1206 | let | |
| 69593 | 1207 | fun aux m (Type (\<^type_name>\<open>prod\<close>, [T1, T2])) = | 
| 33192 | 1208 | let | 
| 1209 | val (m, t1) = aux m T1 | |
| 1210 | val (m, t2) = aux m T2 | |
| 1211 | in (m, HOLogic.mk_prod (t1, t2)) end | |
| 1212 | | aux m T = | |
| 1213 | (m + 1, Const (nth_sel_name_for_constr_name s m, dataT --> T) | |
| 1214 | $ Bound 0) | |
| 1215 | val m = fold (Integer.add o num_factors_in_type) | |
| 1216 | (List.take (arg_Ts, n)) 0 | |
| 1217 |       in Abs ("x", dataT, aux m (nth arg_Ts n) |> snd) end
 | |
| 1218 | end | |
| 55889 | 1219 | |
| 55888 | 1220 | fun select_nth_constr_arg ctxt x t n res_T = | 
| 1221 | (case strip_comb t of | |
| 1222 | (Const x', args) => | |
| 1223 | if x = x' then | |
| 55889 | 1224 | if is_free_constr ctxt x then nth args n else raise SAME () | 
| 1225 | else if is_nonfree_constr ctxt x' then | |
| 69593 | 1226 | Const (\<^const_name>\<open>unknown\<close>, res_T) | 
| 55888 | 1227 | else | 
| 1228 | raise SAME () | |
| 1229 | | _ => raise SAME()) | |
| 1230 | handle SAME () => s_betapply [] (nth_arg_sel_term_for_constr x n, t) | |
| 33192 | 1231 | |
| 55888 | 1232 | fun construct_value _ x [] = Const x | 
| 1233 | | construct_value ctxt (x as (s, _)) args = | |
| 33192 | 1234 | let val args = map Envir.eta_contract args in | 
| 1235 | case hd args of | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 1236 | Const (s', _) $ t => | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 1237 | if is_sel_like_and_no_discr s' andalso | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 1238 | constr_name_for_sel_like s' = s andalso | 
| 55888 | 1239 | forall (fn (n, t') => select_nth_constr_arg ctxt x t n dummyT = t') | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 1240 | (index_seq 0 (length args) ~~ args) then | 
| 33192 | 1241 | t | 
| 1242 | else | |
| 1243 | list_comb (Const x, args) | |
| 1244 | | _ => list_comb (Const x, args) | |
| 1245 | end | |
| 1246 | ||
| 55888 | 1247 | fun constr_expand (hol_ctxt as {ctxt, ...}) T t =
 | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1248 | (case head_of t of | 
| 55889 | 1249 | Const x => if is_nonfree_constr ctxt x then t else raise SAME () | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1250 | | _ => raise SAME ()) | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1251 | handle SAME () => | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1252 | let | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1253 | val x' as (_, T') = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1254 | if is_pair_type T then | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1255 | let val (T1, T2) = HOLogic.dest_prodT T in | 
| 69593 | 1256 | (\<^const_name>\<open>Pair\<close>, T1 --> T2 --> T) | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1257 | end | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1258 | else | 
| 55890 | 1259 | data_type_constrs hol_ctxt T |> hd | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1260 | val arg_Ts = binder_types T' | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1261 | in | 
| 55888 | 1262 | list_comb (Const x', map2 (select_nth_constr_arg ctxt x' t) | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1263 | (index_seq 0 (length arg_Ts)) arg_Ts) | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1264 | end | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1265 | |
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1266 | fun coerce_bound_no f j t = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1267 | case t of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1268 | t1 $ t2 => coerce_bound_no f j t1 $ coerce_bound_no f j t2 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1269 | | Abs (s, T, t') => Abs (s, T, coerce_bound_no f (j + 1) t') | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1270 | | Bound j' => if j' = j then f t else t | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1271 | | _ => t | 
| 55889 | 1272 | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1273 | fun coerce_bound_0_in_term hol_ctxt new_T old_T = | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1274 | old_T <> new_T ? coerce_bound_no (coerce_term hol_ctxt [new_T] old_T new_T) 0 | 
| 55888 | 1275 | and coerce_term (hol_ctxt as {ctxt, ...}) Ts new_T old_T t =
 | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1276 | if old_T = new_T then | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1277 | t | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1278 | else | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1279 | case (new_T, old_T) of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1280 | (Type (new_s, new_Ts as [new_T1, new_T2]), | 
| 69593 | 1281 | Type (\<^type_name>\<open>fun\<close>, [old_T1, old_T2])) => | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1282 | (case eta_expand Ts t 1 of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1283 | Abs (s, _, t') => | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1284 | Abs (s, new_T1, | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1285 | t' |> coerce_bound_0_in_term hol_ctxt new_T1 old_T1 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1286 | |> coerce_term hol_ctxt (new_T1 :: Ts) new_T2 old_T2) | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1287 | |> Envir.eta_contract | 
| 69593 | 1288 | |> new_s <> \<^type_name>\<open>fun\<close> | 
| 55888 | 1289 | ? construct_value ctxt | 
| 69593 | 1290 | (\<^const_name>\<open>FunBox\<close>, | 
| 1291 | Type (\<^type_name>\<open>fun\<close>, new_Ts) --> new_T) | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1292 | o single | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1293 |        | t' => raise TERM ("Nitpick_HOL.coerce_term", [t']))
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1294 | | (Type (new_s, new_Ts as [new_T1, new_T2]), | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1295 | Type (old_s, old_Ts as [old_T1, old_T2])) => | 
| 69593 | 1296 | if old_s = \<^type_name>\<open>fun_box\<close> orelse | 
| 1297 | old_s = \<^type_name>\<open>pair_box\<close> orelse old_s = \<^type_name>\<open>prod\<close> then | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1298 | case constr_expand hol_ctxt old_T t of | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1299 | Const (old_s, _) $ t1 => | 
| 69593 | 1300 | if new_s = \<^type_name>\<open>fun\<close> then | 
| 1301 | coerce_term hol_ctxt Ts new_T (Type (\<^type_name>\<open>fun\<close>, old_Ts)) t1 | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1302 | else | 
| 55888 | 1303 | construct_value ctxt | 
| 69593 | 1304 | (old_s, Type (\<^type_name>\<open>fun\<close>, new_Ts) --> new_T) | 
| 1305 | [coerce_term hol_ctxt Ts (Type (\<^type_name>\<open>fun\<close>, new_Ts)) | |
| 1306 | (Type (\<^type_name>\<open>fun\<close>, old_Ts)) t1] | |
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1307 | | Const _ $ t1 $ t2 => | 
| 55888 | 1308 | construct_value ctxt | 
| 69593 | 1309 | (if new_s = \<^type_name>\<open>prod\<close> then \<^const_name>\<open>Pair\<close> | 
| 1310 | else \<^const_name>\<open>PairBox\<close>, new_Ts ---> new_T) | |
| 58634 
9f10d82e8188
added parameterized ML antiquotations @{map N}, @{fold N}, @{fold_map N}, @{split_list N};
 wenzelm parents: 
57992diff
changeset | 1311 |               (@{map 3} (coerce_term hol_ctxt Ts) [new_T1, new_T2] [old_T1, old_T2]
 | 
| 35665 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1312 | [t1, t2]) | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1313 |         | t' => raise TERM ("Nitpick_HOL.coerce_term", [t'])
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1314 | else | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1315 |         raise TYPE ("Nitpick_HOL.coerce_term", [new_T, old_T], [t])
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1316 |     | _ => raise TYPE ("Nitpick_HOL.coerce_term", [new_T, old_T], [t])
 | 
| 
ff2bf50505ab
added "finitize" option to Nitpick + remove dependency on "Coinductive_List"
 blanchet parents: 
35625diff
changeset | 1317 | |
| 33192 | 1318 | fun is_ground_term (t1 $ t2) = is_ground_term t1 andalso is_ground_term t2 | 
| 1319 | | is_ground_term (Const _) = true | |
| 1320 | | is_ground_term _ = false | |
| 1321 | ||
| 1322 | fun special_bounds ts = | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 1323 | fold Term.add_vars ts [] |> sort (Term_Ord.fast_indexname_ord o apply2 fst) | 
| 33192 | 1324 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1325 | fun is_funky_typedef_name ctxt s = | 
| 69593 | 1326 | member (op =) [\<^type_name>\<open>unit\<close>, \<^type_name>\<open>prod\<close>, \<^type_name>\<open>set\<close>, | 
| 1327 | \<^type_name>\<open>Sum_Type.sum\<close>, \<^type_name>\<open>int\<close>] s orelse | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1328 | is_frac_type ctxt (Type (s, [])) | 
| 55889 | 1329 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1330 | fun is_funky_typedef ctxt (Type (s, _)) = is_funky_typedef_name ctxt s | 
| 33571 | 1331 | | is_funky_typedef _ _ = false | 
| 33192 | 1332 | |
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1333 | fun all_defs_of thy subst = | 
| 33192 | 1334 | let | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1335 | val def_names = | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1336 | thy |> Theory.defs_of | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1337 | |> Defs.all_specifications_of | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1338 | |> maps snd |> map_filter #def | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1339 | |> Ord_List.make fast_string_ord | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1340 | in | 
| 70923 
98d9b78b7f47
clarified axiom_table: uniform space (e.g. like consts), e.g. relevant for export of HOL-ex.Join_Theory;
 wenzelm parents: 
69991diff
changeset | 1341 | Thm.all_axioms_of thy | 
| 59582 | 1342 | |> map (apsnd (subst_atomic subst o Thm.prop_of)) | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 1343 | |> sort (fast_string_ord o apply2 fst) | 
| 42418 
508acf776ebf
avoid relying on "Thm.definitionK" to pick up definitions -- this was an old hack related to locales (to avoid expanding locale constants to their low-level definition) that is no longer necessary
 blanchet parents: 
42415diff
changeset | 1344 | |> Ord_List.inter (fast_string_ord o apsnd fst) def_names | 
| 
508acf776ebf
avoid relying on "Thm.definitionK" to pick up definitions -- this was an old hack related to locales (to avoid expanding locale constants to their low-level definition) that is no longer necessary
 blanchet parents: 
42415diff
changeset | 1345 | |> map snd | 
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1346 | end | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1347 | |
| 49985 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 blanchet parents: 
49833diff
changeset | 1348 | (* Ideally we would check against "Complex_Main", not "Hilbert_Choice", but any | 
| 
5b4b0e4e5205
moved Refute to "HOL/Library" to speed up building "Main" even more
 blanchet parents: 
49833diff
changeset | 1349 | theory will do as long as it contains all the "axioms" and "axiomatization" | 
| 42418 
508acf776ebf
avoid relying on "Thm.definitionK" to pick up definitions -- this was an old hack related to locales (to avoid expanding locale constants to their low-level definition) that is no longer necessary
 blanchet parents: 
42415diff
changeset | 1350 | commands. *) | 
| 60948 | 1351 | fun is_built_in_theory thy_id = | 
| 69593 | 1352 | Context.subthy_id (thy_id, Context.theory_id \<^theory>\<open>Hilbert_Choice\<close>) | 
| 42418 
508acf776ebf
avoid relying on "Thm.definitionK" to pick up definitions -- this was an old hack related to locales (to avoid expanding locale constants to their low-level definition) that is no longer necessary
 blanchet parents: 
42415diff
changeset | 1353 | |
| 42415 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1354 | fun all_nondefs_of ctxt subst = | 
| 
10accf397ab6
use "Spec_Rules" for finding axioms -- more reliable and cleaner
 blanchet parents: 
42414diff
changeset | 1355 | ctxt |> Spec_Rules.get | 
| 71179 | 1356 | |> filter (Spec_Rules.is_unknown o #rough_classification) | 
| 1357 | |> maps #rules | |
| 65458 | 1358 | |> filter_out (is_built_in_theory o Thm.theory_id) | 
| 59582 | 1359 | |> map (subst_atomic subst o Thm.prop_of) | 
| 33192 | 1360 | |
| 55888 | 1361 | fun arity_of_built_in_const (s, T) = | 
| 69593 | 1362 | if s = \<^const_name>\<open>If\<close> then | 
| 1363 | if nth_range_type 3 T = \<^typ>\<open>bool\<close> then NONE else SOME 3 | |
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1364 | else | 
| 55888 | 1365 | case AList.lookup (op =) built_in_consts s of | 
| 1366 | SOME n => SOME n | |
| 1367 | | NONE => | |
| 1368 | case AList.lookup (op =) built_in_typed_consts (s, unarize_type T) of | |
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1369 | SOME n => SOME n | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1370 | | NONE => | 
| 55888 | 1371 | case s of | 
| 69593 | 1372 | \<^const_name>\<open>zero_class.zero\<close> => if is_iterator_type T then SOME 0 else NONE | 
| 1373 | | \<^const_name>\<open>Suc\<close> => if is_iterator_type (domain_type T) then SOME 0 else NONE | |
| 59038 
e50f1973cb0a
no need for subset operation as a primitive in Nitpick, esp. that its implementation was unsound (cf. Rene Thiemann's 16 Oct 2014 email on isabelle mailing list)
 blanchet parents: 
58843diff
changeset | 1374 | | _ => NONE | 
| 55888 | 1375 | |
| 1376 | val is_built_in_const = is_some o arity_of_built_in_const | |
| 33192 | 1377 | |
| 1378 | (* This function is designed to work for both real definition axioms and | |
| 1379 | simplification rules (equational specifications). *) | |
| 1380 | fun term_under_def t = | |
| 1381 | case t of | |
| 69597 | 1382 | \<^const>\<open>Pure.imp\<close> $ _ $ t2 => term_under_def t2 | 
| 69593 | 1383 | | Const (\<^const_name>\<open>Pure.eq\<close>, _) $ t1 $ _ => term_under_def t1 | 
| 69597 | 1384 | | \<^const>\<open>Trueprop\<close> $ t1 => term_under_def t1 | 
| 69593 | 1385 | | Const (\<^const_name>\<open>HOL.eq\<close>, _) $ t1 $ _ => term_under_def t1 | 
| 33192 | 1386 | | Abs (_, _, t') => term_under_def t' | 
| 1387 | | t1 $ _ => term_under_def t1 | |
| 1388 | | _ => t | |
| 1389 | ||
| 36555 
8ff45c2076da
expand combinators in Isar proofs constructed by Sledgehammer;
 blanchet parents: 
36391diff
changeset | 1390 | (* Here we crucially rely on "specialize_type" performing a preorder traversal | 
| 
8ff45c2076da
expand combinators in Isar proofs constructed by Sledgehammer;
 blanchet parents: 
36391diff
changeset | 1391 | of the term, without which the wrong occurrence of a constant could be | 
| 
8ff45c2076da
expand combinators in Isar proofs constructed by Sledgehammer;
 blanchet parents: 
36391diff
changeset | 1392 | matched in the face of overloading. *) | 
| 55888 | 1393 | fun def_props_for_const thy table (x as (s, _)) = | 
| 1394 | if is_built_in_const x then | |
| 33192 | 1395 | [] | 
| 1396 | else | |
| 1397 | these (Symtab.lookup table s) | |
| 36555 
8ff45c2076da
expand combinators in Isar proofs constructed by Sledgehammer;
 blanchet parents: 
36391diff
changeset | 1398 | |> map_filter (try (specialize_type thy x)) | 
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 1399 | |> filter (curry (op =) (Const x) o term_under_def) | 
| 33192 | 1400 | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 1401 | fun normalized_rhs_of t = | 
| 33192 | 1402 | let | 
| 33743 
a58893035742
made "NitpickHOL.normalized_rhs_of" more robust in the face of locale definitions
 blanchet parents: 
33706diff
changeset | 1403 | fun aux (v as Var _) (SOME t) = SOME (lambda v t) | 
| 69593 | 1404 | | aux (c as Const (\<^const_name>\<open>Pure.type\<close>, _)) (SOME t) = SOME (lambda c t) | 
| 33743 
a58893035742
made "NitpickHOL.normalized_rhs_of" more robust in the face of locale definitions
 blanchet parents: 
33706diff
changeset | 1405 | | aux _ _ = NONE | 
| 33192 | 1406 | val (lhs, rhs) = | 
| 1407 | case t of | |
| 69593 | 1408 | Const (\<^const_name>\<open>Pure.eq\<close>, _) $ t1 $ t2 => (t1, t2) | 
| 69597 | 1409 | | \<^const>\<open>Trueprop\<close> $ (Const (\<^const_name>\<open>HOL.eq\<close>, _) $ t1 $ t2) => | 
| 33192 | 1410 | (t1, t2) | 
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33202diff
changeset | 1411 |       | _ => raise TERM ("Nitpick_HOL.normalized_rhs_of", [t])
 | 
| 33192 | 1412 | val args = strip_comb lhs |> snd | 
| 33743 
a58893035742
made "NitpickHOL.normalized_rhs_of" more robust in the face of locale definitions
 blanchet parents: 
33706diff
changeset | 1413 | in fold_rev aux args (SOME rhs) end | 
| 33192 | 1414 | |
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1415 | fun get_def_of_const thy table (x as (s, _)) = | 
| 55888 | 1416 | x |> def_props_for_const thy table |> List.last | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1417 | |> normalized_rhs_of |> Option.map (prefix_abs_vars s) | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1418 | handle List.Empty => NONE | 
| 62500 | 1419 | | TERM _ => NONE | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1420 | |
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1421 | fun def_of_const_ext thy (unfold_table, fallback_table) (x as (s, _)) = | 
| 55888 | 1422 | if is_built_in_const x orelse original_name s <> s then | 
| 33192 | 1423 | NONE | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1424 | else case get_def_of_const thy unfold_table x of | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1425 | SOME def => SOME (true, def) | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1426 | | NONE => get_def_of_const thy fallback_table x |> Option.map (pair false) | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1427 | |
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1428 | val def_of_const = Option.map snd ooo def_of_const_ext | 
| 33192 | 1429 | |
| 1430 | fun fixpoint_kind_of_rhs (Abs (_, _, t)) = fixpoint_kind_of_rhs t | |
| 69593 | 1431 | | fixpoint_kind_of_rhs (Const (\<^const_name>\<open>lfp\<close>, _) $ Abs _) = Lfp | 
| 1432 | | fixpoint_kind_of_rhs (Const (\<^const_name>\<open>gfp\<close>, _) $ Abs _) = Gfp | |
| 33192 | 1433 | | fixpoint_kind_of_rhs _ = NoFp | 
| 1434 | ||
| 1435 | fun is_mutually_inductive_pred_def thy table t = | |
| 1436 | let | |
| 1437 | fun is_good_arg (Bound _) = true | |
| 1438 | | is_good_arg (Const (s, _)) = | |
| 69593 | 1439 | s = \<^const_name>\<open>True\<close> orelse s = \<^const_name>\<open>False\<close> orelse | 
| 1440 | s = \<^const_name>\<open>undefined\<close> | |
| 33192 | 1441 | | is_good_arg _ = false | 
| 1442 | in | |
| 1443 | case t |> strip_abs_body |> strip_comb of | |
| 1444 | (Const x, ts as (_ :: _)) => | |
| 1445 | (case def_of_const thy table x of | |
| 38180 
7a88032f9265
bump up the max cardinalities, to use up more of the time given to us by the user
 blanchet parents: 
38174diff
changeset | 1446 | SOME t' => fixpoint_kind_of_rhs t' <> NoFp andalso | 
| 
7a88032f9265
bump up the max cardinalities, to use up more of the time given to us by the user
 blanchet parents: 
38174diff
changeset | 1447 | forall is_good_arg ts | 
| 33192 | 1448 | | NONE => false) | 
| 1449 | | _ => false | |
| 1450 | end | |
| 55889 | 1451 | |
| 33192 | 1452 | fun unfold_mutually_inductive_preds thy table = | 
| 1453 | map_aterms (fn t as Const x => | |
| 57227 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1454 | (case def_of_const thy table x of | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1455 | SOME t' => | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1456 | let val t' = Envir.eta_contract t' in | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1457 | if is_mutually_inductive_pred_def thy table t' then t' else t | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1458 | end | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1459 | | NONE => t) | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1460 | | t => t) | 
| 33192 | 1461 | |
| 55888 | 1462 | fun case_const_names ctxt = | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 1463 |   map_filter (fn {casex = Const (s, T), ...} =>
 | 
| 57227 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1464 | (case rev (binder_types T) of | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1465 | [] => NONE | 
| 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1466 | | T :: Ts => if is_data_type ctxt T then SOME (s, length Ts) else NONE)) | 
| 55893 
aed17a173d16
fixed handling of 'case_prod' and other 'case' functions for interpreted types
 blanchet parents: 
55891diff
changeset | 1467 | (Ctr_Sugar.ctr_sugars_of ctxt) @ | 
| 55891 
d1a9b07783ab
support 'datatype_new'-defined datatypes in Nitpick + better support for 'codatatype's
 blanchet parents: 
55890diff
changeset | 1468 | map (apsnd length o snd) (#codatatypes (Data.get (Context.Proof ctxt))) | 
| 33192 | 1469 | |
| 35718 | 1470 | fun fixpoint_kind_of_const thy table x = | 
| 55888 | 1471 | if is_built_in_const x then NoFp | 
| 39359 | 1472 | else fixpoint_kind_of_rhs (the (def_of_const thy table x)) | 
| 1473 | handle Option.Option => NoFp | |
| 33192 | 1474 | |
| 57227 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1475 | fun is_raw_inductive_pred ({thy, def_tables, intro_table, ...} : hol_context) x =
 | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1476 | fixpoint_kind_of_const thy def_tables x <> NoFp andalso | 
| 55888 | 1477 | not (null (def_props_for_const thy intro_table x)) | 
| 55889 | 1478 | |
| 38205 
37a7272cb453
handle inductive predicates correctly after change in "def" semantics
 blanchet parents: 
38204diff
changeset | 1479 | fun is_inductive_pred hol_ctxt (x as (s, _)) = | 
| 55889 | 1480 | String.isPrefix ubfp_prefix s orelse String.isPrefix lbfp_prefix s orelse | 
| 1481 | is_raw_inductive_pred hol_ctxt x | |
| 33192 | 1482 | |
| 35718 | 1483 | fun lhs_of_equation t = | 
| 1484 | case t of | |
| 69593 | 1485 | Const (\<^const_name>\<open>Pure.all\<close>, _) $ Abs (_, _, t1) => lhs_of_equation t1 | 
| 1486 | | Const (\<^const_name>\<open>Pure.eq\<close>, _) $ t1 $ _ => SOME t1 | |
| 69597 | 1487 | | \<^const>\<open>Pure.imp\<close> $ _ $ t2 => lhs_of_equation t2 | 
| 1488 | | \<^const>\<open>Trueprop\<close> $ t1 => lhs_of_equation t1 | |
| 69593 | 1489 | | Const (\<^const_name>\<open>All\<close>, _) $ Abs (_, _, t1) => lhs_of_equation t1 | 
| 1490 | | Const (\<^const_name>\<open>HOL.eq\<close>, _) $ t1 $ _ => SOME t1 | |
| 69597 | 1491 | | \<^const>\<open>HOL.implies\<close> $ _ $ t2 => lhs_of_equation t2 | 
| 35718 | 1492 | | _ => NONE | 
| 55889 | 1493 | |
| 35718 | 1494 | fun is_constr_pattern _ (Bound _) = true | 
| 1495 | | is_constr_pattern _ (Var _) = true | |
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1496 | | is_constr_pattern ctxt t = | 
| 35718 | 1497 | case strip_comb t of | 
| 1498 | (Const x, args) => | |
| 55889 | 1499 | is_nonfree_constr ctxt x andalso forall (is_constr_pattern ctxt) args | 
| 35718 | 1500 | | _ => false | 
| 55889 | 1501 | |
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1502 | fun is_constr_pattern_lhs ctxt t = | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1503 | forall (is_constr_pattern ctxt) (snd (strip_comb t)) | 
| 55889 | 1504 | |
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1505 | fun is_constr_pattern_formula ctxt t = | 
| 35718 | 1506 | case lhs_of_equation t of | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1507 | SOME t' => is_constr_pattern_lhs ctxt t' | 
| 35718 | 1508 | | NONE => false | 
| 1509 | ||
| 36555 
8ff45c2076da
expand combinators in Isar proofs constructed by Sledgehammer;
 blanchet parents: 
36391diff
changeset | 1510 | (* Similar to "specialize_type" but returns all matches rather than only the | 
| 
8ff45c2076da
expand combinators in Isar proofs constructed by Sledgehammer;
 blanchet parents: 
36391diff
changeset | 1511 | first (preorder) match. *) | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1512 | fun multi_specialize_type thy slack (s, T) t = | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1513 | let | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1514 | fun aux (Const (s', T')) ys = | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1515 | if s = s' then | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1516 | ys |> (if AList.defined (op =) ys T' then | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1517 | I | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1518 | else | 
| 61770 | 1519 | cons (T', Envir.subst_term_types (Sign.typ_match thy (T', T) | 
| 1520 | Vartab.empty) t) | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1521 | handle Type.TYPE_MATCH => I | 
| 36575 | 1522 | | TERM _ => | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1523 | if slack then | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1524 | I | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1525 | else | 
| 37253 | 1526 | raise NOT_SUPPORTED | 
| 1527 |                                       ("too much polymorphism in axiom \"" ^
 | |
| 1528 | Syntax.string_of_term_global thy t ^ | |
| 1529 | "\" involving " ^ quote s)) | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1530 | else | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1531 | ys | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1532 | | aux _ ys = ys | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1533 | in map snd (fold_aterms aux t []) end | 
| 55889 | 1534 | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1535 | fun nondef_props_for_const thy slack table (x as (s, _)) = | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1536 | these (Symtab.lookup table s) |> maps (multi_specialize_type thy slack x) | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1537 | |
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1538 | fun unvarify_term (t1 $ t2) = unvarify_term t1 $ unvarify_term t2 | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1539 | | unvarify_term (Var ((s, 0), T)) = Free (s, T) | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1540 | | unvarify_term (Abs (s, T, t')) = Abs (s, T, unvarify_term t') | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1541 | | unvarify_term t = t | 
| 55889 | 1542 | |
| 59970 | 1543 | fun axiom_for_choice_spec ctxt = | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1544 | unvarify_term | 
| 59970 | 1545 | #> Object_Logic.atomize_term ctxt | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1546 | #> Choice_Specification.close_form | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1547 | #> HOLogic.mk_Trueprop | 
| 55889 | 1548 | |
| 59970 | 1549 | fun is_choice_spec_fun ({thy, ctxt, def_tables, nondef_table, choice_spec_table, ...}
 | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1550 | : hol_context) x = | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1551 | case nondef_props_for_const thy true choice_spec_table x of | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1552 | [] => false | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1553 | | ts => case def_of_const thy def_tables x of | 
| 69593 | 1554 | SOME (Const (\<^const_name>\<open>Eps\<close>, _) $ _) => true | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1555 | | SOME _ => false | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1556 | | NONE => | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1557 | let val ts' = nondef_props_for_const thy true nondef_table x in | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1558 | length ts' = length ts andalso | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1559 | forall (fn t => | 
| 59970 | 1560 | exists (curry (op aconv) (axiom_for_choice_spec ctxt t)) | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1561 | ts') ts | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1562 | end | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1563 | |
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1564 | fun is_choice_spec_axiom thy choice_spec_table t = | 
| 55889 | 1565 | Symtab.exists (exists (curry (op aconv) t o axiom_for_choice_spec thy) o snd) | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1566 | choice_spec_table | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1567 | |
| 55889 | 1568 | fun is_raw_equational_fun ({thy, simp_table, psimp_table, ...} : hol_context)
 | 
| 1569 | x = | |
| 55888 | 1570 | exists (fn table => not (null (def_props_for_const thy table x))) | 
| 38205 
37a7272cb453
handle inductive predicates correctly after change in "def" semantics
 blanchet parents: 
38204diff
changeset | 1571 | [!simp_table, psimp_table] | 
| 55889 | 1572 | |
| 1573 | fun is_equational_fun hol_ctxt = | |
| 1574 | is_raw_equational_fun hol_ctxt orf is_inductive_pred hol_ctxt | |
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 1575 | |
| 35718 | 1576 | (** Constant unfolding **) | 
| 33192 | 1577 | |
| 55888 | 1578 | fun constr_case_body ctxt Ts (func_t, (x as (_, T))) = | 
| 33192 | 1579 | let val arg_Ts = binder_types T in | 
| 55888 | 1580 | s_betapplys Ts (func_t, map2 (select_nth_constr_arg ctxt x (Bound 0)) | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1581 | (index_seq 0 (length arg_Ts)) arg_Ts) | 
| 33192 | 1582 | end | 
| 55889 | 1583 | |
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1584 | fun add_constr_case res_T (body_t, guard_t) res_t = | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1585 | if res_T = bool_T then | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1586 | s_conj (HOLogic.mk_imp (guard_t, body_t), res_t) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1587 | else | 
| 69593 | 1588 | Const (\<^const_name>\<open>If\<close>, bool_T --> res_T --> res_T --> res_T) | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1589 | $ guard_t $ body_t $ res_t | 
| 55889 | 1590 | |
| 55888 | 1591 | fun optimized_case_def (hol_ctxt as {ctxt, ...}) Ts dataT res_T func_ts =
 | 
| 33192 | 1592 | let | 
| 55890 | 1593 | val xs = data_type_constrs hol_ctxt dataT | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1594 | val cases = | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1595 | func_ts ~~ xs | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1596 | |> map (fn (func_t, x) => | 
| 55888 | 1597 | (constr_case_body ctxt (dataT :: Ts) | 
| 42958 | 1598 | (incr_boundvars 1 func_t, x), | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1599 | discriminate_value hol_ctxt x (Bound 0))) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1600 | |> AList.group (op aconv) | 
| 69597 | 1601 | |> map (apsnd (List.foldl s_disj \<^const>\<open>False\<close>)) | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 1602 | |> sort (int_ord o apply2 (size_of_term o snd)) | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1603 | |> rev | 
| 33192 | 1604 | in | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1605 | if res_T = bool_T then | 
| 69597 | 1606 | if forall (member (op =) [\<^const>\<open>False\<close>, \<^const>\<open>True\<close>] o fst) cases then | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1607 | case cases of | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1608 | [(body_t, _)] => body_t | 
| 69597 | 1609 | | [_, (\<^const>\<open>True\<close>, head_t2)] => head_t2 | 
| 1610 | | [_, (\<^const>\<open>False\<close>, head_t2)] => \<^const>\<open>Not\<close> $ head_t2 | |
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1611 |         | _ => raise BAD ("Nitpick_HOL.optimized_case_def", "impossible cases")
 | 
| 39315 
27f7b7748425
always handle type variables in typedefs as global
 blanchet parents: 
38864diff
changeset | 1612 | else | 
| 69597 | 1613 | \<^const>\<open>True\<close> |> fold_rev (add_constr_case res_T) cases | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1614 | else | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1615 | fst (hd cases) |> fold_rev (add_constr_case res_T) (tl cases) | 
| 33192 | 1616 | end | 
| 44241 | 1617 | |> absdummy dataT | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1618 | |
| 55888 | 1619 | fun optimized_record_get (hol_ctxt as {thy, ctxt, ...}) s rec_T res_T t =
 | 
| 55890 | 1620 | let val constr_x = hd (data_type_constrs hol_ctxt rec_T) in | 
| 33192 | 1621 | case no_of_record_field thy s rec_T of | 
| 1622 | ~1 => (case rec_T of | |
| 1623 | Type (_, Ts as _ :: _) => | |
| 1624 | let | |
| 1625 | val rec_T' = List.last Ts | |
| 1626 | val j = num_record_fields thy rec_T - 1 | |
| 1627 | in | |
| 55888 | 1628 | select_nth_constr_arg ctxt constr_x t j res_T | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 1629 | |> optimized_record_get hol_ctxt s rec_T' res_T | 
| 33192 | 1630 | end | 
| 57227 
4c2156fdfe71
made lookup more robust in the face of missing (dummy) case constant
 blanchet parents: 
56245diff
changeset | 1631 |              | _ => raise TYPE ("Nitpick_HOL.optimized_record_get", [rec_T], []))
 | 
| 55888 | 1632 | | j => select_nth_constr_arg ctxt constr_x t j res_T | 
| 33192 | 1633 | end | 
| 55889 | 1634 | |
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 1635 | fun optimized_record_update (hol_ctxt as {thy, ctxt, ...}) s rec_T fun_t rec_t =
 | 
| 33192 | 1636 | let | 
| 55890 | 1637 | val constr_x as (_, constr_T) = hd (data_type_constrs hol_ctxt rec_T) | 
| 33192 | 1638 | val Ts = binder_types constr_T | 
| 1639 | val n = length Ts | |
| 1640 | val special_j = no_of_record_field thy s rec_T | |
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1641 | val ts = | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1642 | map2 (fn j => fn T => | 
| 55888 | 1643 | let val t = select_nth_constr_arg ctxt constr_x rec_t j T in | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1644 | if j = special_j then | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1645 | s_betapply [] (fun_t, t) | 
| 35220 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1646 | else if j = n - 1 andalso special_j = ~1 then | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1647 | optimized_record_update hol_ctxt s | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1648 | (rec_T |> dest_Type |> snd |> List.last) fun_t t | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1649 | else | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1650 | t | 
| 
2bcdae5f4fdb
added support for nonstandard "nat"s to Nitpick and fixed bugs in binary "nat"s and "int"s
 blanchet parents: 
35190diff
changeset | 1651 | end) (index_seq 0 n) Ts | 
| 33192 | 1652 | in list_comb (Const constr_x, ts) end | 
| 1653 | ||
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 1654 | (* Prevents divergence in case of cyclic or infinite definition dependencies. *) | 
| 33747 
3aa6b9911252
bump up Nitpick's axiom/definition unfolding limits, because some real-world problems (e.g. from Boogie) ran into the previous limits;
 blanchet parents: 
33743diff
changeset | 1655 | val unfold_max_depth = 255 | 
| 33192 | 1656 | |
| 38206 | 1657 | (* Inline definitions or define as an equational constant? Booleans tend to | 
| 41871 
394eef237bd1
lower threshold for implicitly using "nitpick_simp" for predicate definitions when "total_consts" is on
 blanchet parents: 
41860diff
changeset | 1658 | benefit more from inlining, due to the polarity analysis. (However, if | 
| 
394eef237bd1
lower threshold for implicitly using "nitpick_simp" for predicate definitions when "total_consts" is on
 blanchet parents: 
41860diff
changeset | 1659 | "total_consts" is set, the polarity analysis is likely not to be so | 
| 
394eef237bd1
lower threshold for implicitly using "nitpick_simp" for predicate definitions when "total_consts" is on
 blanchet parents: 
41860diff
changeset | 1660 | crucial.) *) | 
| 41793 
c7a2669ae75d
tweaked Nitpick based on C++ memory model example
 blanchet parents: 
41792diff
changeset | 1661 | val def_inline_threshold_for_booleans = 60 | 
| 38206 | 1662 | val def_inline_threshold_for_non_booleans = 20 | 
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 1663 | |
| 38209 | 1664 | fun unfold_defs_in_term | 
| 55888 | 1665 |         (hol_ctxt as {thy, ctxt, whacks, total_consts, case_names,
 | 
| 41871 
394eef237bd1
lower threshold for implicitly using "nitpick_simp" for predicate definitions when "total_consts" is on
 blanchet parents: 
41860diff
changeset | 1666 | def_tables, ground_thm_table, ersatz_table, ...}) = | 
| 33192 | 1667 | let | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54294diff
changeset | 1668 | fun do_numeral depth Ts mult T some_t0 t1 t2 = | 
| 47109 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1669 | (if is_number_type ctxt T then | 
| 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1670 | let | 
| 62342 | 1671 | val j = mult * HOLogic.dest_numeral t2 | 
| 47109 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1672 | in | 
| 47782 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1673 | if j = 1 then | 
| 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1674 | raise SAME () | 
| 47109 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1675 | else | 
| 47782 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1676 | let | 
| 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1677 | val s = numeral_prefix ^ signed_string_of_int j | 
| 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1678 | in | 
| 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1679 | if is_integer_like_type T then | 
| 55888 | 1680 | Const (s, T) | 
| 47782 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1681 | else | 
| 69593 | 1682 | do_term depth Ts (Const (\<^const_name>\<open>of_int\<close>, int_T --> T) | 
| 47782 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1683 | $ Const (s, int_T)) | 
| 
1678955ca991
fixed bug in handling of new numerals -- the left-hand side of "Numeral1 = 1" should be left alone and not translated to a built-in Kodkod numeral in the specification of the "numeral" function
 blanchet parents: 
47668diff
changeset | 1684 | end | 
| 47109 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1685 | end | 
| 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1686 | handle TERM _ => raise SAME () | 
| 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1687 | else | 
| 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1688 | raise SAME ()) | 
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54294diff
changeset | 1689 | handle SAME () => (case some_t0 of NONE => s_betapply [] (do_term depth Ts t1, do_term depth Ts t2) | 
| 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54294diff
changeset | 1690 | | SOME t0 => s_betapply [] (do_term depth Ts t0, s_betapply [] (do_term depth Ts t1, do_term depth Ts t2))) | 
| 47109 
db5026631799
fixed Nitpick after numeral representation change (2a1953f0d20d)
 blanchet parents: 
47108diff
changeset | 1691 | and do_term depth Ts t = | 
| 33192 | 1692 | case t of | 
| 69593 | 1693 | (t0 as Const (\<^const_name>\<open>uminus\<close>, _) $ ((t1 as Const (\<^const_name>\<open>numeral\<close>, | 
| 1694 | Type (\<^type_name>\<open>fun\<close>, [_, ran_T]))) $ t2)) => | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54294diff
changeset | 1695 | do_numeral depth Ts ~1 ran_T (SOME t0) t1 t2 | 
| 69593 | 1696 | | (t1 as Const (\<^const_name>\<open>numeral\<close>, | 
| 1697 | Type (\<^type_name>\<open>fun\<close>, [_, ran_T]))) $ t2 => | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54294diff
changeset | 1698 | do_numeral depth Ts 1 ran_T NONE t1 t2 | 
| 69593 | 1699 | | Const (\<^const_name>\<open>refl_on\<close>, T) $ Const (\<^const_name>\<open>top\<close>, _) $ t2 => | 
| 1700 | do_const depth Ts t (\<^const_name>\<open>refl'\<close>, range_type T) [t2] | |
| 1701 | | (t0 as Const (\<^const_name>\<open>Sigma\<close>, Type (_, [T1, Type (_, [T2, T3])]))) | |
| 41046 | 1702 | $ t1 $ (t2 as Abs (_, _, t2')) => | 
| 1703 | if loose_bvar1 (t2', 0) then | |
| 1704 | s_betapplys Ts (do_term depth Ts t0, map (do_term depth Ts) [t1, t2]) | |
| 1705 | else | |
| 1706 | do_term depth Ts | |
| 69593 | 1707 | (Const (\<^const_name>\<open>prod\<close>, T1 --> range_type T2 --> T3) | 
| 41046 | 1708 | $ t1 $ incr_boundvars ~1 t2') | 
| 69593 | 1709 | | Const (x as (\<^const_name>\<open>distinct\<close>, | 
| 1710 | Type (\<^type_name>\<open>fun\<close>, [Type (\<^type_name>\<open>list\<close>, [T']), _]))) | |
| 33192 | 1711 | $ (t1 as _ $ _) => | 
| 1712 | (t1 |> HOLogic.dest_list |> distinctness_formula T' | |
| 1713 | handle TERM _ => do_const depth Ts t x [t1]) | |
| 69593 | 1714 | | Const (x as (\<^const_name>\<open>If\<close>, _)) $ t1 $ t2 $ t3 => | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 1715 | if is_ground_term t1 andalso | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 1716 | exists (Pattern.matches thy o rpair t1) | 
| 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 1717 | (Inttab.lookup_list ground_thm_table (hash_term t1)) then | 
| 33192 | 1718 | do_term depth Ts t2 | 
| 1719 | else | |
| 1720 | do_const depth Ts t x [t1, t2, t3] | |
| 69593 | 1721 | | Const (\<^const_name>\<open>Let\<close>, _) $ t1 $ t2 => | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 1722 | s_betapply Ts (apply2 (do_term depth Ts) (t2, t1)) | 
| 33192 | 1723 | | Const x => do_const depth Ts t x [] | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1724 | | t1 $ t2 => | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1725 | (case strip_comb t of | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1726 | (Const x, ts) => do_const depth Ts t x ts | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1727 | | _ => s_betapply [] (do_term depth Ts t1, do_term depth Ts t2)) | 
| 33192 | 1728 | | Bound _ => t | 
| 1729 | | Abs (s, T, body) => Abs (s, T, do_term depth (T :: Ts) body) | |
| 38209 | 1730 | | _ => if member (term_match thy) whacks t then | 
| 69593 | 1731 | Const (\<^const_name>\<open>unknown\<close>, fastype_of1 (Ts, t)) | 
| 38209 | 1732 | else | 
| 1733 | t | |
| 33192 | 1734 | and select_nth_constr_arg_with_args _ _ (x as (_, T)) [] n res_T = | 
| 1735 | (Abs (Name.uu, body_type T, | |
| 55888 | 1736 | select_nth_constr_arg ctxt x (Bound 0) n res_T), []) | 
| 33192 | 1737 | | select_nth_constr_arg_with_args depth Ts x (t :: ts) n res_T = | 
| 55888 | 1738 | (select_nth_constr_arg ctxt x (do_term depth Ts t) n res_T, ts) | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1739 | and quot_rep_of depth Ts abs_T rep_T ts = | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1740 | select_nth_constr_arg_with_args depth Ts | 
| 69593 | 1741 | (\<^const_name>\<open>Quot\<close>, rep_T --> abs_T) ts 0 rep_T | 
| 33192 | 1742 | and do_const depth Ts t (x as (s, T)) ts = | 
| 38209 | 1743 | if member (term_match thy) whacks (Const x) then | 
| 69593 | 1744 | Const (\<^const_name>\<open>unknown\<close>, fastype_of1 (Ts, t)) | 
| 38209 | 1745 | else case AList.lookup (op =) ersatz_table s of | 
| 33192 | 1746 | SOME s' => | 
| 1747 | do_const (depth + 1) Ts (list_comb (Const (s', T), ts)) (s', T) ts | |
| 1748 | | NONE => | |
| 1749 | let | |
| 38206 | 1750 | fun def_inline_threshold () = | 
| 47990 
7a642e5c272c
fixed soundness bug in Nitpick related to unfolding -- the unfolding criterion must at least as strict when looking at a definitional axiom as elsewhere, otherwise we end up unfolding a constant's definition in its own definition, yielding a trivial equality
 blanchet parents: 
47909diff
changeset | 1751 | if is_boolean_type (body_type T) andalso | 
| 41871 
394eef237bd1
lower threshold for implicitly using "nitpick_simp" for predicate definitions when "total_consts" is on
 blanchet parents: 
41860diff
changeset | 1752 | total_consts <> SOME true then | 
| 38206 | 1753 | def_inline_threshold_for_booleans | 
| 1754 | else | |
| 1755 | def_inline_threshold_for_non_booleans | |
| 33192 | 1756 | val (const, ts) = | 
| 55888 | 1757 | if is_built_in_const x then | 
| 33877 
e779bea3d337
fix Nitpick soundness bug related to "finite (UNIV::'a set)" where "'a" is constrained by a sort to be infinite
 blanchet parents: 
33876diff
changeset | 1758 | (Const x, ts) | 
| 33192 | 1759 | else case AList.lookup (op =) case_names s of | 
| 1760 | SOME n => | |
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1761 | if length ts < n then | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1762 | (do_term depth Ts (eta_expand Ts t (n - length ts)), []) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1763 | else | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1764 | let | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1765 | val (dataT, res_T) = nth_range_type n T | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1766 | |> pairf domain_type range_type | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1767 | in | 
| 42958 | 1768 | (optimized_case_def hol_ctxt Ts dataT res_T | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1769 | (map (do_term depth Ts) (take n ts)), | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1770 | drop n ts) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1771 | end | 
| 33192 | 1772 | | _ => | 
| 55888 | 1773 | if is_constr ctxt x then | 
| 33192 | 1774 | (Const x, ts) | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1775 | else if is_stale_constr ctxt x then | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 1776 |                 raise NOT_SUPPORTED ("(non-co)constructors of codatatypes \
 | 
| 33581 
e1e77265fb1d
added possibility to register datatypes as codatatypes in Nitpick;
 blanchet parents: 
33580diff
changeset | 1777 | \(\"" ^ s ^ "\")") | 
| 35284 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35283diff
changeset | 1778 | else if is_quot_abs_fun ctxt x then | 
| 55874 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1779 | case T of | 
| 69593 | 1780 | Type (\<^type_name>\<open>fun\<close>, [rep_T, abs_T as Type (abs_s, _)]) => | 
| 55890 | 1781 | if is_interpreted_type abs_s then | 
| 55874 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1782 |                     raise NOT_SUPPORTED ("abstraction function on " ^
 | 
| 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1783 | quote abs_s) | 
| 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1784 | else | 
| 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1785 | (Abs (Name.uu, rep_T, | 
| 69593 | 1786 | Const (\<^const_name>\<open>Quot\<close>, rep_T --> abs_T) | 
| 55874 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1787 | $ (Const (quot_normal_name_for_type ctxt abs_T, | 
| 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1788 | rep_T --> rep_T) $ Bound 0)), ts) | 
| 35284 
9edc2bd6d2bd
enabled Nitpick's support for quotient types + shortened the Nitpick tests a bit
 blanchet parents: 
35283diff
changeset | 1789 | else if is_quot_rep_fun ctxt x then | 
| 55874 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1790 | case T of | 
| 69593 | 1791 | Type (\<^type_name>\<open>fun\<close>, [abs_T as Type (abs_s, _), rep_T]) => | 
| 55890 | 1792 | if is_interpreted_type abs_s then | 
| 55874 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1793 |                     raise NOT_SUPPORTED ("representation function on " ^
 | 
| 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1794 | quote abs_s) | 
| 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1795 | else | 
| 
7eff011e2b36
guard against unsound cases that arise when people peek into 'int' and similar types that are handled specially by Nitpick
 blanchet parents: 
55576diff
changeset | 1796 | quot_rep_of depth Ts abs_T rep_T ts | 
| 33192 | 1797 | else if is_record_get thy x then | 
| 1798 | case length ts of | |
| 1799 | 0 => (do_term depth Ts (eta_expand Ts t 1), []) | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 1800 | | _ => (optimized_record_get hol_ctxt s (domain_type T) | 
| 34982 
7b8c366e34a2
added support for nonstandard models to Nitpick (based on an idea by Koen Claessen) and did other fixes to Nitpick
 blanchet parents: 
34936diff
changeset | 1801 | (range_type T) (do_term depth Ts (hd ts)), tl ts) | 
| 33192 | 1802 | else if is_record_update thy x then | 
| 1803 | case length ts of | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 1804 | 2 => (optimized_record_update hol_ctxt | 
| 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 | 1805 | (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 | 1806 | (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 | 1807 | (do_term depth Ts (nth ts 1)), []) | 
| 33192 | 1808 | | n => (do_term depth Ts (eta_expand Ts t (2 - n)), []) | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1809 | else if is_abs_fun ctxt x andalso | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1810 | is_quot_type ctxt (range_type T) then | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1811 | let | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1812 | val abs_T = range_type T | 
| 46819 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 1813 | val rep_T = elem_type (domain_type T) | 
| 69593 | 1814 | val eps_fun = Const (\<^const_name>\<open>Eps\<close>, | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1815 | (rep_T --> bool_T) --> rep_T) | 
| 39315 
27f7b7748425
always handle type variables in typedefs as global
 blanchet parents: 
38864diff
changeset | 1816 | val normal_fun = | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1817 | Const (quot_normal_name_for_type ctxt abs_T, | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1818 | rep_T --> rep_T) | 
| 69593 | 1819 | val abs_fun = Const (\<^const_name>\<open>Quot\<close>, rep_T --> abs_T) | 
| 46819 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 1820 | val pred = | 
| 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 1821 | Abs (Name.uu, rep_T, | 
| 69593 | 1822 | Const (\<^const_name>\<open>Set.member\<close>, | 
| 46819 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 1823 | rep_T --> domain_type T --> bool_T) | 
| 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 1824 | $ Bound 0 $ Bound 1) | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1825 | in | 
| 46819 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 1826 | (Abs (Name.uu, HOLogic.mk_setT rep_T, | 
| 
9b38f8527510
addressed a quotient-type-related issue that arose with the port to "set"
 blanchet parents: 
46746diff
changeset | 1827 | abs_fun $ (normal_fun $ (eps_fun $ pred))) | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1828 | |> do_term (depth + 1) Ts, ts) | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1829 | end | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1830 | else if is_rep_fun ctxt x then | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1831 | let val x' = mate_of_rep_fun ctxt x in | 
| 55888 | 1832 | if is_constr ctxt x' then | 
| 33192 | 1833 | select_nth_constr_arg_with_args depth Ts x' ts 0 | 
| 1834 | (range_type T) | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1835 | else if is_quot_type ctxt (domain_type T) then | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1836 | let | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1837 | val abs_T = domain_type T | 
| 46745 
a6f83f21dc2c
fixed handling of "Rep_" function of quotient types -- side-effect of "set" constructor reintroduction
 blanchet parents: 
46320diff
changeset | 1838 | val rep_T = elem_type (range_type T) | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1839 | val (rep_fun, _) = quot_rep_of depth Ts abs_T rep_T [] | 
| 38243 | 1840 | val (equiv_rel, _) = | 
| 45280 | 1841 | equiv_relation_for_quot_type ctxt abs_T | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1842 | in | 
| 46745 
a6f83f21dc2c
fixed handling of "Rep_" function of quotient types -- side-effect of "set" constructor reintroduction
 blanchet parents: 
46320diff
changeset | 1843 | (Abs (Name.uu, abs_T, | 
| 
a6f83f21dc2c
fixed handling of "Rep_" function of quotient types -- side-effect of "set" constructor reintroduction
 blanchet parents: 
46320diff
changeset | 1844 | HOLogic.Collect_const rep_T | 
| 
a6f83f21dc2c
fixed handling of "Rep_" function of quotient types -- side-effect of "set" constructor reintroduction
 blanchet parents: 
46320diff
changeset | 1845 | $ (equiv_rel $ (rep_fun $ Bound 0))), | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1846 | ts) | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 1847 | end | 
| 33192 | 1848 | else | 
| 38208 | 1849 | (Const x, ts) | 
| 33192 | 1850 | end | 
| 55889 | 1851 | else if is_equational_fun hol_ctxt x orelse | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1852 | is_choice_spec_fun hol_ctxt x then | 
| 33192 | 1853 | (Const x, ts) | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1854 | else case def_of_const_ext thy def_tables x of | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1855 | SOME (unfold, def) => | 
| 33192 | 1856 | if depth > unfold_max_depth then | 
| 34124 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 1857 |                   raise TOO_LARGE ("Nitpick_HOL.unfold_defs_in_term",
 | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 1858 |                                    "too many nested definitions (" ^
 | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 1859 | string_of_int depth ^ ") while expanding " ^ | 
| 
c4628a1dcf75
added support for binary nat/int representation to Nitpick
 blanchet parents: 
34123diff
changeset | 1860 | quote s) | 
| 69593 | 1861 | else if s = \<^const_name>\<open>wfrec'\<close> then | 
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1862 | (do_term (depth + 1) Ts (s_betapplys Ts (def, ts)), []) | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1863 | else if not unfold andalso | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1864 | size_of_term def > def_inline_threshold () then | 
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 1865 | (Const x, ts) | 
| 33192 | 1866 | else | 
| 1867 | (do_term (depth + 1) Ts def, ts) | |
| 1868 | | NONE => (Const x, ts) | |
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1869 | in | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1870 | s_betapplys Ts (const, map (do_term depth Ts) ts) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1871 | |> s_beta_norm Ts | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 1872 | end | 
| 33192 | 1873 | in do_term 0 [] end | 
| 1874 | ||
| 35718 | 1875 | (** Axiom extraction/generation **) | 
| 1876 | ||
| 46086 | 1877 | fun extensional_equal j T t1 t2 = | 
| 46244 
549755ebf4d2
fixed a bug introduced when porting functions to set -- extensionality on sets break the form of equations expected elsewhere by Nitpick
 blanchet parents: 
46219diff
changeset | 1878 | if is_fun_type T then | 
| 46086 | 1879 | let | 
| 1880 | val dom_T = pseudo_domain_type T | |
| 1881 | val ran_T = pseudo_range_type T | |
| 1882 |       val var_t = Var (("x", j), dom_T)
 | |
| 46244 
549755ebf4d2
fixed a bug introduced when porting functions to set -- extensionality on sets break the form of equations expected elsewhere by Nitpick
 blanchet parents: 
46219diff
changeset | 1883 | in | 
| 
549755ebf4d2
fixed a bug introduced when porting functions to set -- extensionality on sets break the form of equations expected elsewhere by Nitpick
 blanchet parents: 
46219diff
changeset | 1884 | extensional_equal (j + 1) ran_T (betapply (t1, var_t)) | 
| 
549755ebf4d2
fixed a bug introduced when porting functions to set -- extensionality on sets break the form of equations expected elsewhere by Nitpick
 blanchet parents: 
46219diff
changeset | 1885 | (betapply (t2, var_t)) | 
| 
549755ebf4d2
fixed a bug introduced when porting functions to set -- extensionality on sets break the form of equations expected elsewhere by Nitpick
 blanchet parents: 
46219diff
changeset | 1886 | end | 
| 46086 | 1887 | else | 
| 69593 | 1888 | Const (\<^const_name>\<open>HOL.eq\<close>, T --> T --> bool_T) $ t1 $ t2 | 
| 38206 | 1889 | |
| 46091 | 1890 | (* FIXME: needed? *) | 
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 1891 | fun equationalize_term ctxt tag t = | 
| 38206 | 1892 | let | 
| 1893 | val j = maxidx_of_term t + 1 | |
| 1894 | val (prems, concl) = Logic.strip_horn t | |
| 1895 | in | |
| 38174 
c15dfe7bc077
fix newly introduced bug w.r.t. conditional equations
 blanchet parents: 
38172diff
changeset | 1896 | Logic.list_implies (prems, | 
| 38200 
2f531f620cb8
fix bug in Nitpick's "equationalize" function (the prems were ignored) + make it do some basic extensionalization
 blanchet parents: 
38190diff
changeset | 1897 | case concl of | 
| 69597 | 1898 | \<^const>\<open>Trueprop\<close> $ (Const (\<^const_name>\<open>HOL.eq\<close>, Type (_, [T, _])) | 
| 38206 | 1899 | $ t1 $ t2) => | 
| 69597 | 1900 | \<^const>\<open>Trueprop\<close> $ extensional_equal j T t1 t2 | 
| 1901 | | \<^const>\<open>Trueprop\<close> $ t' => | |
| 1902 | \<^const>\<open>Trueprop\<close> $ HOLogic.mk_eq (t', \<^const>\<open>True\<close>) | |
| 69593 | 1903 | | Const (\<^const_name>\<open>Pure.eq\<close>, Type (_, [T, _])) $ t1 $ t2 => | 
| 69597 | 1904 | \<^const>\<open>Trueprop\<close> $ extensional_equal j T t1 t2 | 
| 46086 | 1905 |         | _ => (warning ("Ignoring " ^ quote tag ^ " for non-equation " ^
 | 
| 63693 
5b02f7757a4c
removed trailing final stops in Nitpick messages
 blanchet parents: 
62500diff
changeset | 1906 | quote (Syntax.string_of_term ctxt t)); | 
| 38201 | 1907 | raise SAME ())) | 
| 1908 | |> SOME | |
| 38200 
2f531f620cb8
fix bug in Nitpick's "equationalize" function (the prems were ignored) + make it do some basic extensionalization
 blanchet parents: 
38190diff
changeset | 1909 | end | 
| 38201 | 1910 | handle SAME () => NONE | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1911 | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1912 | fun pair_for_prop t = | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1913 | case term_under_def t of | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1914 | Const (s, _) => (s, t) | 
| 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1915 |   | t' => raise TERM ("Nitpick_HOL.pair_for_prop", [t, t'])
 | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1916 | |
| 57964 | 1917 | fun def_table_for ts subst = | 
| 1918 | ts |> map (pair_for_prop o subst_atomic subst) | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1919 | |> AList.group (op =) |> Symtab.make | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1920 | |
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1921 | fun const_def_tables ctxt subst ts = | 
| 57964 | 1922 | (def_table_for | 
| 69593 | 1923 | (map Thm.prop_of (rev (Named_Theorems.get ctxt \<^named_theorems>\<open>nitpick_unfold\<close>))) subst, | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1924 | fold (fn (s, t) => Symtab.map_default (s, []) (cons t)) | 
| 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1925 | (map pair_for_prop ts) Symtab.empty) | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1926 | |
| 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1927 | fun paired_with_consts t = map (rpair t) (Term.add_const_names t []) | 
| 55889 | 1928 | |
| 35718 | 1929 | fun const_nondef_table ts = | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1930 | fold (append o paired_with_consts) ts [] |> AList.group (op =) |> Symtab.make | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1931 | |
| 38201 | 1932 | fun const_simp_table ctxt = | 
| 59582 | 1933 | def_table_for (map_filter (equationalize_term ctxt "nitpick_simp" o Thm.prop_of) | 
| 69593 | 1934 | (rev (Named_Theorems.get ctxt \<^named_theorems>\<open>nitpick_simp\<close>))) | 
| 55889 | 1935 | |
| 38201 | 1936 | fun const_psimp_table ctxt = | 
| 59582 | 1937 | def_table_for (map_filter (equationalize_term ctxt "nitpick_psimp" o Thm.prop_of) | 
| 69593 | 1938 | (rev (Named_Theorems.get ctxt \<^named_theorems>\<open>nitpick_psimp\<close>))) | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1939 | |
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1940 | fun const_choice_spec_table ctxt subst = | 
| 59582 | 1941 | map (subst_atomic subst o Thm.prop_of) | 
| 69593 | 1942 | (rev (Named_Theorems.get ctxt \<^named_theorems>\<open>nitpick_choice_spec\<close>)) | 
| 35807 
e4d1b5cbd429
added support for "specification" and "ax_specification" constructs to Nitpick
 blanchet parents: 
35743diff
changeset | 1943 | |> const_nondef_table | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1944 | |
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 1945 | fun inductive_intro_table ctxt subst def_tables = | 
| 42361 | 1946 | let val thy = Proof_Context.theory_of ctxt in | 
| 37264 
8b931fb51cc6
removed "nitpick_intro" attribute -- Nitpick noew uses Spec_Rules instead
 blanchet parents: 
37261diff
changeset | 1947 | def_table_for | 
| 71179 | 1948 | (maps (map (unfold_mutually_inductive_preds thy def_tables o Thm.prop_of) o #rules) | 
| 1949 | (filter (Spec_Rules.is_relational o #rough_classification) | |
| 1950 | (Spec_Rules.get ctxt))) subst | |
| 37264 
8b931fb51cc6
removed "nitpick_intro" attribute -- Nitpick noew uses Spec_Rules instead
 blanchet parents: 
37261diff
changeset | 1951 | end | 
| 38172 
62d4bdc3f7cc
make Nitpick more flexible when parsing (p)simp rules
 blanchet parents: 
38169diff
changeset | 1952 | |
| 35718 | 1953 | fun ground_theorem_table thy = | 
| 69597 | 1954 | fold ((fn \<^const>\<open>Trueprop\<close> $ t1 => | 
| 35718 | 1955 | is_ground_term t1 ? Inttab.map_default (hash_term t1, []) (cons t1) | 
| 59582 | 1956 | | _ => I) o Thm.prop_of o snd) (Global_Theory.all_thms_of thy true) Inttab.empty | 
| 35718 | 1957 | |
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1958 | fun ersatz_table ctxt = | 
| 44016 
51184010c609
replaced Nitpick's hardwired basic_ersatz_table by context data
 krauss parents: 
44013diff
changeset | 1959 | #ersatz_table (Data.get (Context.Proof ctxt)) | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1960 | |> fold (append o snd) (#frac_types (Data.get (Context.Proof ctxt))) | 
| 35718 | 1961 | |
| 1962 | fun add_simps simp_table s eqs = | |
| 1963 | Unsynchronized.change simp_table | |
| 1964 | (Symtab.update (s, eqs @ these (Symtab.lookup (!simp_table) s))) | |
| 1965 | ||
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1966 | fun inverse_axioms_for_rep_fun ctxt (x as (_, T)) = | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1967 | let | 
| 42361 | 1968 | val thy = Proof_Context.theory_of ctxt | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1969 | val abs_T = domain_type T | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1970 | in | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1971 | typedef_info ctxt (fst (dest_Type abs_T)) |> the | 
| 35718 | 1972 | |> pairf #Abs_inverse #Rep_inverse | 
| 59582 | 1973 | |> apply2 (specialize_type thy x o Thm.prop_of o the) | 
| 35718 | 1974 | ||> single |> op :: | 
| 1975 | end | |
| 55889 | 1976 | |
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1977 | fun optimized_typedef_axioms ctxt (abs_z as (abs_s, _)) = | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1978 | let | 
| 42361 | 1979 | val thy = Proof_Context.theory_of ctxt | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1980 | val abs_T = Type abs_z | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1981 | in | 
| 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1982 | if is_univ_typedef ctxt abs_T then | 
| 35718 | 1983 | [] | 
| 37256 
0dca1ec52999
thread along context instead of theory for typedef lookup
 blanchet parents: 
37253diff
changeset | 1984 | else case typedef_info ctxt abs_s of | 
| 52205 | 1985 |       SOME {abs_type, rep_type, Rep_name, prop_of_Rep, ...} =>
 | 
| 35718 | 1986 | let | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 1987 | val rep_T = varify_and_instantiate_type ctxt abs_type abs_T rep_type | 
| 35718 | 1988 | val rep_t = Const (Rep_name, abs_T --> rep_T) | 
| 52205 | 1989 | val set_t = | 
| 35718 | 1990 | prop_of_Rep |> HOLogic.dest_Trueprop | 
| 36555 
8ff45c2076da
expand combinators in Isar proofs constructed by Sledgehammer;
 blanchet parents: 
36391diff
changeset | 1991 | |> specialize_type thy (dest_Const rep_t) | 
| 35718 | 1992 | |> HOLogic.dest_mem |> snd | 
| 1993 | in | |
| 1994 | [HOLogic.all_const abs_T | |
| 52205 | 1995 | $ Abs (Name.uu, abs_T, HOLogic.mk_mem (rep_t $ Bound 0, set_t)) | 
| 1996 | |> HOLogic.mk_Trueprop] | |
| 35718 | 1997 | end | 
| 1998 | | NONE => [] | |
| 1999 | end | |
| 55889 | 2000 | |
| 55888 | 2001 | fun optimized_quot_type_axioms ctxt abs_z = | 
| 35718 | 2002 | let | 
| 2003 | val abs_T = Type abs_z | |
| 45280 | 2004 | val rep_T = rep_type_for_quot_type ctxt abs_T | 
| 2005 | val (equiv_rel, partial) = equiv_relation_for_quot_type ctxt abs_T | |
| 35718 | 2006 |     val a_var = Var (("a", 0), abs_T)
 | 
| 2007 |     val x_var = Var (("x", 0), rep_T)
 | |
| 2008 |     val y_var = Var (("y", 0), rep_T)
 | |
| 69593 | 2009 | val x = (\<^const_name>\<open>Quot\<close>, rep_T --> abs_T) | 
| 55888 | 2010 | val sel_a_t = select_nth_constr_arg ctxt x a_var 0 rep_T | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 2011 | val normal_fun = | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 2012 | Const (quot_normal_name_for_type ctxt abs_T, rep_T --> rep_T) | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 2013 | val normal_x = normal_fun $ x_var | 
| 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 2014 | val normal_y = normal_fun $ y_var | 
| 69593 | 2015 | val is_unknown_t = Const (\<^const_name>\<open>is_unknown\<close>, rep_T --> bool_T) | 
| 35718 | 2016 | in | 
| 38207 
792b78e355e7
added support for "Abs_" and "Rep_" functions on quotient types
 blanchet parents: 
38206diff
changeset | 2017 | [Logic.mk_equals (normal_fun $ sel_a_t, sel_a_t), | 
| 35718 | 2018 | Logic.list_implies | 
| 69597 | 2019 | ([\<^const>\<open>Not\<close> $ (is_unknown_t $ normal_x), | 
| 2020 | \<^const>\<open>Not\<close> $ (is_unknown_t $ normal_y), | |
| 35718 | 2021 | equiv_rel $ x_var $ y_var] |> map HOLogic.mk_Trueprop, | 
| 2022 | Logic.mk_equals (normal_x, normal_y)), | |
| 2023 | Logic.list_implies | |
| 69597 | 2024 | ([HOLogic.mk_Trueprop (\<^const>\<open>Not\<close> $ (is_unknown_t $ normal_x)), | 
| 2025 | HOLogic.mk_Trueprop (\<^const>\<open>Not\<close> $ HOLogic.mk_eq (normal_x, x_var))], | |
| 35718 | 2026 | HOLogic.mk_Trueprop (equiv_rel $ x_var $ normal_x))] | 
| 38243 | 2027 | |> partial ? cons (HOLogic.mk_Trueprop (equiv_rel $ sel_a_t $ sel_a_t)) | 
| 35718 | 2028 | end | 
| 2029 | ||
| 55888 | 2030 | fun codatatype_bisim_axioms (hol_ctxt as {ctxt, ...}) T =
 | 
| 33192 | 2031 | let | 
| 55890 | 2032 | val xs = data_type_constrs hol_ctxt T | 
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2033 | val pred_T = T --> bool_T | 
| 69593 | 2034 | val iter_T = \<^typ>\<open>bisim_iterator\<close> | 
| 69597 | 2035 | val bisim_max = \<^const>\<open>bisim_iterator_max\<close> | 
| 33192 | 2036 |     val n_var = Var (("n", 0), iter_T)
 | 
| 2037 | val n_var_minus_1 = | |
| 69593 | 2038 | Const (\<^const_name>\<open>safe_The\<close>, (iter_T --> bool_T) --> iter_T) | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 2039 |       $ Abs ("m", iter_T, HOLogic.eq_const iter_T $ (suc_const iter_T $ Bound 0) $ n_var)
 | 
| 33192 | 2040 |     val x_var = Var (("x", 0), T)
 | 
| 2041 |     val y_var = Var (("y", 0), T)
 | |
| 69593 | 2042 | fun bisim_const T = Const (\<^const_name>\<open>bisim\<close>, [iter_T, T, T] ---> bool_T) | 
| 33192 | 2043 | fun nth_sub_bisim x n nth_T = | 
| 38240 
a44d108a8d39
local versions of Nitpick.register_xxx functions
 blanchet parents: 
38215diff
changeset | 2044 | (if is_codatatype ctxt nth_T then bisim_const nth_T $ n_var_minus_1 | 
| 33192 | 2045 | else HOLogic.eq_const nth_T) | 
| 55888 | 2046 | $ select_nth_constr_arg ctxt x x_var n nth_T | 
| 2047 | $ select_nth_constr_arg ctxt x y_var n nth_T | |
| 33192 | 2048 | fun case_func (x as (_, T)) = | 
| 2049 | let | |
| 2050 | val arg_Ts = binder_types T | |
| 2051 | val core_t = | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2052 | discriminate_value hol_ctxt x y_var :: | 
| 33192 | 2053 | map2 (nth_sub_bisim x) (index_seq 0 (length arg_Ts)) arg_Ts | 
| 2054 | |> foldr1 s_conj | |
| 44241 | 2055 | in fold_rev absdummy arg_Ts core_t end | 
| 33192 | 2056 | in | 
| 38163 
bc546396b818
prefer implication to equality, to be more SAT solver friendly
 blanchet parents: 
38161diff
changeset | 2057 | [HOLogic.mk_imp | 
| 
bc546396b818
prefer implication to equality, to be more SAT solver friendly
 blanchet parents: 
38161diff
changeset | 2058 | (HOLogic.mk_disj (HOLogic.eq_const iter_T $ n_var $ zero_const iter_T, | 
| 57228 
d52012eabf0d
removed subsumed record-related code, now that records are registered as 'ctr_sugar'
 blanchet parents: 
57227diff
changeset | 2059 | s_betapply [] (optimized_case_def hol_ctxt [] T bool_T (map case_func xs), x_var)), | 
| 38163 
bc546396b818
prefer implication to equality, to be more SAT solver friendly
 blanchet parents: 
38161diff
changeset | 2060 | bisim_const T $ n_var $ x_var $ y_var), | 
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2061 | HOLogic.eq_const pred_T $ (bisim_const T $ bisim_max $ x_var) | 
| 46107 
e740ffcd0ef4
fixed bisimilarity axiom -- avoid "insert" with wrong type
 blanchet parents: 
46102diff
changeset | 2062 | $ Abs (Name.uu, T, HOLogic.mk_eq (x_var, Bound 0))] | 
| 33192 | 2063 | |> map HOLogic.mk_Trueprop | 
| 2064 | end | |
| 2065 | ||
| 2066 | exception NO_TRIPLE of unit | |
| 2067 | ||
| 59970 | 2068 | fun triple_for_intro_rule ctxt x t = | 
| 33192 | 2069 | let | 
| 59970 | 2070 | val prems = Logic.strip_imp_prems t |> map (Object_Logic.atomize_term ctxt) | 
| 2071 | val concl = Logic.strip_imp_concl t |> Object_Logic.atomize_term ctxt | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 2072 | val (main, side) = List.partition (exists_Const (curry (op =) x)) prems | 
| 36385 | 2073 | val is_good_head = curry (op =) (Const x) o head_of | 
| 33192 | 2074 | in | 
| 2075 | if forall is_good_head main then (side, main, concl) else raise NO_TRIPLE () | |
| 2076 | end | |
| 2077 | ||
| 2078 | val tuple_for_args = HOLogic.mk_tuple o snd o strip_comb | |
| 55889 | 2079 | |
| 33192 | 2080 | fun wf_constraint_for rel side concl main = | 
| 2081 | let | |
| 37269 | 2082 | val core = HOLogic.mk_mem (HOLogic.mk_prod | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 2083 | (apply2 tuple_for_args (main, concl)), Var rel) | 
| 33192 | 2084 | val t = List.foldl HOLogic.mk_imp core side | 
| 37269 | 2085 | val vars = filter_out (curry (op =) rel) (Term.add_vars t []) | 
| 33192 | 2086 | in | 
| 2087 | Library.foldl (fn (t', ((x, j), T)) => | |
| 2088 | HOLogic.all_const T | |
| 2089 | $ Abs (x, T, abstract_over (Var ((x, j), T), t'))) | |
| 2090 | (t, vars) | |
| 2091 | end | |
| 55889 | 2092 | |
| 33192 | 2093 | fun wf_constraint_for_triple rel (side, main, concl) = | 
| 2094 | map (wf_constraint_for rel side concl) main |> foldr1 s_conj | |
| 2095 | ||
| 2096 | fun terminates_by ctxt timeout goal tac = | |
| 42793 | 2097 | can (SINGLE (Classical.safe_tac ctxt) #> the | 
| 2098 | #> SINGLE (DETERM_TIMEOUT timeout (tac ctxt (auto_tac ctxt))) | |
| 33192 | 2099 | #> the #> Goal.finish ctxt) goal | 
| 2100 | ||
| 35181 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2101 | val max_cached_wfs = 50 | 
| 54816 
10d48c2a3e32
made timeouts in Sledgehammer not be 'option's -- simplified lots of code
 blanchet parents: 
54489diff
changeset | 2102 | val cached_timeout = Synchronized.var "Nitpick_HOL.cached_timeout" Time.zeroTime | 
| 35181 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2103 | val cached_wf_props = | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2104 | Synchronized.var "Nitpick_HOL.cached_wf_props" ([] : (term * bool) list) | 
| 33192 | 2105 | |
| 33351 | 2106 | val termination_tacs = [Lexicographic_Order.lex_order_tac true, | 
| 33192 | 2107 | ScnpReconstruct.sizechange_tac] | 
| 2108 | ||
| 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 | 2109 | fun uncached_is_well_founded_inductive_pred | 
| 55888 | 2110 |         ({thy, ctxt, debug, tac_timeout, intro_table, ...} : hol_context)
 | 
| 39359 | 2111 | (x as (_, T)) = | 
| 55888 | 2112 | case def_props_for_const thy 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 | 2113 |     [] => 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 | 2114 | [Const x]) | 
| 33192 | 2115 | | intro_ts => | 
| 59970 | 2116 | (case map (triple_for_intro_rule ctxt x) intro_ts | 
| 33192 | 2117 | |> filter_out (null o #2) of | 
| 2118 | [] => true | |
| 2119 | | triples => | |
| 2120 | let | |
| 2121 | val binders_T = HOLogic.mk_tupleT (binder_types T) | |
| 46089 | 2122 | val rel_T = HOLogic.mk_setT (HOLogic.mk_prodT (binders_T, binders_T)) | 
| 33882 
9db7854eafc7
fix soundness bug in Nitpick's handling of negative literals (e.g., -1::rat)
 blanchet parents: 
33879diff
changeset | 2123 | val j = fold Integer.max (map maxidx_of_term intro_ts) 0 + 1 | 
| 33192 | 2124 |          val rel = (("R", j), rel_T)
 | 
| 69593 | 2125 | val prop = Const (\<^const_name>\<open>wf\<close>, rel_T --> bool_T) $ Var rel :: | 
| 33192 | 2126 | map (wf_constraint_for_triple rel) triples | 
| 2127 | |> foldr1 s_conj |> HOLogic.mk_Trueprop | |
| 2128 | val _ = if debug then | |
| 63693 
5b02f7757a4c
removed trailing final stops in Nitpick messages
 blanchet parents: 
62500diff
changeset | 2129 |                    writeln ("Wellfoundedness goal: " ^ Syntax.string_of_term ctxt prop)
 | 
| 33192 | 2130 | else | 
| 2131 | () | |
| 2132 | in | |
| 35181 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2133 | if tac_timeout = Synchronized.value cached_timeout andalso | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2134 | length (Synchronized.value cached_wf_props) < max_cached_wfs then | 
| 33557 
107f3df799f6
clean Nitpick's wellfoundedness cache once in a while, to avoid potential memory leak
 blanchet parents: 
33556diff
changeset | 2135 | () | 
| 
107f3df799f6
clean Nitpick's wellfoundedness cache once in a while, to avoid potential memory leak
 blanchet parents: 
33556diff
changeset | 2136 | else | 
| 35181 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2137 | (Synchronized.change cached_wf_props (K []); | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2138 | Synchronized.change cached_timeout (K tac_timeout)); | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2139 | case AList.lookup (op =) (Synchronized.value cached_wf_props) prop of | 
| 33192 | 2140 | SOME wf => wf | 
| 2141 | | NONE => | |
| 2142 | let | |
| 59970 | 2143 | val goal = prop |> Thm.cterm_of ctxt |> Goal.init | 
| 33705 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 blanchet parents: 
33583diff
changeset | 2144 | val wf = exists (terminates_by ctxt tac_timeout goal) | 
| 
947184dc75c9
removed a few global names in Nitpick (styp, nat_less, pairf)
 blanchet parents: 
33583diff
changeset | 2145 | termination_tacs | 
| 35181 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2146 | in Synchronized.change cached_wf_props (cons (prop, wf)); wf end | 
| 33192 | 2147 | end) | 
| 35309 
997aa3a3e4bb
catch IO errors in Nitpick's "kodkodi" invocation + shorten execution time of "Manual_Nits" example
 blanchet parents: 
35284diff
changeset | 2148 | handle List.Empty => false | NO_TRIPLE () => false | 
| 33192 | 2149 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2150 | (* The type constraint below is a workaround for a Poly/ML crash. *) | 
| 33192 | 2151 | |
| 2152 | fun is_well_founded_inductive_pred | |
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 2153 |         (hol_ctxt as {thy, wfs, def_tables, wf_cache, ...} : hol_context)
 | 
| 33192 | 2154 | (x as (s, _)) = | 
| 2155 | case triple_lookup (const_match thy) wfs x of | |
| 2156 | SOME (SOME b) => b | |
| 69593 | 2157 | | _ => s = \<^const_name>\<open>Nats\<close> orelse s = \<^const_name>\<open>fold_graph'\<close> orelse | 
| 34936 
c4f04bee79f3
some work on Nitpick's support for quotient types;
 blanchet parents: 
34126diff
changeset | 2158 | case AList.lookup (op =) (!wf_cache) x of | 
| 35181 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2159 | SOME (_, wf) => wf | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2160 | | NONE => | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2161 | let | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 2162 | val gfp = (fixpoint_kind_of_const thy def_tables x = Gfp) | 
| 35181 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2163 | val wf = uncached_is_well_founded_inductive_pred hol_ctxt x | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2164 | in | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2165 | Unsynchronized.change wf_cache (cons (x, (gfp, wf))); wf | 
| 
92d857a4e5e0
synchronize Nitpick's wellfoundedness formulas caching
 blanchet parents: 
35179diff
changeset | 2166 | end | 
| 33192 | 2167 | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 2168 | fun ap_curry [_] _ t = t | 
| 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 2169 | | ap_curry arg_Ts tuple_T t = | 
| 33192 | 2170 | let val n = length arg_Ts in | 
| 46219 
426ed18eba43
discontinued old-style Term.list_abs in favour of plain Term.abs;
 wenzelm parents: 
46217diff
changeset | 2171 | fold_rev (Term.abs o pair "c") arg_Ts | 
| 
426ed18eba43
discontinued old-style Term.list_abs in favour of plain Term.abs;
 wenzelm parents: 
46217diff
changeset | 2172 | (incr_boundvars n t $ mk_flat_tuple tuple_T (map Bound (n - 1 downto 0))) | 
| 33192 | 2173 | end | 
| 2174 | ||
| 2175 | fun num_occs_of_bound_in_term j (t1 $ t2) = | |
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 2176 | op + (apply2 (num_occs_of_bound_in_term j) (t1, t2)) | 
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 2177 | | num_occs_of_bound_in_term j (Abs (_, _, t')) = | 
| 33192 | 2178 | num_occs_of_bound_in_term (j + 1) t' | 
| 2179 | | num_occs_of_bound_in_term j (Bound j') = if j' = j then 1 else 0 | |
| 2180 | | num_occs_of_bound_in_term _ _ = 0 | |
| 2181 | ||
| 2182 | val is_linear_inductive_pred_def = | |
| 2183 | let | |
| 69593 | 2184 | fun do_disjunct j (Const (\<^const_name>\<open>Ex\<close>, _) $ Abs (_, _, t2)) = | 
| 33192 | 2185 | do_disjunct (j + 1) t2 | 
| 2186 | | do_disjunct j t = | |
| 2187 | case num_occs_of_bound_in_term j t of | |
| 2188 | 0 => true | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2189 | | 1 => exists (curry (op =) (Bound j) o head_of) (conjuncts_of t) | 
| 33192 | 2190 | | _ => false | 
| 69593 | 2191 | fun do_lfp_def (Const (\<^const_name>\<open>lfp\<close>, _) $ t2) = | 
| 33192 | 2192 | let val (xs, body) = strip_abs t2 in | 
| 2193 | case length xs of | |
| 2194 | 1 => false | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2195 | | n => forall (do_disjunct (n - 1)) (disjuncts_of body) | 
| 33192 | 2196 | end | 
| 2197 | | do_lfp_def _ = false | |
| 2198 | in do_lfp_def o strip_abs_body end | |
| 2199 | ||
| 33851 
ab6ecae44033
fixed error in Nitpick's "star_linear_preds" optimization, which resulted in an ill-typed term;
 blanchet parents: 
33747diff
changeset | 2200 | fun n_ptuple_paths 0 = [] | 
| 
ab6ecae44033
fixed error in Nitpick's "star_linear_preds" optimization, which resulted in an ill-typed term;
 blanchet parents: 
33747diff
changeset | 2201 | | n_ptuple_paths 1 = [] | 
| 
ab6ecae44033
fixed error in Nitpick's "star_linear_preds" optimization, which resulted in an ill-typed term;
 blanchet parents: 
33747diff
changeset | 2202 | | n_ptuple_paths n = [] :: map (cons 2) (n_ptuple_paths (n - 1)) | 
| 61424 
c3658c18b7bc
prod_case as canonical name for product type eliminator
 haftmann parents: 
61324diff
changeset | 2203 | val ap_n_split = HOLogic.mk_ptupleabs o n_ptuple_paths | 
| 33192 | 2204 | |
| 2205 | val linear_pred_base_and_step_rhss = | |
| 2206 | let | |
| 69593 | 2207 | fun aux (Const (\<^const_name>\<open>lfp\<close>, _) $ t2) = | 
| 33192 | 2208 | let | 
| 2209 | val (xs, body) = strip_abs t2 | |
| 2210 | val arg_Ts = map snd (tl xs) | |
| 2211 | val tuple_T = HOLogic.mk_tupleT arg_Ts | |
| 2212 | val j = length arg_Ts | |
| 69593 | 2213 | fun repair_rec j (Const (\<^const_name>\<open>Ex\<close>, T1) $ Abs (s2, T2, t2')) = | 
| 2214 | Const (\<^const_name>\<open>Ex\<close>, T1) | |
| 33192 | 2215 | $ Abs (s2, T2, repair_rec (j + 1) t2') | 
| 69597 | 2216 | | repair_rec j (\<^const>\<open>HOL.conj\<close> $ t1 $ t2) = | 
| 2217 | \<^const>\<open>HOL.conj\<close> $ repair_rec j t1 $ repair_rec j t2 | |
| 33192 | 2218 | | repair_rec j t = | 
| 2219 | let val (head, args) = strip_comb t in | |
| 2220 | if head = Bound j then | |
| 2221 | HOLogic.eq_const tuple_T $ Bound j | |
| 2222 | $ mk_flat_tuple tuple_T args | |
| 2223 | else | |
| 2224 | t | |
| 2225 | end | |
| 2226 | val (nonrecs, recs) = | |
| 34121 
5e831d805118
get rid of polymorphic equality in Nitpick's code + a few minor cleanups
 blanchet parents: 
33978diff
changeset | 2227 | List.partition (curry (op =) 0 o num_occs_of_bound_in_term j) | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2228 | (disjuncts_of body) | 
| 69597 | 2229 | val base_body = nonrecs |> List.foldl s_disj \<^const>\<open>False\<close> | 
| 33192 | 2230 | val step_body = recs |> map (repair_rec j) | 
| 69597 | 2231 | |> List.foldl s_disj \<^const>\<open>False\<close> | 
| 33192 | 2232 | in | 
| 46219 
426ed18eba43
discontinued old-style Term.list_abs in favour of plain Term.abs;
 wenzelm parents: 
46217diff
changeset | 2233 | (fold_rev Term.abs (tl xs) (incr_bv (~1, j, base_body)) | 
| 33851 
ab6ecae44033
fixed error in Nitpick's "star_linear_preds" optimization, which resulted in an ill-typed term;
 blanchet parents: 
33747diff
changeset | 2234 | |> ap_n_split (length arg_Ts) tuple_T bool_T, | 
| 46219 
426ed18eba43
discontinued old-style Term.list_abs in favour of plain Term.abs;
 wenzelm parents: 
46217diff
changeset | 2235 |            Abs ("y", tuple_T, fold_rev Term.abs (tl xs) step_body
 | 
| 33851 
ab6ecae44033
fixed error in Nitpick's "star_linear_preds" optimization, which resulted in an ill-typed term;
 blanchet parents: 
33747diff
changeset | 2236 | |> ap_n_split (length arg_Ts) tuple_T bool_T)) | 
| 33192 | 2237 | end | 
| 2238 | | aux t = | |
| 33232 
f93390060bbe
internal renaming in Nitpick and fixed Kodkodi invokation on Linux;
 blanchet parents: 
33202diff
changeset | 2239 |         raise TERM ("Nitpick_HOL.linear_pred_base_and_step_rhss.aux", [t])
 | 
| 33192 | 2240 | in aux end | 
| 2241 | ||
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2242 | fun predicatify T t = | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2243 | let val set_T = HOLogic.mk_setT T in | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2244 | Abs (Name.uu, T, | 
| 69593 | 2245 | Const (\<^const_name>\<open>Set.member\<close>, T --> set_T --> bool_T) | 
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2246 | $ Bound 0 $ incr_boundvars 1 t) | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2247 | end | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2248 | |
| 35280 
54ab4921f826
fixed a few bugs in Nitpick and removed unreferenced variables
 blanchet parents: 
35220diff
changeset | 2249 | fun starred_linear_pred_const (hol_ctxt as {simp_table, ...}) (s, T) def =
 | 
| 33192 | 2250 | let | 
| 2251 | val j = maxidx_of_term def + 1 | |
| 2252 | val (outer, fp_app) = strip_abs def | |
| 2253 | val outer_bounds = map Bound (length outer - 1 downto 0) | |
| 2254 | val outer_vars = map (fn (s, T) => Var ((s, j), T)) outer | |
| 2255 | val fp_app = subst_bounds (rev outer_vars, fp_app) | |
| 2256 | val (outer_Ts, rest_T) = strip_n_binders (length outer) T | |
| 2257 | val tuple_arg_Ts = strip_type rest_T |> fst | |
| 2258 | val tuple_T = HOLogic.mk_tupleT tuple_arg_Ts | |
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2259 | val prod_T = HOLogic.mk_prodT (tuple_T, tuple_T) | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2260 | val set_T = HOLogic.mk_setT tuple_T | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2261 | val rel_T = HOLogic.mk_setT prod_T | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2262 | val pred_T = tuple_T --> bool_T | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2263 | val curried_T = tuple_T --> pred_T | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2264 | val uncurried_T = prod_T --> bool_T | 
| 33192 | 2265 | val (base_rhs, step_rhs) = linear_pred_base_and_step_rhss fp_app | 
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2266 | val base_x as (base_s, _) = (base_prefix ^ s, outer_Ts ---> pred_T) | 
| 33192 | 2267 | val base_eq = HOLogic.mk_eq (list_comb (Const base_x, outer_vars), base_rhs) | 
| 2268 | |> HOLogic.mk_Trueprop | |
| 2269 | val _ = add_simps simp_table base_s [base_eq] | |
| 2270 | val step_x as (step_s, _) = (step_prefix ^ s, outer_Ts ---> curried_T) | |
| 2271 | val step_eq = HOLogic.mk_eq (list_comb (Const step_x, outer_vars), step_rhs) | |
| 2272 | |> HOLogic.mk_Trueprop | |
| 2273 | val _ = add_simps simp_table step_s [step_eq] | |
| 69593 | 2274 | val image_const = Const (\<^const_name>\<open>Image\<close>, rel_T --> set_T --> set_T) | 
| 2275 | val rtrancl_const = Const (\<^const_name>\<open>rtrancl\<close>, rel_T --> rel_T) | |
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2276 | val base_set = | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2277 | HOLogic.Collect_const tuple_T $ list_comb (Const base_x, outer_bounds) | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2278 | val step_set = | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2279 | HOLogic.Collect_const prod_T | 
| 69593 | 2280 | $ (Const (\<^const_name>\<open>case_prod\<close>, curried_T --> uncurried_T) | 
| 46101 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2281 | $ list_comb (Const step_x, outer_bounds)) | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2282 | val image_set = | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2283 | image_const $ (rtrancl_const $ step_set) $ base_set | 
| 
da17bfdadef6
handle starred predicates correctly w.r.t. "set"
 blanchet parents: 
46094diff
changeset | 2284 | |> predicatify tuple_T | 
| 33192 | 2285 | in | 
| 46219 
426ed18eba43
discontinued old-style Term.list_abs in favour of plain Term.abs;
 wenzelm parents: 
46217diff
changeset | 2286 | fold_rev Term.abs outer (image_set |> ap_curry tuple_arg_Ts tuple_T) | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2287 | |> unfold_defs_in_term hol_ctxt | 
| 33192 | 2288 | end | 
| 2289 | ||
| 69593 | 2290 | fun is_good_starred_linear_pred_type (Type (\<^type_name>\<open>fun\<close>, Ts)) = | 
| 46115 | 2291 | forall (not o (is_fun_or_set_type orf is_pair_type)) Ts | 
| 38168 
e5978befb951
careful about which linear inductive predicates should be starred
 blanchet parents: 
38163diff
changeset | 2292 | | is_good_starred_linear_pred_type _ = false | 
| 
e5978befb951
careful about which linear inductive predicates should be starred
 blanchet parents: 
38163diff
changeset | 2293 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2294 | fun unrolled_inductive_pred_const (hol_ctxt as {thy, star_linear_preds,
 | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 2295 | def_tables, simp_table, ...}) | 
| 33192 | 2296 | gfp (x as (s, T)) = | 
| 2297 | let | |
| 2298 | val iter_T = iterator_type_for_const gfp x | |
| 2299 | val x' as (s', _) = (unrolled_prefix ^ s, iter_T --> T) | |
| 2300 | val unrolled_const = Const x' $ zero_const iter_T | |
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 2301 | val def = the (def_of_const thy def_tables x) | 
| 33192 | 2302 | in | 
| 55889 | 2303 | if is_equational_fun hol_ctxt x' then | 
| 33192 | 2304 | unrolled_const (* already done *) | 
| 38168 
e5978befb951
careful about which linear inductive predicates should be starred
 blanchet parents: 
38163diff
changeset | 2305 | else if not gfp andalso star_linear_preds andalso | 
| 
e5978befb951
careful about which linear inductive predicates should be starred
 blanchet parents: 
38163diff
changeset | 2306 | is_linear_inductive_pred_def def andalso | 
| 
e5978befb951
careful about which linear inductive predicates should be starred
 blanchet parents: 
38163diff
changeset | 2307 | is_good_starred_linear_pred_type T then | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2308 | starred_linear_pred_const hol_ctxt x def | 
| 33192 | 2309 | else | 
| 2310 | let | |
| 2311 | val j = maxidx_of_term def + 1 | |
| 2312 | val (outer, fp_app) = strip_abs def | |
| 2313 | val outer_bounds = map Bound (length outer - 1 downto 0) | |
| 2314 | val cur = Var ((iter_var_prefix, j + 1), iter_T) | |
| 2315 | val next = suc_const iter_T $ cur | |
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2316 | val rhs = | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2317 | case fp_app of | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2318 | Const _ $ t => | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2319 | s_betapply [] (t, list_comb (Const x', next :: outer_bounds)) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2320 |           | _ => raise TERM ("Nitpick_HOL.unrolled_inductive_pred_const",
 | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2321 | [fp_app]) | 
| 33192 | 2322 | val (inner, naked_rhs) = strip_abs rhs | 
| 2323 | val all = outer @ inner | |
| 2324 | val bounds = map Bound (length all - 1 downto 0) | |
| 2325 | val vars = map (fn (s, T) => Var ((s, j), T)) all | |
| 2326 | val eq = HOLogic.mk_eq (list_comb (Const x', cur :: bounds), naked_rhs) | |
| 2327 | |> HOLogic.mk_Trueprop |> curry subst_bounds (rev vars) | |
| 2328 | val _ = add_simps simp_table s' [eq] | |
| 2329 | in unrolled_const end | |
| 2330 | end | |
| 2331 | ||
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 2332 | fun raw_inductive_pred_axiom ({thy, def_tables, ...} : hol_context) x =
 | 
| 33192 | 2333 | let | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 2334 | val def = the (def_of_const thy def_tables x) | 
| 33192 | 2335 | val (outer, fp_app) = strip_abs def | 
| 2336 | val outer_bounds = map Bound (length outer - 1 downto 0) | |
| 37476 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2337 | val rhs = | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2338 | case fp_app of | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2339 | Const _ $ t => s_betapply [] (t, list_comb (Const x, outer_bounds)) | 
| 
0681e46b4022
optimized code generated for datatype cases + more;
 blanchet parents: 
37269diff
changeset | 2340 |       | _ => raise TERM ("Nitpick_HOL.raw_inductive_pred_axiom", [fp_app])
 | 
| 33192 | 2341 | val (inner, naked_rhs) = strip_abs rhs | 
| 2342 | val all = outer @ inner | |
| 2343 | val bounds = map Bound (length all - 1 downto 0) | |
| 2344 | val j = maxidx_of_term def + 1 | |
| 2345 | val vars = map (fn (s, T) => Var ((s, j), T)) all | |
| 2346 | in | |
| 2347 | HOLogic.mk_eq (list_comb (Const x, bounds), naked_rhs) | |
| 2348 | |> HOLogic.mk_Trueprop |> curry subst_bounds (rev vars) | |
| 2349 | end | |
| 55889 | 2350 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2351 | fun inductive_pred_axiom hol_ctxt (x as (s, T)) = | 
| 33192 | 2352 | if String.isPrefix ubfp_prefix s orelse String.isPrefix lbfp_prefix s then | 
| 35718 | 2353 | let val x' = (strip_first_name_sep s |> snd, T) in | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2354 | raw_inductive_pred_axiom hol_ctxt x' |> subst_atomic [(Const x', Const x)] | 
| 33192 | 2355 | end | 
| 2356 | else | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2357 | raw_inductive_pred_axiom hol_ctxt x | 
| 33192 | 2358 | |
| 55888 | 2359 | fun equational_fun_axioms (hol_ctxt as {thy, ctxt, def_tables, simp_table,
 | 
| 39359 | 2360 | psimp_table, ...}) x = | 
| 55888 | 2361 | case def_props_for_const thy (!simp_table) x of | 
| 2362 | [] => (case def_props_for_const thy psimp_table x of | |
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 2363 | [] => (if is_inductive_pred hol_ctxt x then | 
| 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 2364 | [inductive_pred_axiom hol_ctxt x] | 
| 41791 
01d722707a36
always unfold constant defitions marked with "nitpick_def" -- to prevent unfolding, there's already "nitpick_simp"
 blanchet parents: 
41472diff
changeset | 2365 | else case def_of_const thy def_tables x of | 
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 2366 | SOME def => | 
| 69597 | 2367 | \<^const>\<open>Trueprop\<close> $ HOLogic.mk_eq (Const x, def) | 
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 2368 | |> equationalize_term ctxt "" |> the |> single | 
| 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 2369 | | NONE => []) | 
| 33192 | 2370 | | psimps => psimps) | 
| 2371 | | simps => simps | |
| 55889 | 2372 | |
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2373 | fun is_equational_fun_surely_complete hol_ctxt x = | 
| 38202 
379fb08da97b
prevent the expansion of too large definitions -- use equations for these instead
 blanchet parents: 
38201diff
changeset | 2374 | case equational_fun_axioms hol_ctxt x of | 
| 69597 | 2375 | [\<^const>\<open>Trueprop\<close> $ (Const (\<^const_name>\<open>HOL.eq\<close>, _) $ t1 $ _)] => | 
| 35070 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2376 | strip_comb t1 |> snd |> forall is_Var | 
| 
96136eb6218f
split "nitpick_hol.ML" into two files to make it more manageable;
 blanchet parents: 
34998diff
changeset | 2377 | | _ => false | 
| 33192 | 2378 | |
| 35718 | 2379 | (** Type preprocessing **) | 
| 2380 | ||
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2381 | fun merged_type_var_table_for_terms thy ts = | 
| 33192 | 2382 | let | 
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2383 | fun add (s, S) table = | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2384 | table | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2385 | |> (case AList.lookup (Sign.subsort thy o swap) table S of | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2386 | SOME _ => I | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2387 | | NONE => | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2388 | filter_out (fn (S', _) => Sign.subsort thy (S, S')) | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2389 | #> cons (S, s)) | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2390 | val tfrees = [] |> fold Term.add_tfrees ts | 
| 59058 
a78612c67ec0
renamed "pairself" to "apply2", in accordance to @{apply 2};
 wenzelm parents: 
59038diff
changeset | 2391 | |> sort (string_ord o apply2 fst) | 
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2392 | in [] |> fold add tfrees |> rev end | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38168diff
changeset | 2393 | |
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2394 | fun merge_type_vars_in_term thy merge_type_vars table = | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38168diff
changeset | 2395 | merge_type_vars | 
| 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38168diff
changeset | 2396 | ? map_types (map_atyps | 
| 38212 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2397 | (fn TFree (_, S) => | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2398 | TFree (table |> find_first (fn (S', _) => Sign.subsort thy (S', S)) | 
| 
a7e92239922f
improved "merge_type_vars" option: map supersorts to subsorts, to avoid distinguishing, say, "{}", and "HOL.type"
 blanchet parents: 
38209diff
changeset | 2399 | |> the |> swap) | 
| 38169 
b51784515471
optimize local "def"s by treating them as definitions
 blanchet parents: 
38168diff
changeset | 2400 | | T => T)) | 
| 33192 | 2401 | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2402 | fun add_ground_types hol_ctxt binarize = | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2403 | let | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2404 | fun aux T accum = | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2405 | case T of | 
| 69593 | 2406 | Type (\<^type_name>\<open>fun\<close>, Ts) => fold aux Ts accum | 
| 2407 | | Type (\<^type_name>\<open>prod\<close>, Ts) => fold aux Ts accum | |
| 2408 | | Type (\<^type_name>\<open>set\<close>, Ts) => fold aux Ts accum | |
| 2409 | | Type (\<^type_name>\<open>itself\<close>, [T1]) => aux T1 accum | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2410 | | Type (_, Ts) => | 
| 69593 | 2411 | if member (op =) (\<^typ>\<open>prop\<close> :: \<^typ>\<open>bool\<close> :: accum) T then | 
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2412 | accum | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2413 | else | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2414 | T :: accum | 
| 55890 | 2415 | |> fold aux (case binarized_and_boxed_data_type_constrs hol_ctxt | 
| 2416 | binarize T of | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2417 | [] => Ts | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2418 | | xs => map snd xs) | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2419 | | _ => insert (op =) T accum | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2420 | in aux end | 
| 55889 | 2421 | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2422 | fun ground_types_in_type hol_ctxt binarize T = | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2423 | add_ground_types hol_ctxt binarize T [] | 
| 55889 | 2424 | |
| 35190 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2425 | fun ground_types_in_terms hol_ctxt binarize ts = | 
| 
ce653cc27a94
make sure that Nitpick uses binary notation consistently if "binary_ints" is enabled
 blanchet parents: 
35181diff
changeset | 2426 | fold (fold_types (add_ground_types hol_ctxt binarize)) ts [] | 
| 33192 | 2427 | |
| 2428 | end; |