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