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