author | blanchet |
Tue, 30 Apr 2013 16:18:21 +0200 | |
changeset 51841 | 0785b321802e |
parent 51840 | b304fb6c5ef5 |
child 51842 | cc0a3185406c |
permissions | -rw-r--r-- |
49636 | 1 |
(* Title: HOL/BNF/Tools/bnf_fp_def_sugar.ML |
49112 | 2 |
Author: Jasmin Blanchette, TU Muenchen |
3 |
Copyright 2012 |
|
4 |
||
49389 | 5 |
Sugared datatype and codatatype constructions. |
49112 | 6 |
*) |
7 |
||
49636 | 8 |
signature BNF_FP_DEF_SUGAR = |
49112 | 9 |
sig |
51840 | 10 |
type fp_sugar = |
51824 | 11 |
{lfp: bool, |
51838 | 12 |
index: int, |
13 |
pre_bnfs: BNF_Def.bnf list, |
|
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
14 |
fp_res: BNF_FP.fp_result, |
51841 | 15 |
ctr_sugars: BNF_Ctr_Sugar.ctr_sugar list}; |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
16 |
|
51840 | 17 |
val fp_sugar_of: Proof.context -> string -> fp_sugar option |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
18 |
|
51837
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
blanchet
parents:
51835
diff
changeset
|
19 |
val derive_induct_fold_rec_thms_for_types: BNF_Def.bnf list -> term list -> term list -> thm -> |
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
blanchet
parents:
51835
diff
changeset
|
20 |
thm list -> thm list -> BNF_Def.bnf list -> BNF_Def.bnf list -> typ list -> typ list -> |
51827 | 21 |
typ list -> term list list -> thm list list -> term list -> term list -> thm list -> thm list -> |
22 |
Proof.context -> |
|
51811 | 23 |
(thm * thm list * Args.src list) * (thm list list * Args.src list) |
51827 | 24 |
* (thm list list * Args.src list) |
51837
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
blanchet
parents:
51835
diff
changeset
|
25 |
val derive_coinduct_unfold_corec_thms_for_types: BNF_Def.bnf list -> term list -> term list -> |
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
blanchet
parents:
51835
diff
changeset
|
26 |
thm -> thm -> thm list -> thm list -> thm list -> BNF_Def.bnf list -> BNF_Def.bnf list -> |
51829 | 27 |
typ list -> typ list -> typ list -> int list list -> int list list -> int list -> |
51840 | 28 |
thm list list -> BNF_Ctr_Sugar.ctr_sugar list -> term list -> term list -> thm list -> |
51839 | 29 |
thm list -> Proof.context -> |
30 |
(thm * thm list * thm * thm list * Args.src list) |
|
31 |
* (thm list list * thm list list * Args.src list) |
|
51811 | 32 |
* (thm list list * thm list list) * (thm list list * thm list list * Args.src list) |
51824 | 33 |
* (thm list list * thm list list * Args.src list) |
34 |
* (thm list list * thm list list * Args.src list) |
|
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
35 |
|
49536 | 36 |
val datatypes: bool -> |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
37 |
(mixfix list -> (string * sort) list option -> binding list -> binding list -> binding list -> |
51837
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
blanchet
parents:
51835
diff
changeset
|
38 |
binding list list -> typ list * typ list list -> BNF_Def.bnf list -> local_theory -> |
51757 | 39 |
BNF_FP.fp_result * local_theory) -> |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
40 |
(bool * bool) * (((((binding * (typ * sort)) list * binding) * (binding * binding)) * mixfix) * |
51758 | 41 |
((((binding * binding) * (binding * typ) list) * (binding * term) list) * |
42 |
mixfix) list) list -> |
|
49297 | 43 |
local_theory -> local_theory |
49308
6190b701e4f4
reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents:
49302
diff
changeset
|
44 |
val parse_datatype_cmd: bool -> |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
45 |
(mixfix list -> (string * sort) list option -> binding list -> binding list -> binding list -> |
51837
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
blanchet
parents:
51835
diff
changeset
|
46 |
binding list list -> typ list * typ list list -> BNF_Def.bnf list -> local_theory -> |
51757 | 47 |
BNF_FP.fp_result * local_theory) -> |
49308
6190b701e4f4
reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents:
49302
diff
changeset
|
48 |
(local_theory -> local_theory) parser |
49112 | 49 |
end; |
50 |
||
49636 | 51 |
structure BNF_FP_Def_Sugar : BNF_FP_DEF_SUGAR = |
49112 | 52 |
struct |
53 |
||
49119 | 54 |
open BNF_Util |
51797 | 55 |
open BNF_Ctr_Sugar |
49214
2a3cb4c71b87
construct the right iterator theorem in the recursive case
blanchet
parents:
49213
diff
changeset
|
56 |
open BNF_Def |
49457 | 57 |
open BNF_FP |
49636 | 58 |
open BNF_FP_Def_Sugar_Tactics |
49119 | 59 |
|
51788 | 60 |
val EqN = "Eq_"; |
51777
48a0ae342ea0
generate proper attributes for coinduction rules
blanchet
parents:
51769
diff
changeset
|
61 |
|
51840 | 62 |
type fp_sugar = |
51824 | 63 |
{lfp: bool, |
51838 | 64 |
index: int, |
65 |
pre_bnfs: bnf list, |
|
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
66 |
fp_res: fp_result, |
51841 | 67 |
ctr_sugars: ctr_sugar list}; |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
68 |
|
51840 | 69 |
fun eq_fp_sugar ({lfp = lfp1, index = index1, fp_res = fp_res1, ...} : fp_sugar, |
70 |
{lfp = lfp2, index = index2, fp_res = fp_res2, ...} : fp_sugar) = |
|
51838 | 71 |
lfp1 = lfp2 andalso index1 = index2 andalso eq_fp_result (fp_res1, fp_res2); |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
72 |
|
51841 | 73 |
fun morph_fp_sugar phi {lfp, index, pre_bnfs, fp_res, ctr_sugars} = |
51838 | 74 |
{lfp = lfp, index = index, pre_bnfs = map (morph_bnf phi) pre_bnfs, |
51841 | 75 |
fp_res = morph_fp_result phi fp_res, ctr_sugars = map (morph_ctr_sugar phi) ctr_sugars}; |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
76 |
|
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
77 |
structure Data = Generic_Data |
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
78 |
( |
51840 | 79 |
type T = fp_sugar Symtab.table; |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
80 |
val empty = Symtab.empty; |
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
81 |
val extend = I; |
51840 | 82 |
val merge = Symtab.merge eq_fp_sugar; |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
83 |
); |
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
84 |
|
51840 | 85 |
val fp_sugar_of = Symtab.lookup o Data.get o Context.Proof; |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
86 |
|
51840 | 87 |
fun register_fp_sugar key fp_sugar = |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
88 |
Local_Theory.declaration {syntax = false, pervasive = true} |
51840 | 89 |
(fn phi => Data.map (Symtab.update_new (key, morph_fp_sugar phi fp_sugar))); |
51823
38996458bc5c
create data structure for storing (co)datatype information
blanchet
parents:
51819
diff
changeset
|
90 |
|
51840 | 91 |
fun register_fp_sugars lfp pre_bnfs (fp_res as {ctors, ...}) ctr_sugars lthy = |
51841 | 92 |
(1, lthy) |
93 |
|> fold (fn ctor => fn (kk, lthy) => (kk + 1, |
|
94 |
register_fp_sugar (fp_name_of_ctor ctor) {lfp = lfp, index = kk, |
|
95 |
pre_bnfs = pre_bnfs, fp_res = fp_res, ctr_sugars = ctr_sugars} lthy)) ctors |
|
51824 | 96 |
|> snd; |
97 |
||
51777
48a0ae342ea0
generate proper attributes for coinduction rules
blanchet
parents:
51769
diff
changeset
|
98 |
(* This function could produce clashes in contrived examples (e.g., "x.A", "x.x_A", "y.A"). *) |
49622 | 99 |
fun quasi_unambiguous_case_names names = |
100 |
let |
|
101 |
val ps = map (`Long_Name.base_name) names; |
|
102 |
val dups = Library.duplicates (op =) (map fst ps); |
|
103 |
fun underscore s = |
|
104 |
let val ss = space_explode Long_Name.separator s in |
|
105 |
space_implode "_" (drop (length ss - 2) ss) |
|
106 |
end; |
|
107 |
in |
|
108 |
map (fn (base, full) => if member (op =) dups base then underscore full else base) ps |
|
109 |
end; |
|
110 |
||
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
111 |
val mp_conj = @{thm mp_conj}; |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
112 |
|
49300 | 113 |
val simp_attrs = @{attributes [simp]}; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
114 |
val code_simp_attrs = Code.add_default_eqn_attrib :: simp_attrs; |
49300 | 115 |
|
50170 | 116 |
fun split_list4 [] = ([], [], [], []) |
117 |
| split_list4 ((x1, x2, x3, x4) :: xs) = |
|
118 |
let val (xs1, xs2, xs3, xs4) = split_list4 xs; |
|
119 |
in (x1 :: xs1, x2 :: xs2, x3 :: xs3, x4 :: xs4) end; |
|
49214
2a3cb4c71b87
construct the right iterator theorem in the recursive case
blanchet
parents:
49213
diff
changeset
|
120 |
|
51811 | 121 |
fun add_components_of_typ (Type (s, Ts)) = |
51816 | 122 |
fold add_components_of_typ Ts #> cons (Long_Name.base_name s) |
51811 | 123 |
| add_components_of_typ _ = I; |
124 |
||
51816 | 125 |
fun base_name_of_typ T = space_implode "_" (add_components_of_typ T []); |
51811 | 126 |
|
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
127 |
fun exists_subtype_in Ts = exists_subtype (member (op =) Ts); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
128 |
|
49342 | 129 |
fun resort_tfree S (TFree (s, _)) = TFree (s, S); |
130 |
||
49214
2a3cb4c71b87
construct the right iterator theorem in the recursive case
blanchet
parents:
49213
diff
changeset
|
131 |
fun typ_subst inst (T as Type (s, Ts)) = |
2a3cb4c71b87
construct the right iterator theorem in the recursive case
blanchet
parents:
49213
diff
changeset
|
132 |
(case AList.lookup (op =) inst T of |
2a3cb4c71b87
construct the right iterator theorem in the recursive case
blanchet
parents:
49213
diff
changeset
|
133 |
NONE => Type (s, map (typ_subst inst) Ts) |
2a3cb4c71b87
construct the right iterator theorem in the recursive case
blanchet
parents:
49213
diff
changeset
|
134 |
| SOME T' => T') |
2a3cb4c71b87
construct the right iterator theorem in the recursive case
blanchet
parents:
49213
diff
changeset
|
135 |
| typ_subst inst T = the_default T (AList.lookup (op =) inst T); |
49205 | 136 |
|
49583 | 137 |
fun variant_types ss Ss ctxt = |
138 |
let |
|
139 |
val (tfrees, _) = |
|
140 |
fold_map2 (fn s => fn S => Name.variant s #> apfst (rpair S)) ss Ss (Variable.names_of ctxt); |
|
141 |
val ctxt' = fold (Variable.declare_constraints o Logic.mk_type o TFree) tfrees ctxt; |
|
142 |
in (tfrees, ctxt') end; |
|
143 |
||
49297 | 144 |
val lists_bmoc = fold (fn xs => fn t => Term.list_comb (t, xs)); |
49202
f493cd25737f
some work towards iterator and recursor properties
blanchet
parents:
49201
diff
changeset
|
145 |
|
49200 | 146 |
fun mk_tupled_fun x f xs = HOLogic.tupled_lambda x (Term.list_comb (f, xs)); |
147 |
fun mk_uncurried_fun f xs = mk_tupled_fun (HOLogic.mk_tuple xs) f xs; |
|
148 |
||
51794 | 149 |
fun flat_rec unzipf xs = |
150 |
let val ps = map unzipf xs in |
|
151 |
(* The first line below gives the preferred order. The second line is for compatibility with the |
|
152 |
old datatype package: *) |
|
51795
096b96281e34
for compatibility, generate recursor arguments in the same order as old package
blanchet
parents:
51794
diff
changeset
|
153 |
(* |
51794 | 154 |
maps (op @) ps |
51795
096b96281e34
for compatibility, generate recursor arguments in the same order as old package
blanchet
parents:
51794
diff
changeset
|
155 |
*) |
51794 | 156 |
maps fst ps @ maps snd ps |
51793
22f22172a361
started working on compatibility with old package's recursor
blanchet
parents:
51790
diff
changeset
|
157 |
end; |
22f22172a361
started working on compatibility with old package's recursor
blanchet
parents:
51790
diff
changeset
|
158 |
|
51829 | 159 |
fun flat_predss_getterss qss fss = maps (op @) (qss ~~ fss); |
160 |
||
161 |
fun flat_preds_predsss_gettersss [] [qss] [fss] = flat_predss_getterss qss fss |
|
162 |
| flat_preds_predsss_gettersss (p :: ps) (qss :: qsss) (fss :: fsss) = |
|
163 |
p :: flat_predss_getterss qss fss @ flat_preds_predsss_gettersss ps qsss fsss; |
|
164 |
||
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
165 |
fun mk_flip (x, Type (_, [T1, Type (_, [T2, T3])])) = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
166 |
Abs ("x", T1, Abs ("y", T2, Var (x, T2 --> T1 --> T3) $ Bound 0 $ Bound 1)); |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
167 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
168 |
fun flip_rels lthy n thm = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
169 |
let |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
170 |
val Rs = Term.add_vars (prop_of thm) []; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
171 |
val Rs' = rev (drop (length Rs - n) Rs); |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
172 |
val cRs = map (fn f => (certify lthy (Var f), certify lthy (mk_flip f))) Rs'; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
173 |
in |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
174 |
Drule.cterm_instantiate cRs thm |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
175 |
end; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
176 |
|
49536 | 177 |
fun mk_ctor_or_dtor get_T Ts t = |
178 |
let val Type (_, Ts0) = get_T (fastype_of t) in |
|
179 |
Term.subst_atomic_types (Ts0 ~~ Ts) t |
|
180 |
end; |
|
181 |
||
182 |
val mk_ctor = mk_ctor_or_dtor range_type; |
|
183 |
val mk_dtor = mk_ctor_or_dtor domain_type; |
|
184 |
||
185 |
fun mk_rec_like lfp Ts Us t = |
|
186 |
let |
|
187 |
val (bindings, body) = strip_type (fastype_of t); |
|
188 |
val (f_Us, prebody) = split_last bindings; |
|
189 |
val Type (_, Ts0) = if lfp then prebody else body; |
|
190 |
val Us0 = distinct (op =) (map (if lfp then body_type else domain_type) f_Us); |
|
191 |
in |
|
192 |
Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t |
|
193 |
end; |
|
194 |
||
51827 | 195 |
val mk_fp_rec_like_fun_types = fst o split_last o binder_types o fastype_of o hd; |
196 |
||
197 |
fun mk_fp_rec_like lfp As Cs fp_rec_likes0 = |
|
198 |
map (mk_rec_like lfp As Cs) fp_rec_likes0 |
|
199 |
|> (fn ts => (ts, mk_fp_rec_like_fun_types ts)); |
|
200 |
||
201 |
fun mk_rec_like_fun_arg_typess n ms = map2 dest_tupleT ms o dest_sumTN_balanced n o domain_type; |
|
202 |
||
51829 | 203 |
fun massage_rec_fun_arg_typesss fpTs = |
51827 | 204 |
let |
51829 | 205 |
fun project_recT proj = |
206 |
let |
|
207 |
fun project (Type (s as @{type_name prod}, Ts as [T, U])) = |
|
208 |
if member (op =) fpTs T then proj (T, U) else Type (s, map project Ts) |
|
209 |
| project (Type (s, Ts)) = Type (s, map project Ts) |
|
210 |
| project T = T; |
|
211 |
in project end; |
|
212 |
fun unzip_recT T = |
|
213 |
if exists_subtype_in fpTs T then ([project_recT fst T], [project_recT snd T]) else ([T], []); |
|
214 |
in |
|
215 |
map (map (flat_rec unzip_recT)) |
|
216 |
end; |
|
51827 | 217 |
|
218 |
val mk_fold_fun_typess = map2 (map2 (curry (op --->))); |
|
219 |
val mk_rec_fun_typess = mk_fold_fun_typess oo massage_rec_fun_arg_typesss; |
|
220 |
||
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
221 |
fun mk_fold_rec_terms_types fpTs Css ns mss ctor_fold_fun_Ts ctor_rec_fun_Ts lthy = |
51832 | 222 |
let |
223 |
val y_Tsss = map3 mk_rec_like_fun_arg_typess ns mss ctor_fold_fun_Ts; |
|
224 |
val g_Tss = mk_fold_fun_typess y_Tsss Css; |
|
225 |
||
226 |
val ((gss, ysss), lthy) = |
|
227 |
lthy |
|
228 |
|> mk_Freess "f" g_Tss |
|
229 |
||>> mk_Freesss "x" y_Tsss; |
|
230 |
||
231 |
val z_Tsss = map3 mk_rec_like_fun_arg_typess ns mss ctor_rec_fun_Ts; |
|
232 |
val h_Tss = mk_rec_fun_typess fpTs z_Tsss Css; |
|
233 |
||
234 |
val hss = map2 (map2 retype_free) h_Tss gss; |
|
235 |
val zsss = map2 (map2 (map2 retype_free)) z_Tsss ysss; |
|
236 |
in |
|
237 |
(((gss, g_Tss, ysss), (hss, h_Tss, zsss)), lthy) |
|
238 |
end; |
|
239 |
||
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
240 |
fun mk_unfold_corec_terms_types fpTs Cs ns mss dtor_unfold_fun_Ts dtor_corec_fun_Ts lthy = |
51829 | 241 |
let |
242 |
(*avoid "'a itself" arguments in coiterators and corecursors*) |
|
243 |
fun repair_arity [0] = [1] |
|
244 |
| repair_arity ms = ms; |
|
245 |
||
246 |
fun project_corecT proj = |
|
247 |
let |
|
248 |
fun project (Type (s as @{type_name sum}, Ts as [T, U])) = |
|
249 |
if member (op =) fpTs T then proj (T, U) else Type (s, map project Ts) |
|
250 |
| project (Type (s, Ts)) = Type (s, map project Ts) |
|
251 |
| project T = T; |
|
252 |
in project end; |
|
253 |
||
254 |
fun unzip_corecT T = |
|
255 |
if exists_subtype_in fpTs T then [project_corecT fst T, project_corecT snd T] else [T]; |
|
256 |
||
51831 | 257 |
val p_Tss = map2 (fn n => replicate (Int.max (0, n - 1)) o mk_pred1T) ns Cs; |
51829 | 258 |
|
259 |
fun mk_types maybe_unzipT fun_Ts = |
|
260 |
let |
|
261 |
val f_sum_prod_Ts = map range_type fun_Ts; |
|
262 |
val f_prod_Tss = map2 dest_sumTN_balanced ns f_sum_prod_Ts; |
|
263 |
val f_Tsss = map2 (map2 dest_tupleT o repair_arity) mss f_prod_Tss; |
|
264 |
val f_Tssss = |
|
265 |
map2 (fn C => map (map (map (curry (op -->) C) o maybe_unzipT))) Cs f_Tsss; |
|
266 |
val q_Tssss = |
|
267 |
map (map (map (fn [_] => [] | [_, C] => [mk_pred1T (domain_type C)]))) f_Tssss; |
|
268 |
val pf_Tss = map3 flat_preds_predsss_gettersss p_Tss q_Tssss f_Tssss; |
|
269 |
in (q_Tssss, f_sum_prod_Ts, f_Tsss, f_Tssss, pf_Tss) end; |
|
270 |
||
51831 | 271 |
val (r_Tssss, g_sum_prod_Ts, g_Tsss, g_Tssss, pg_Tss) = mk_types single dtor_unfold_fun_Ts; |
272 |
val (s_Tssss, h_sum_prod_Ts, h_Tsss, h_Tssss, ph_Tss) = mk_types unzip_corecT dtor_corec_fun_Ts; |
|
273 |
||
51829 | 274 |
val (((cs, pss), gssss), lthy) = |
275 |
lthy |
|
276 |
|> mk_Frees "a" Cs |
|
277 |
||>> mk_Freess "p" p_Tss |
|
278 |
||>> mk_Freessss "g" g_Tssss; |
|
279 |
val rssss = map (map (map (fn [] => []))) r_Tssss; |
|
280 |
||
281 |
val hssss_hd = map2 (map2 (map2 (fn T :: _ => fn [g] => retype_free T g))) h_Tssss gssss; |
|
282 |
val ((sssss, hssss_tl), lthy) = |
|
283 |
lthy |
|
284 |
|> mk_Freessss "q" s_Tssss |
|
285 |
||>> mk_Freessss "h" (map (map (map tl)) h_Tssss); |
|
286 |
val hssss = map2 (map2 (map2 cons)) hssss_hd hssss_tl; |
|
51831 | 287 |
|
288 |
val cpss = map2 (map o rapp) cs pss; |
|
51829 | 289 |
|
51831 | 290 |
fun mk_terms qssss fssss = |
291 |
let |
|
292 |
val pfss = map3 flat_preds_predsss_gettersss pss qssss fssss; |
|
293 |
val cqssss = map2 (map o map o map o rapp) cs qssss; |
|
294 |
val cfssss = map2 (map o map o map o rapp) cs fssss; |
|
295 |
in (pfss, cqssss, cfssss) end; |
|
296 |
||
297 |
val unfold_terms = mk_terms rssss gssss; |
|
298 |
val corec_terms = mk_terms sssss hssss; |
|
299 |
in |
|
300 |
((cs, cpss, (unfold_terms, (g_sum_prod_Ts, g_Tsss, pg_Tss)), |
|
301 |
(corec_terms, (h_sum_prod_Ts, h_Tsss, ph_Tss))), lthy) |
|
302 |
end; |
|
51829 | 303 |
|
49536 | 304 |
fun mk_map live Ts Us t = |
305 |
let val (Type (_, Ts0), Type (_, Us0)) = strip_typeN (live + 1) (fastype_of t) |>> List.last in |
|
306 |
Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t |
|
307 |
end; |
|
308 |
||
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
309 |
fun mk_rel live Ts Us t = |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
310 |
let val [Type (_, Ts0), Type (_, Us0)] = binder_types (snd (strip_typeN live (fastype_of t))) in |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
311 |
Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
312 |
end; |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
313 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
314 |
fun liveness_of_fp_bnf n bnf = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
315 |
(case T_of_bnf bnf of |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
316 |
Type (_, Ts) => map (not o member (op =) (deads_of_bnf bnf)) Ts |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
317 |
| _ => replicate n false); |
49536 | 318 |
|
49124 | 319 |
fun cannot_merge_types () = error "Mutually recursive types must have the same type parameters"; |
49119 | 320 |
|
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
321 |
fun merge_type_arg T T' = if T = T' then T else cannot_merge_types (); |
49119 | 322 |
|
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
323 |
fun merge_type_args (As, As') = |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
324 |
if length As = length As' then map2 merge_type_arg As As' else cannot_merge_types (); |
49119 | 325 |
|
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
326 |
fun reassoc_conjs thm = |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
327 |
reassoc_conjs (thm RS @{thm conj_assoc[THEN iffD1]}) |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
328 |
handle THM _ => thm; |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
329 |
|
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
330 |
fun type_args_named_constrained_of ((((ncAs, _), _), _), _) = ncAs; |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
331 |
fun type_binding_of ((((_, b), _), _), _) = b; |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
332 |
fun map_binding_of (((_, (b, _)), _), _) = b; |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
333 |
fun rel_binding_of (((_, (_, b)), _), _) = b; |
49181 | 334 |
fun mixfix_of ((_, mx), _) = mx; |
49121 | 335 |
fun ctr_specs_of (_, ctr_specs) = ctr_specs; |
49119 | 336 |
|
49286 | 337 |
fun disc_of ((((disc, _), _), _), _) = disc; |
338 |
fun ctr_of ((((_, ctr), _), _), _) = ctr; |
|
339 |
fun args_of (((_, args), _), _) = args; |
|
340 |
fun defaults_of ((_, ds), _) = ds; |
|
49181 | 341 |
fun ctr_mixfix_of (_, mx) = mx; |
49119 | 342 |
|
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
343 |
fun build_map lthy build_arg (Type (s, Ts)) (Type (_, Us)) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
344 |
let |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
345 |
val bnf = the (bnf_of lthy s); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
346 |
val live = live_of_bnf bnf; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
347 |
val mapx = mk_map live Ts Us (map_of_bnf bnf); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
348 |
val TUs' = map dest_funT (fst (strip_typeN live (fastype_of mapx))); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
349 |
in Term.list_comb (mapx, map build_arg TUs') end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
350 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
351 |
fun build_rel_step lthy build_arg (Type (s, Ts)) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
352 |
let |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
353 |
val bnf = the (bnf_of lthy s); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
354 |
val live = live_of_bnf bnf; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
355 |
val rel = mk_rel live Ts Ts (rel_of_bnf bnf); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
356 |
val Ts' = map domain_type (fst (strip_typeN live (fastype_of rel))); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
357 |
in Term.list_comb (rel, map build_arg Ts') end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
358 |
|
51827 | 359 |
fun derive_induct_fold_rec_thms_for_types pre_bnfs ctor_folds0 ctor_recs0 ctor_induct ctor_fold_thms |
360 |
ctor_rec_thms nesting_bnfs nested_bnfs fpTs Cs As ctrss ctr_defss folds recs fold_defs rec_defs |
|
361 |
lthy = |
|
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
362 |
let |
51827 | 363 |
val ctr_Tsss = map (map (binder_types o fastype_of)) ctrss; |
364 |
||
51815 | 365 |
val nn = length pre_bnfs; |
51827 | 366 |
val ns = map length ctr_Tsss; |
367 |
val mss = map (map length) ctr_Tsss; |
|
368 |
val Css = map2 replicate ns Cs; |
|
51815 | 369 |
|
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
370 |
val pre_map_defs = map map_def_of_bnf pre_bnfs; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
371 |
val pre_set_defss = map set_defs_of_bnf pre_bnfs; |
51830 | 372 |
val nesting_map_ids'' = map (unfold_thms lthy @{thms id_def} o map_id_of_bnf) nesting_bnfs; |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
373 |
val nested_map_comp's = map map_comp'_of_bnf nested_bnfs; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
374 |
val nested_map_ids'' = map (unfold_thms lthy @{thms id_def} o map_id_of_bnf) nested_bnfs; |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
375 |
val nested_set_map's = maps set_map'_of_bnf nested_bnfs; |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
376 |
|
51816 | 377 |
val fp_b_names = map base_name_of_typ fpTs; |
51811 | 378 |
|
51827 | 379 |
val (_, ctor_fold_fun_Ts) = mk_fp_rec_like true As Cs ctor_folds0; |
380 |
val (_, ctor_rec_fun_Ts) = mk_fp_rec_like true As Cs ctor_recs0; |
|
381 |
||
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
382 |
val (((gss, _, _), (hss, _, _)), names_lthy0) = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
383 |
mk_fold_rec_terms_types fpTs Css ns mss ctor_fold_fun_Ts ctor_rec_fun_Ts lthy; |
51827 | 384 |
|
51832 | 385 |
val ((((ps, ps'), xsss), us'), names_lthy) = |
386 |
names_lthy0 |
|
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
387 |
|> mk_Frees' "P" (map mk_pred1T fpTs) |
51827 | 388 |
||>> mk_Freesss "x" ctr_Tsss |
51816 | 389 |
||>> Variable.variant_fixes fp_b_names; |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
390 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
391 |
val us = map2 (curry Free) us' fpTs; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
392 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
393 |
fun mk_sets_nested bnf = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
394 |
let |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
395 |
val Type (T_name, Us) = T_of_bnf bnf; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
396 |
val lives = lives_of_bnf bnf; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
397 |
val sets = sets_of_bnf bnf; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
398 |
fun mk_set U = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
399 |
(case find_index (curry (op =) U) lives of |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
400 |
~1 => Term.dummy |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
401 |
| i => nth sets i); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
402 |
in |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
403 |
(T_name, map mk_set Us) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
404 |
end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
405 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
406 |
val setss_nested = map mk_sets_nested nested_bnfs; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
407 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
408 |
val (induct_thms, induct_thm) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
409 |
let |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
410 |
fun mk_set Ts t = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
411 |
let val Type (_, Ts0) = domain_type (fastype_of t) in |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
412 |
Term.subst_atomic_types (Ts0 ~~ Ts) t |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
413 |
end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
414 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
415 |
fun mk_raw_prem_prems names_lthy (x as Free (s, T as Type (T_name, Ts0))) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
416 |
(case find_index (curry (op =) T) fpTs of |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
417 |
~1 => |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
418 |
(case AList.lookup (op =) setss_nested T_name of |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
419 |
NONE => [] |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
420 |
| SOME raw_sets0 => |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
421 |
let |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
422 |
val (Ts, raw_sets) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
423 |
split_list (filter (exists_subtype_in fpTs o fst) (Ts0 ~~ raw_sets0)); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
424 |
val sets = map (mk_set Ts0) raw_sets; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
425 |
val (ys, names_lthy') = names_lthy |> mk_Frees s Ts; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
426 |
val xysets = map (pair x) (ys ~~ sets); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
427 |
val ppremss = map (mk_raw_prem_prems names_lthy') ys; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
428 |
in |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
429 |
flat (map2 (map o apfst o cons) xysets ppremss) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
430 |
end) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
431 |
| kk => [([], (kk + 1, x))]) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
432 |
| mk_raw_prem_prems _ _ = []; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
433 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
434 |
fun close_prem_prem xs t = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
435 |
fold_rev Logic.all (map Free (drop (nn + length xs) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
436 |
(rev (Term.add_frees t (map dest_Free xs @ ps'))))) t; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
437 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
438 |
fun mk_prem_prem xs (xysets, (j, x)) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
439 |
close_prem_prem xs (Logic.list_implies (map (fn (x', (y, set)) => |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
440 |
HOLogic.mk_Trueprop (HOLogic.mk_mem (y, set $ x'))) xysets, |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
441 |
HOLogic.mk_Trueprop (nth ps (j - 1) $ x))); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
442 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
443 |
fun mk_raw_prem phi ctr ctr_Ts = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
444 |
let |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
445 |
val (xs, names_lthy') = names_lthy |> mk_Frees "x" ctr_Ts; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
446 |
val pprems = maps (mk_raw_prem_prems names_lthy') xs; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
447 |
in (xs, pprems, HOLogic.mk_Trueprop (phi $ Term.list_comb (ctr, xs))) end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
448 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
449 |
fun mk_prem (xs, raw_pprems, concl) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
450 |
fold_rev Logic.all xs (Logic.list_implies (map (mk_prem_prem xs) raw_pprems, concl)); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
451 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
452 |
val raw_premss = map3 (map2 o mk_raw_prem) ps ctrss ctr_Tsss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
453 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
454 |
val goal = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
455 |
Library.foldr (Logic.list_implies o apfst (map mk_prem)) (raw_premss, |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
456 |
HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj (map2 (curry (op $)) ps us))); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
457 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
458 |
val kksss = map (map (map (fst o snd) o #2)) raw_premss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
459 |
|
51814 | 460 |
val ctor_induct' = ctor_induct OF (map mk_sumEN_tupled_balanced mss); |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
461 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
462 |
val thm = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
463 |
Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} => |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
464 |
mk_induct_tac ctxt nn ns mss kksss (flat ctr_defss) ctor_induct' nested_set_map's |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
465 |
pre_set_defss) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
466 |
|> singleton (Proof_Context.export names_lthy lthy) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
467 |
|> Thm.close_derivation; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
468 |
in |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
469 |
`(conj_dests nn) thm |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
470 |
end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
471 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
472 |
val induct_cases = quasi_unambiguous_case_names (maps (map name_of_ctr) ctrss); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
473 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
474 |
val (fold_thmss, rec_thmss) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
475 |
let |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
476 |
val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
477 |
val gfolds = map (lists_bmoc gss) folds; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
478 |
val hrecs = map (lists_bmoc hss) recs; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
479 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
480 |
fun mk_goal fss frec_like xctr f xs fxs = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
481 |
fold_rev (fold_rev Logic.all) (xs :: fss) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
482 |
(mk_Trueprop_eq (frec_like $ xctr, Term.list_comb (f, fxs))); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
483 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
484 |
fun build_rec_like frec_likes (T, U) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
485 |
if T = U then |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
486 |
id_const T |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
487 |
else |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
488 |
(case find_index (curry (op =) T) fpTs of |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
489 |
~1 => build_map lthy (build_rec_like frec_likes) T U |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
490 |
| kk => nth frec_likes kk); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
491 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
492 |
val mk_U = typ_subst (map2 pair fpTs Cs); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
493 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
494 |
fun unzip_rec_likes frec_likes combine (x as Free (_, T)) = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
495 |
if exists_subtype_in fpTs T then |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
496 |
combine (x, build_rec_like frec_likes (T, mk_U T) $ x) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
497 |
else |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
498 |
([x], []); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
499 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
500 |
val gxsss = map (map (flat_rec (unzip_rec_likes gfolds (fn (_, t) => ([t], []))))) xsss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
501 |
val hxsss = map (map (flat_rec (unzip_rec_likes hrecs (pairself single)))) xsss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
502 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
503 |
val fold_goalss = map5 (map4 o mk_goal gss) gfolds xctrss gss xsss gxsss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
504 |
val rec_goalss = map5 (map4 o mk_goal hss) hrecs xctrss hss xsss hxsss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
505 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
506 |
val fold_tacss = |
51814 | 507 |
map2 (map o mk_rec_like_tac pre_map_defs [] nesting_map_ids'' fold_defs) ctor_fold_thms |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
508 |
ctr_defss; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
509 |
val rec_tacss = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
510 |
map2 (map o mk_rec_like_tac pre_map_defs nested_map_comp's |
51814 | 511 |
(nested_map_ids'' @ nesting_map_ids'') rec_defs) ctor_rec_thms ctr_defss; |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
512 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
513 |
fun prove goal tac = |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
514 |
Goal.prove_sorry lthy [] [] goal (tac o #context) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
515 |
|> Thm.close_derivation; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
516 |
in |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
517 |
(map2 (map2 prove) fold_goalss fold_tacss, map2 (map2 prove) rec_goalss rec_tacss) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
518 |
end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
519 |
|
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
520 |
val induct_case_names_attr = Attrib.internal (K (Rule_Cases.case_names induct_cases)); |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
521 |
in |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
522 |
((induct_thm, induct_thms, [induct_case_names_attr]), |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
523 |
(fold_thmss, code_simp_attrs), (rec_thmss, code_simp_attrs)) |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
524 |
end; |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
525 |
|
51829 | 526 |
fun derive_coinduct_unfold_corec_thms_for_types pre_bnfs dtor_unfolds0 dtor_corecs0 dtor_coinduct |
51814 | 527 |
dtor_strong_induct dtor_ctors dtor_unfold_thms dtor_corec_thms nesting_bnfs nested_bnfs fpTs Cs |
51840 | 528 |
As kss mss ns ctr_defss ctr_sugars unfolds corecs unfold_defs corec_defs lthy = |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
529 |
let |
51815 | 530 |
val nn = length pre_bnfs; |
531 |
||
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
532 |
val pre_map_defs = map map_def_of_bnf pre_bnfs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
533 |
val pre_rel_defs = map rel_def_of_bnf pre_bnfs; |
51830 | 534 |
val nesting_map_ids'' = map (unfold_thms lthy @{thms id_def} o map_id_of_bnf) nesting_bnfs; |
535 |
val nesting_rel_eqs = map rel_eq_of_bnf nesting_bnfs; |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
536 |
val nested_map_comp's = map map_comp'_of_bnf nested_bnfs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
537 |
val nested_map_comps'' = map ((fn thm => thm RS sym) o map_comp_of_bnf) nested_bnfs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
538 |
val nested_map_ids'' = map (unfold_thms lthy @{thms id_def} o map_id_of_bnf) nested_bnfs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
539 |
|
51816 | 540 |
val fp_b_names = map base_name_of_typ fpTs; |
51811 | 541 |
|
51829 | 542 |
val (_, dtor_unfold_fun_Ts) = mk_fp_rec_like false As Cs dtor_unfolds0; |
543 |
val (_, dtor_corec_fun_Ts) = mk_fp_rec_like false As Cs dtor_corecs0; |
|
544 |
||
51840 | 545 |
val ctrss = map (map (mk_ctr As) o #ctrs) ctr_sugars; |
546 |
val discss = map (map (mk_disc_or_sel As) o #discs) ctr_sugars; |
|
547 |
val selsss = map (map (map (mk_disc_or_sel As)) o #selss) ctr_sugars; |
|
548 |
val exhausts = map #exhaust ctr_sugars; |
|
549 |
val disc_thmsss = map #disc_thmss ctr_sugars; |
|
550 |
val discIss = map #discIs ctr_sugars; |
|
551 |
val sel_thmsss = map #sel_thmss ctr_sugars; |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
552 |
|
51831 | 553 |
val ((cs, cpss, ((pgss, crssss, cgssss), _), ((phss, csssss, chssss), _)), names_lthy0) = |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
554 |
mk_unfold_corec_terms_types fpTs Cs ns mss dtor_unfold_fun_Ts dtor_corec_fun_Ts lthy; |
51831 | 555 |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
556 |
val (((rs, us'), vs'), names_lthy) = |
51831 | 557 |
names_lthy0 |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
558 |
|> mk_Frees "R" (map (fn T => mk_pred2T T T) fpTs) |
51816 | 559 |
||>> Variable.variant_fixes fp_b_names |
560 |
||>> Variable.variant_fixes (map (suffix "'") fp_b_names); |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
561 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
562 |
val us = map2 (curry Free) us' fpTs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
563 |
val udiscss = map2 (map o rapp) us discss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
564 |
val uselsss = map2 (map o map o rapp) us selsss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
565 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
566 |
val vs = map2 (curry Free) vs' fpTs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
567 |
val vdiscss = map2 (map o rapp) vs discss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
568 |
val vselsss = map2 (map o map o rapp) vs selsss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
569 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
570 |
val ((coinduct_thms, coinduct_thm), (strong_coinduct_thms, strong_coinduct_thm)) = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
571 |
let |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
572 |
val uvrs = map3 (fn r => fn u => fn v => r $ u $ v) rs us vs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
573 |
val uv_eqs = map2 (curry HOLogic.mk_eq) us vs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
574 |
val strong_rs = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
575 |
map4 (fn u => fn v => fn uvr => fn uv_eq => |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
576 |
fold_rev Term.lambda [u, v] (HOLogic.mk_disj (uvr, uv_eq))) us vs uvrs uv_eqs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
577 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
578 |
fun build_rel rs' T = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
579 |
(case find_index (curry (op =) T) fpTs of |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
580 |
~1 => |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
581 |
if exists_subtype_in fpTs T then build_rel_step lthy (build_rel rs') T |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
582 |
else HOLogic.eq_const T |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
583 |
| kk => nth rs' kk); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
584 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
585 |
fun build_rel_app rs' usel vsel = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
586 |
fold rapp [usel, vsel] (build_rel rs' (fastype_of usel)); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
587 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
588 |
fun mk_prem_ctr_concls rs' n k udisc usels vdisc vsels = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
589 |
(if k = n then [] else [HOLogic.mk_eq (udisc, vdisc)]) @ |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
590 |
(if null usels then |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
591 |
[] |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
592 |
else |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
593 |
[Library.foldr HOLogic.mk_imp (if n = 1 then [] else [udisc, vdisc], |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
594 |
Library.foldr1 HOLogic.mk_conj (map2 (build_rel_app rs') usels vsels))]); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
595 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
596 |
fun mk_prem_concl rs' n udiscs uselss vdiscs vselss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
597 |
Library.foldr1 HOLogic.mk_conj |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
598 |
(flat (map5 (mk_prem_ctr_concls rs' n) (1 upto n) udiscs uselss vdiscs vselss)) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
599 |
handle List.Empty => @{term True}; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
600 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
601 |
fun mk_prem rs' uvr u v n udiscs uselss vdiscs vselss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
602 |
fold_rev Logic.all [u, v] (Logic.mk_implies (HOLogic.mk_Trueprop uvr, |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
603 |
HOLogic.mk_Trueprop (mk_prem_concl rs' n udiscs uselss vdiscs vselss))); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
604 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
605 |
val concl = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
606 |
HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
607 |
(map3 (fn uvr => fn u => fn v => HOLogic.mk_imp (uvr, HOLogic.mk_eq (u, v))) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
608 |
uvrs us vs)); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
609 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
610 |
fun mk_goal rs' = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
611 |
Logic.list_implies (map8 (mk_prem rs') uvrs us vs ns udiscss uselsss vdiscss vselsss, |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
612 |
concl); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
613 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
614 |
val goal = mk_goal rs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
615 |
val strong_goal = mk_goal strong_rs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
616 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
617 |
fun prove dtor_coinduct' goal = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
618 |
Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} => |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
619 |
mk_coinduct_tac ctxt nesting_rel_eqs nn ns dtor_coinduct' pre_rel_defs dtor_ctors |
51819 | 620 |
exhausts ctr_defss disc_thmsss sel_thmsss) |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
621 |
|> singleton (Proof_Context.export names_lthy lthy) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
622 |
|> Thm.close_derivation; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
623 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
624 |
fun postproc nn thm = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
625 |
Thm.permute_prems 0 nn |
51828 | 626 |
(if nn = 1 then thm RS mp else funpow nn (fn thm => reassoc_conjs (thm RS mp_conj)) thm) |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
627 |
|> Drule.zero_var_indexes |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
628 |
|> `(conj_dests nn); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
629 |
in |
51814 | 630 |
(postproc nn (prove dtor_coinduct goal), postproc nn (prove dtor_strong_induct strong_goal)) |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
631 |
end; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
632 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
633 |
fun mk_coinduct_concls ms discs ctrs = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
634 |
let |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
635 |
fun mk_disc_concl disc = [name_of_disc disc]; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
636 |
fun mk_ctr_concl 0 _ = [] |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
637 |
| mk_ctr_concl _ ctor = [name_of_ctr ctor]; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
638 |
val disc_concls = map mk_disc_concl (fst (split_last discs)) @ [[]]; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
639 |
val ctr_concls = map2 mk_ctr_concl ms ctrs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
640 |
in |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
641 |
flat (map2 append disc_concls ctr_concls) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
642 |
end; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
643 |
|
51816 | 644 |
val coinduct_cases = quasi_unambiguous_case_names (map (prefix EqN) fp_b_names); |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
645 |
val coinduct_conclss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
646 |
map3 (quasi_unambiguous_case_names ooo mk_coinduct_concls) mss discss ctrss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
647 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
648 |
fun mk_maybe_not pos = not pos ? HOLogic.mk_not; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
649 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
650 |
val gunfolds = map (lists_bmoc pgss) unfolds; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
651 |
val hcorecs = map (lists_bmoc phss) corecs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
652 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
653 |
val (unfold_thmss, corec_thmss, safe_unfold_thmss, safe_corec_thmss) = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
654 |
let |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
655 |
fun mk_goal pfss c cps fcorec_like n k ctr m cfs' = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
656 |
fold_rev (fold_rev Logic.all) ([c] :: pfss) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
657 |
(Logic.list_implies (seq_conds (HOLogic.mk_Trueprop oo mk_maybe_not) n k cps, |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
658 |
mk_Trueprop_eq (fcorec_like $ c, Term.list_comb (ctr, take m cfs')))); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
659 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
660 |
fun build_corec_like fcorec_likes (T, U) = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
661 |
if T = U then |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
662 |
id_const T |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
663 |
else |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
664 |
(case find_index (curry (op =) U) fpTs of |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
665 |
~1 => build_map lthy (build_corec_like fcorec_likes) T U |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
666 |
| kk => nth fcorec_likes kk); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
667 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
668 |
val mk_U = typ_subst (map2 pair Cs fpTs); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
669 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
670 |
fun intr_corec_likes fcorec_likes [] [cf] = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
671 |
let val T = fastype_of cf in |
51828 | 672 |
if exists_subtype_in Cs T then build_corec_like fcorec_likes (T, mk_U T) $ cf else cf |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
673 |
end |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
674 |
| intr_corec_likes fcorec_likes [cq] [cf, cf'] = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
675 |
mk_If cq (intr_corec_likes fcorec_likes [] [cf]) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
676 |
(intr_corec_likes fcorec_likes [] [cf']); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
677 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
678 |
val crgsss = map2 (map2 (map2 (intr_corec_likes gunfolds))) crssss cgssss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
679 |
val cshsss = map2 (map2 (map2 (intr_corec_likes hcorecs))) csssss chssss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
680 |
|
51828 | 681 |
val unfold_goalss = map8 (map4 oooo mk_goal pgss) cs cpss gunfolds ns kss ctrss mss crgsss; |
682 |
val corec_goalss = map8 (map4 oooo mk_goal phss) cs cpss hcorecs ns kss ctrss mss cshsss; |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
683 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
684 |
fun mk_map_if_distrib bnf = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
685 |
let |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
686 |
val mapx = map_of_bnf bnf; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
687 |
val live = live_of_bnf bnf; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
688 |
val ((Ts, T), U) = strip_typeN (live + 1) (fastype_of mapx) |>> split_last; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
689 |
val fs = Variable.variant_frees lthy [mapx] (map (pair "f") Ts); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
690 |
val t = Term.list_comb (mapx, map (Var o apfst (rpair 0)) fs); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
691 |
in |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
692 |
Drule.instantiate' (map (SOME o certifyT lthy) [U, T]) [SOME (certify lthy t)] |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
693 |
@{thm if_distrib} |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
694 |
end; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
695 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
696 |
val nested_map_if_distribs = map mk_map_if_distrib nested_bnfs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
697 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
698 |
val unfold_tacss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
699 |
map3 (map oo mk_corec_like_tac unfold_defs [] [] nesting_map_ids'' []) |
51814 | 700 |
dtor_unfold_thms pre_map_defs ctr_defss; |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
701 |
val corec_tacss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
702 |
map3 (map oo mk_corec_like_tac corec_defs nested_map_comps'' nested_map_comp's |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
703 |
(nested_map_ids'' @ nesting_map_ids'') nested_map_if_distribs) |
51814 | 704 |
dtor_corec_thms pre_map_defs ctr_defss; |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
705 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
706 |
fun prove goal tac = |
51815 | 707 |
Goal.prove_sorry lthy [] [] goal (tac o #context) |
708 |
|> Thm.close_derivation; |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
709 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
710 |
val unfold_thmss = map2 (map2 prove) unfold_goalss unfold_tacss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
711 |
val corec_thmss = map2 (map2 prove) corec_goalss corec_tacss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
712 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
713 |
val filter_safesss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
714 |
map2 (map_filter (fn (safes, thm) => if forall I safes then SOME thm else NONE) oo |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
715 |
curry (op ~~)) (map2 (map2 (map2 (member (op =)))) cgssss crgsss); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
716 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
717 |
val safe_unfold_thmss = filter_safesss unfold_thmss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
718 |
val safe_corec_thmss = filter_safesss corec_thmss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
719 |
in |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
720 |
(unfold_thmss, corec_thmss, safe_unfold_thmss, safe_corec_thmss) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
721 |
end; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
722 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
723 |
val (disc_unfold_iff_thmss, disc_corec_iff_thmss) = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
724 |
let |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
725 |
fun mk_goal c cps fcorec_like n k disc = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
726 |
mk_Trueprop_eq (disc $ (fcorec_like $ c), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
727 |
if n = 1 then @{const True} |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
728 |
else Library.foldr1 HOLogic.mk_conj (seq_conds mk_maybe_not n k cps)); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
729 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
730 |
val unfold_goalss = map6 (map2 oooo mk_goal) cs cpss gunfolds ns kss discss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
731 |
val corec_goalss = map6 (map2 oooo mk_goal) cs cpss hcorecs ns kss discss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
732 |
|
51828 | 733 |
fun mk_case_split' cp = Drule.instantiate' [] [SOME (certify lthy cp)] @{thm case_split}; |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
734 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
735 |
val case_splitss' = map (map mk_case_split') cpss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
736 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
737 |
val unfold_tacss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
738 |
map3 (map oo mk_disc_corec_like_iff_tac) case_splitss' unfold_thmss disc_thmsss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
739 |
val corec_tacss = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
740 |
map3 (map oo mk_disc_corec_like_iff_tac) case_splitss' corec_thmss disc_thmsss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
741 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
742 |
fun prove goal tac = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
743 |
Goal.prove_sorry lthy [] [] goal (tac o #context) |
51829 | 744 |
|> singleton (Proof_Context.export names_lthy lthy) |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
745 |
|> Thm.close_derivation; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
746 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
747 |
fun proves [_] [_] = [] |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
748 |
| proves goals tacs = map2 prove goals tacs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
749 |
in |
51828 | 750 |
(map2 proves unfold_goalss unfold_tacss, map2 proves corec_goalss corec_tacss) |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
751 |
end; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
752 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
753 |
val is_triv_discI = is_triv_implies orf is_concl_refl; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
754 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
755 |
fun mk_disc_corec_like_thms corec_likes discIs = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
756 |
map (op RS) (filter_out (is_triv_discI o snd) (corec_likes ~~ discIs)); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
757 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
758 |
val disc_unfold_thmss = map2 mk_disc_corec_like_thms unfold_thmss discIss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
759 |
val disc_corec_thmss = map2 mk_disc_corec_like_thms corec_thmss discIss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
760 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
761 |
fun mk_sel_corec_like_thm corec_like_thm sel sel_thm = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
762 |
let |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
763 |
val (domT, ranT) = dest_funT (fastype_of sel); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
764 |
val arg_cong' = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
765 |
Drule.instantiate' (map (SOME o certifyT lthy) [domT, ranT]) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
766 |
[NONE, NONE, SOME (certify lthy sel)] arg_cong |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
767 |
|> Thm.varifyT_global; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
768 |
val sel_thm' = sel_thm RSN (2, trans); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
769 |
in |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
770 |
corec_like_thm RS arg_cong' RS sel_thm' |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
771 |
end; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
772 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
773 |
fun mk_sel_corec_like_thms corec_likess = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
774 |
map3 (map3 (map2 o mk_sel_corec_like_thm)) corec_likess selsss sel_thmsss |> map flat; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
775 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
776 |
val sel_unfold_thmss = mk_sel_corec_like_thms unfold_thmss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
777 |
val sel_corec_thmss = mk_sel_corec_like_thms corec_thmss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
778 |
|
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
779 |
val coinduct_consumes_attr = Attrib.internal (K (Rule_Cases.consumes nn)); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
780 |
val coinduct_case_names_attr = Attrib.internal (K (Rule_Cases.case_names coinduct_cases)); |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
781 |
val coinduct_case_concl_attrs = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
782 |
map2 (fn casex => fn concls => |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
783 |
Attrib.internal (K (Rule_Cases.case_conclusion (casex, concls)))) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
784 |
coinduct_cases coinduct_conclss; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
785 |
val coinduct_case_attrs = |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
786 |
coinduct_consumes_attr :: coinduct_case_names_attr :: coinduct_case_concl_attrs; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
787 |
in |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
788 |
((coinduct_thm, coinduct_thms, strong_coinduct_thm, strong_coinduct_thms, coinduct_case_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
789 |
(unfold_thmss, corec_thmss, []), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
790 |
(safe_unfold_thmss, safe_corec_thmss), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
791 |
(disc_unfold_thmss, disc_corec_thmss, simp_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
792 |
(disc_unfold_iff_thmss, disc_corec_iff_thmss, simp_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
793 |
(sel_unfold_thmss, sel_corec_thmss, simp_attrs)) |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
794 |
end; |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
795 |
|
49633 | 796 |
fun define_datatypes prepare_constraint prepare_typ prepare_term lfp construct_fp |
797 |
(wrap_opts as (no_dests, rep_compat), specs) no_defs_lthy0 = |
|
49112 | 798 |
let |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
799 |
(* TODO: sanity checks on arguments *) |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
800 |
|
49286 | 801 |
val _ = if not lfp andalso no_dests then error "Cannot define destructor-less codatatypes" |
49278 | 802 |
else (); |
803 |
||
49633 | 804 |
fun qualify mandatory fp_b_name = |
805 |
Binding.qualify mandatory fp_b_name o (rep_compat ? Binding.qualify false rep_compat_prefix); |
|
806 |
||
49367 | 807 |
val nn = length specs; |
49361
cc1d39529dd1
derive induction via backward proof, to ensure that the premises are in the right order for constructors like "X x y x" where x and y are mutually recursive
blanchet
parents:
49342
diff
changeset
|
808 |
val fp_bs = map type_binding_of specs; |
49498 | 809 |
val fp_b_names = map Binding.name_of fp_bs; |
810 |
val fp_common_name = mk_common_name fp_b_names; |
|
51758 | 811 |
val map_bs = map map_binding_of specs; |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
812 |
val rel_bs = map rel_binding_of specs; |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
813 |
|
51758 | 814 |
fun prepare_type_arg (_, (ty, c)) = |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
815 |
let val TFree (s, _) = prepare_typ no_defs_lthy0 ty in |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
816 |
TFree (s, prepare_constraint no_defs_lthy0 c) |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
817 |
end; |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
818 |
|
51758 | 819 |
val Ass0 = map (map prepare_type_arg o type_args_named_constrained_of) specs; |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
820 |
val unsorted_Ass0 = map (map (resort_tfree HOLogic.typeS)) Ass0; |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
821 |
val unsorted_As = Library.foldr1 merge_type_args unsorted_Ass0; |
51758 | 822 |
val set_bss = map (map fst o type_args_named_constrained_of) specs; |
49119 | 823 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
824 |
val (((Bs0, Cs), Xs), no_defs_lthy) = |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
825 |
no_defs_lthy0 |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
826 |
|> fold (Variable.declare_typ o resort_tfree dummyS) unsorted_As |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
827 |
|> mk_TFrees (length unsorted_As) |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
828 |
||>> mk_TFrees nn |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
829 |
||>> apfst (map TFree) o |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
830 |
variant_types (map (prefix "'") fp_b_names) (replicate nn HOLogic.typeS); |
49119 | 831 |
|
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
832 |
(* TODO: cleaner handling of fake contexts, without "background_theory" *) |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
833 |
(*the "perhaps o try" below helps gracefully handles the case where the new type is defined in a |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
834 |
locale and shadows an existing global type*) |
51768 | 835 |
|
51769
5c657ca97d99
simplified code -- no need for two attempts, the error we get from mixfix the first time is good (and better to get than a parse error in the specification because the user tries to use a mixfix that silently failed)
blanchet
parents:
51768
diff
changeset
|
836 |
fun add_fake_type spec = |
51768 | 837 |
Sign.add_type no_defs_lthy (type_binding_of spec, |
51769
5c657ca97d99
simplified code -- no need for two attempts, the error we get from mixfix the first time is good (and better to get than a parse error in the specification because the user tries to use a mixfix that silently failed)
blanchet
parents:
51768
diff
changeset
|
838 |
length (type_args_named_constrained_of spec), mixfix_of spec); |
51768 | 839 |
|
51769
5c657ca97d99
simplified code -- no need for two attempts, the error we get from mixfix the first time is good (and better to get than a parse error in the specification because the user tries to use a mixfix that silently failed)
blanchet
parents:
51768
diff
changeset
|
840 |
val fake_thy = Theory.copy #> fold add_fake_type specs; |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
841 |
val fake_lthy = Proof_Context.background_theory fake_thy no_defs_lthy; |
49119 | 842 |
|
49182
b8517107ffc5
read the real types off the constant types, rather than using the fake parser types (second step of sugar localization)
blanchet
parents:
49181
diff
changeset
|
843 |
fun mk_fake_T b = |
49121 | 844 |
Type (fst (Term.dest_Type (Proof_Context.read_type_name fake_lthy true (Binding.name_of b))), |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
845 |
unsorted_As); |
49121 | 846 |
|
49302
f5bd87aac224
added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents:
49300
diff
changeset
|
847 |
val fake_Ts = map mk_fake_T fp_bs; |
49121 | 848 |
|
49181 | 849 |
val mixfixes = map mixfix_of specs; |
49119 | 850 |
|
49302
f5bd87aac224
added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents:
49300
diff
changeset
|
851 |
val _ = (case duplicates Binding.eq_name fp_bs of [] => () |
49119 | 852 |
| b :: _ => error ("Duplicate type name declaration " ^ quote (Binding.name_of b))); |
853 |
||
49121 | 854 |
val ctr_specss = map ctr_specs_of specs; |
49119 | 855 |
|
49336 | 856 |
val disc_bindingss = map (map disc_of) ctr_specss; |
857 |
val ctr_bindingss = |
|
49633 | 858 |
map2 (fn fp_b_name => map (qualify false fp_b_name o ctr_of)) fp_b_names ctr_specss; |
49121 | 859 |
val ctr_argsss = map (map args_of) ctr_specss; |
49181 | 860 |
val ctr_mixfixess = map (map ctr_mixfix_of) ctr_specss; |
49119 | 861 |
|
49336 | 862 |
val sel_bindingsss = map (map (map fst)) ctr_argsss; |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
863 |
val fake_ctr_Tsss0 = map (map (map (prepare_typ fake_lthy o snd))) ctr_argsss; |
49286 | 864 |
val raw_sel_defaultsss = map (map defaults_of) ctr_specss; |
865 |
||
49308
6190b701e4f4
reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents:
49302
diff
changeset
|
866 |
val (As :: _) :: fake_ctr_Tsss = |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
867 |
burrow (burrow (Syntax.check_typs fake_lthy)) (Ass0 :: fake_ctr_Tsss0); |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
868 |
|
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
869 |
val _ = (case duplicates (op =) unsorted_As of [] => () |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
870 |
| A :: _ => error ("Duplicate type parameter " ^ |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
871 |
quote (Syntax.string_of_typ no_defs_lthy A))); |
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
872 |
|
49183
0cc46e2dee7e
careful about constructor types w.r.t. fake context (third step of localization)
blanchet
parents:
49182
diff
changeset
|
873 |
val rhs_As' = fold (fold (fold Term.add_tfreesT)) fake_ctr_Tsss []; |
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
874 |
val _ = (case subtract (op =) (map dest_TFree As) rhs_As' of |
49165 | 875 |
[] => () |
49342 | 876 |
| A' :: _ => error ("Extra type variable on right-hand side: " ^ |
49204 | 877 |
quote (Syntax.string_of_typ no_defs_lthy (TFree A')))); |
49165 | 878 |
|
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
879 |
fun eq_fpT_check (T as Type (s, Us)) (Type (s', Us')) = |
49146 | 880 |
s = s' andalso (Us = Us' orelse error ("Illegal occurrence of recursive type " ^ |
881 |
quote (Syntax.string_of_typ fake_lthy T))) |
|
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
882 |
| eq_fpT_check _ _ = false; |
49146 | 883 |
|
49204 | 884 |
fun freeze_fp (T as Type (s, Us)) = |
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
885 |
(case find_index (eq_fpT_check T) fake_Ts of |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
886 |
~1 => Type (s, map freeze_fp Us) |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
887 |
| kk => nth Xs kk) |
49204 | 888 |
| freeze_fp T = T; |
49121 | 889 |
|
49536 | 890 |
val ctr_TsssXs = map (map (map freeze_fp)) fake_ctr_Tsss; |
891 |
val ctr_sum_prod_TsXs = map (mk_sumTN_balanced o map HOLogic.mk_tupleT) ctr_TsssXs; |
|
49119 | 892 |
|
49298
36e551d3af3b
support for sort constraints in new (co)data commands
blanchet
parents:
49297
diff
changeset
|
893 |
val fp_eqs = |
49536 | 894 |
map dest_TFree Xs ~~ map (Term.typ_subst_atomic (As ~~ unsorted_As)) ctr_sum_prod_TsXs; |
49121 | 895 |
|
51839 | 896 |
val (pre_bnfs, (fp_res as {bnfs = fp_bnfs as any_fp_bnf :: _, ctors = ctors0, dtors = dtors0, |
51805 | 897 |
folds = fp_folds0, recs = fp_recs0, induct = fp_induct, strong_induct = fp_strong_induct, |
898 |
dtor_ctors, ctor_dtors, ctor_injects, map_thms = fp_map_thms, set_thmss = fp_set_thmss, |
|
899 |
rel_thms = fp_rel_thms, fold_thms = fp_fold_thms, rec_thms = fp_rec_thms}, lthy)) = |
|
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
900 |
fp_bnf construct_fp fp_bs mixfixes map_bs rel_bs set_bss (map dest_TFree unsorted_As) fp_eqs |
51758 | 901 |
no_defs_lthy0; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
902 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
903 |
val timer = time (Timer.startRealTimer ()); |
49121 | 904 |
|
49363 | 905 |
fun add_nesty_bnf_names Us = |
49226 | 906 |
let |
907 |
fun add (Type (s, Ts)) ss = |
|
908 |
let val (needs, ss') = fold_map add Ts ss in |
|
909 |
if exists I needs then (true, insert (op =) s ss') else (false, ss') |
|
910 |
end |
|
49363 | 911 |
| add T ss = (member (op =) Us T, ss); |
49226 | 912 |
in snd oo add end; |
913 |
||
49363 | 914 |
fun nesty_bnfs Us = |
49536 | 915 |
map_filter (bnf_of lthy) (fold (fold (fold (add_nesty_bnf_names Us))) ctr_TsssXs []); |
49363 | 916 |
|
917 |
val nesting_bnfs = nesty_bnfs As; |
|
49536 | 918 |
val nested_bnfs = nesty_bnfs Xs; |
49226 | 919 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
920 |
val pre_map_defs = map map_def_of_bnf pre_bnfs; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
921 |
val pre_set_defss = map set_defs_of_bnf pre_bnfs; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
922 |
val pre_rel_defs = map rel_def_of_bnf pre_bnfs; |
51830 | 923 |
val nesting_set_map's = maps set_map'_of_bnf nesting_bnfs; |
51766
f19a4d0ab1bf
renamed "set_natural" to "set_map", reflecting {Bl,Po,Tr} concensus
blanchet
parents:
51758
diff
changeset
|
924 |
val nested_set_map's = maps set_map'_of_bnf nested_bnfs; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
925 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
926 |
val live = live_of_bnf any_fp_bnf; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
927 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
928 |
val Bs = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
929 |
map3 (fn alive => fn A as TFree (_, S) => fn B => if alive then resort_tfree S B else A) |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
930 |
(liveness_of_fp_bnf (length As) any_fp_bnf) As Bs0; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
931 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
932 |
val B_ify = Term.typ_subst_atomic (As ~~ Bs); |
49167 | 933 |
|
49501 | 934 |
val ctors = map (mk_ctor As) ctors0; |
935 |
val dtors = map (mk_dtor As) dtors0; |
|
49124 | 936 |
|
49501 | 937 |
val fpTs = map (domain_type o fastype_of) dtors; |
49362
1271aca16aed
make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents:
49361
diff
changeset
|
938 |
|
51780 | 939 |
fun massage_simple_notes base = |
940 |
filter_out (null o #2) |
|
941 |
#> map (fn (thmN, thms, attrs) => |
|
942 |
((qualify true base (Binding.name thmN), attrs), [(thms, [])])); |
|
943 |
||
944 |
val massage_multi_notes = |
|
945 |
maps (fn (thmN, thmss, attrs) => |
|
946 |
if forall null thmss then |
|
947 |
[] |
|
948 |
else |
|
949 |
map3 (fn fp_b_name => fn Type (T_name, _) => fn thms => |
|
950 |
((qualify true fp_b_name (Binding.name thmN), attrs T_name), |
|
951 |
[(thms, [])])) fp_b_names fpTs thmss); |
|
952 |
||
49536 | 953 |
val ctr_Tsss = map (map (map (Term.typ_subst_atomic (Xs ~~ fpTs)))) ctr_TsssXs; |
49203 | 954 |
val ns = map length ctr_Tsss; |
49212 | 955 |
val kss = map (fn n => 1 upto n) ns; |
49203 | 956 |
val mss = map (map length) ctr_Tsss; |
957 |
val Css = map2 replicate ns Cs; |
|
958 |
||
51827 | 959 |
val (fp_folds, fp_fold_fun_Ts) = mk_fp_rec_like lfp As Cs fp_folds0; |
960 |
val (fp_recs, fp_rec_fun_Ts) = mk_fp_rec_like lfp As Cs fp_recs0; |
|
49210 | 961 |
|
51827 | 962 |
val (((fold_only, rec_only), |
51830 | 963 |
(cs, cpss, unfold_only as ((_, crssss, cgssss), (_, g_Tsss, _)), |
964 |
corec_only as ((_, csssss, chssss), (_, h_Tsss, _)))), _) = |
|
49208 | 965 |
if lfp then |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
966 |
mk_fold_rec_terms_types fpTs Css ns mss fp_fold_fun_Ts fp_rec_fun_Ts lthy |
51832 | 967 |
|>> rpair ([], [], (([], [], []), ([], [], [])), (([], [], []), ([], [], []))) |
49208 | 968 |
else |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
969 |
mk_unfold_corec_terms_types fpTs Cs ns mss fp_fold_fun_Ts fp_rec_fun_Ts lthy |
51831 | 970 |
|>> pair (([], [], []), ([], [], [])); |
49210 | 971 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
972 |
fun define_ctrs_case_for_type (((((((((((((((((((((((((fp_bnf, fp_b), fpT), C), ctor), dtor), |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
973 |
fp_fold), fp_rec), ctor_dtor), dtor_ctor), ctor_inject), pre_map_def), pre_set_defs), |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
974 |
pre_rel_def), fp_map_thm), fp_set_thms), fp_rel_thm), n), ks), ms), ctr_bindings), |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
975 |
ctr_mixfixes), ctr_Tss), disc_bindings), sel_bindingss), raw_sel_defaultss) no_defs_lthy = |
49176 | 976 |
let |
49498 | 977 |
val fp_b_name = Binding.name_of fp_b; |
978 |
||
49501 | 979 |
val dtorT = domain_type (fastype_of ctor); |
49210 | 980 |
val ctr_prod_Ts = map HOLogic.mk_tupleT ctr_Tss; |
49255
2ecc533d6697
use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents:
49254
diff
changeset
|
981 |
val ctr_sum_prod_T = mk_sumTN_balanced ctr_prod_Ts; |
49134
846264f80f16
optionally provide extra dead variables to the FP constructions
blanchet
parents:
49130
diff
changeset
|
982 |
val case_Ts = map (fn Ts => Ts ---> C) ctr_Tss; |
49119 | 983 |
|
49593 | 984 |
val (((((w, fs), xss), yss), u'), names_lthy) = |
49204 | 985 |
no_defs_lthy |
49501 | 986 |
|> yield_singleton (mk_Frees "w") dtorT |
49176 | 987 |
||>> mk_Frees "f" case_Ts |
49370 | 988 |
||>> mk_Freess "x" ctr_Tss |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
989 |
||>> mk_Freess "y" (map (map B_ify) ctr_Tss) |
49498 | 990 |
||>> yield_singleton Variable.variant_fixes fp_b_name; |
49370 | 991 |
|
49498 | 992 |
val u = Free (u', fpT); |
49121 | 993 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
994 |
val tuple_xs = map HOLogic.mk_tuple xss; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
995 |
val tuple_ys = map HOLogic.mk_tuple yss; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
996 |
|
49129 | 997 |
val ctr_rhss = |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
998 |
map3 (fn k => fn xs => fn tuple_x => fold_rev Term.lambda xs (ctor $ |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
999 |
mk_InN_balanced ctr_sum_prod_T n tuple_x k)) ks xss tuple_xs; |
49121 | 1000 |
|
49633 | 1001 |
val case_binding = qualify false fp_b_name (Binding.suffix_name ("_" ^ caseN) fp_b); |
49129 | 1002 |
|
49134
846264f80f16
optionally provide extra dead variables to the FP constructions
blanchet
parents:
49130
diff
changeset
|
1003 |
val case_rhs = |
49498 | 1004 |
fold_rev Term.lambda (fs @ [u]) |
49501 | 1005 |
(mk_sum_caseN_balanced (map2 mk_uncurried_fun fs xss) $ (dtor $ u)); |
49129 | 1006 |
|
49201 | 1007 |
val ((raw_case :: raw_ctrs, raw_case_def :: raw_ctr_defs), (lthy', lthy)) = no_defs_lthy |
49169 | 1008 |
|> apfst split_list o fold_map3 (fn b => fn mx => fn rhs => |
49302
f5bd87aac224
added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents:
49300
diff
changeset
|
1009 |
Local_Theory.define ((b, mx), ((Thm.def_binding b, []), rhs)) #>> apsnd snd) |
49336 | 1010 |
(case_binding :: ctr_bindings) (NoSyn :: ctr_mixfixes) (case_rhs :: ctr_rhss) |
49121 | 1011 |
||> `Local_Theory.restore; |
1012 |
||
1013 |
val phi = Proof_Context.export_morphism lthy lthy'; |
|
1014 |
||
1015 |
val ctr_defs = map (Morphism.thm phi) raw_ctr_defs; |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1016 |
val ctr_defs' = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1017 |
map2 (fn m => fn def => mk_unabs_def m (def RS meta_eq_to_obj_eq)) ms ctr_defs; |
49130
3c26e17b2849
implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents:
49129
diff
changeset
|
1018 |
val case_def = Morphism.thm phi raw_case_def; |
3c26e17b2849
implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents:
49129
diff
changeset
|
1019 |
|
49203 | 1020 |
val ctrs0 = map (Morphism.term phi) raw_ctrs; |
1021 |
val casex0 = Morphism.term phi raw_case; |
|
1022 |
||
1023 |
val ctrs = map (mk_ctr As) ctrs0; |
|
49121 | 1024 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1025 |
fun wrap lthy = |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
49121
diff
changeset
|
1026 |
let |
50170 | 1027 |
fun exhaust_tac {context = ctxt, prems = _} = |
49135 | 1028 |
let |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1029 |
val ctor_iff_dtor_thm = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1030 |
let |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1031 |
val goal = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1032 |
fold_rev Logic.all [w, u] |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1033 |
(mk_Trueprop_eq (HOLogic.mk_eq (u, ctor $ w), HOLogic.mk_eq (dtor $ u, w))); |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1034 |
in |
51551 | 1035 |
Goal.prove_sorry lthy [] [] goal (fn {context = ctxt, ...} => |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1036 |
mk_ctor_iff_dtor_tac ctxt (map (SOME o certifyT lthy) [dtorT, fpT]) |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1037 |
(certify lthy ctor) (certify lthy dtor) ctor_dtor dtor_ctor) |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1038 |
|> Thm.close_derivation |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1039 |
|> Morphism.thm phi |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1040 |
end; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1041 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1042 |
val sumEN_thm' = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1043 |
unfold_thms lthy @{thms all_unit_eq} |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1044 |
(Drule.instantiate' (map (SOME o certifyT lthy) ctr_prod_Ts) [] |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1045 |
(mk_sumEN_balanced n)) |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1046 |
|> Morphism.thm phi; |
49135 | 1047 |
in |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1048 |
mk_exhaust_tac ctxt n ctr_defs ctor_iff_dtor_thm sumEN_thm' |
49135 | 1049 |
end; |
1050 |
||
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1051 |
val inject_tacss = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1052 |
map2 (fn 0 => K [] | _ => fn ctr_def => [fn {context = ctxt, ...} => |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1053 |
mk_inject_tac ctxt ctr_def ctor_inject]) ms ctr_defs; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1054 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1055 |
val half_distinct_tacss = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1056 |
map (map (fn (def, def') => fn {context = ctxt, ...} => |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1057 |
mk_half_distinct_tac ctxt ctor_inject [def, def'])) (mk_half_pairss (`I ctr_defs)); |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1058 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1059 |
val case_tacs = |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1060 |
map3 (fn k => fn m => fn ctr_def => fn {context = ctxt, ...} => |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1061 |
mk_case_tac ctxt n k m case_def ctr_def dtor_ctor) ks ms ctr_defs; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1062 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1063 |
val tacss = [exhaust_tac] :: inject_tacss @ half_distinct_tacss @ [case_tacs]; |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1064 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1065 |
val sel_defaultss = map (map (apsnd (prepare_term lthy))) raw_sel_defaultss |
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
49121
diff
changeset
|
1066 |
in |
51781 | 1067 |
wrap_free_constructors tacss (((wrap_opts, ctrs0), casex0), (disc_bindings, |
1068 |
(sel_bindingss, sel_defaultss))) lthy |
|
49123
263b0e330d8b
more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents:
49121
diff
changeset
|
1069 |
end; |
49121 | 1070 |
|
51840 | 1071 |
fun derive_maps_sets_rels (ctr_sugar, lthy) = |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1072 |
if live = 0 then |
51840 | 1073 |
((([], [], [], []), ctr_sugar), lthy) |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1074 |
else |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1075 |
let |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1076 |
val rel_flip = rel_flip_of_bnf fp_bnf; |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1077 |
val nones = replicate live NONE; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1078 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1079 |
val ctor_cong = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1080 |
if lfp then |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1081 |
Drule.dummy_thm |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1082 |
else |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1083 |
let val ctor' = mk_ctor Bs ctor in |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1084 |
cterm_instantiate_pos [NONE, NONE, SOME (certify lthy ctor')] arg_cong |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1085 |
end; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1086 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1087 |
fun mk_cIn ify = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1088 |
certify lthy o (not lfp ? curry (op $) (map_types ify ctor)) oo |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1089 |
mk_InN_balanced (ify ctr_sum_prod_T) n; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1090 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1091 |
val cxIns = map2 (mk_cIn I) tuple_xs ks; |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1092 |
val cyIns = map2 (mk_cIn B_ify) tuple_ys ks; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1093 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1094 |
fun mk_map_thm ctr_def' cxIn = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1095 |
fold_thms lthy [ctr_def'] |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1096 |
(unfold_thms lthy (pre_map_def :: |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1097 |
(if lfp then [] else [ctor_dtor, dtor_ctor]) @ sum_prod_thms_map) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1098 |
(cterm_instantiate_pos (nones @ [SOME cxIn]) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1099 |
(if lfp then fp_map_thm else fp_map_thm RS ctor_cong))) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1100 |
|> singleton (Proof_Context.export names_lthy no_defs_lthy); |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1101 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1102 |
fun mk_set_thm fp_set_thm ctr_def' cxIn = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1103 |
fold_thms lthy [ctr_def'] |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1104 |
(unfold_thms lthy (pre_set_defs @ nested_set_map's @ nesting_set_map's @ |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1105 |
(if lfp then [] else [dtor_ctor]) @ sum_prod_thms_set) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1106 |
(cterm_instantiate_pos [SOME cxIn] fp_set_thm)) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1107 |
|> singleton (Proof_Context.export names_lthy no_defs_lthy); |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1108 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1109 |
fun mk_set_thms fp_set_thm = map2 (mk_set_thm fp_set_thm) ctr_defs' cxIns; |
49127 | 1110 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1111 |
val map_thms = map2 mk_map_thm ctr_defs' cxIns; |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1112 |
val set_thmss = map mk_set_thms fp_set_thms; |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1113 |
|
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1114 |
val rel_infos = (ctr_defs' ~~ cxIns, ctr_defs' ~~ cyIns); |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1115 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1116 |
fun mk_rel_thm postproc ctr_defs' cxIn cyIn = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1117 |
fold_thms lthy ctr_defs' |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1118 |
(unfold_thms lthy (@{thm Inl_Inr_False} :: pre_rel_def :: |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1119 |
(if lfp then [] else [dtor_ctor]) @ sum_prod_thms_rel) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1120 |
(cterm_instantiate_pos (nones @ [SOME cxIn, SOME cyIn]) fp_rel_thm)) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1121 |
|> postproc |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1122 |
|> singleton (Proof_Context.export names_lthy no_defs_lthy); |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1123 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1124 |
fun mk_rel_inject_thm ((ctr_def', cxIn), (_, cyIn)) = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1125 |
mk_rel_thm (unfold_thms lthy @{thms eq_sym_Unity_conv}) [ctr_def'] cxIn cyIn; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1126 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1127 |
val rel_inject_thms = map mk_rel_inject_thm (op ~~ rel_infos); |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1128 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1129 |
fun mk_half_rel_distinct_thm ((xctr_def', cxIn), (yctr_def', cyIn)) = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1130 |
mk_rel_thm (fn thm => thm RS @{thm eq_False[THEN iffD1]}) [xctr_def', yctr_def'] |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1131 |
cxIn cyIn; |
49121 | 1132 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1133 |
fun mk_other_half_rel_distinct_thm thm = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1134 |
flip_rels lthy live thm |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1135 |
RS (rel_flip RS sym RS @{thm arg_cong[of _ _ Not]} RS iffD2); |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1136 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1137 |
val half_rel_distinct_thmss = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1138 |
map (map mk_half_rel_distinct_thm) (mk_half_pairss rel_infos); |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1139 |
val other_half_rel_distinct_thmss = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1140 |
map (map mk_other_half_rel_distinct_thm) half_rel_distinct_thmss; |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1141 |
val (rel_distinct_thms, _) = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1142 |
join_halves n half_rel_distinct_thmss other_half_rel_distinct_thmss; |
49134
846264f80f16
optionally provide extra dead variables to the FP constructions
blanchet
parents:
49130
diff
changeset
|
1143 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1144 |
val notes = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1145 |
[(mapN, map_thms, code_simp_attrs), |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1146 |
(rel_distinctN, rel_distinct_thms, code_simp_attrs), |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1147 |
(rel_injectN, rel_inject_thms, code_simp_attrs), |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1148 |
(setsN, flat set_thmss, code_simp_attrs)] |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1149 |
|> massage_simple_notes fp_b_name; |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1150 |
in |
51840 | 1151 |
(((map_thms, rel_inject_thms, rel_distinct_thms, set_thmss), ctr_sugar), |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1152 |
lthy |> Local_Theory.notes notes |> snd) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1153 |
end; |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1154 |
|
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1155 |
fun define_fold_rec no_defs_lthy = |
49134
846264f80f16
optionally provide extra dead variables to the FP constructions
blanchet
parents:
49130
diff
changeset
|
1156 |
let |
49208 | 1157 |
val fpT_to_C = fpT --> C; |
49199 | 1158 |
|
49681
aa66ea552357
changed type of corecursor for the nested recursion case
blanchet
parents:
49672
diff
changeset
|
1159 |
fun build_prod_proj mk_proj (T, U) = |
49670
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1160 |
if T = U then |
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1161 |
id_const T |
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1162 |
else |
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1163 |
(case (T, U) of |
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1164 |
(Type (s, _), Type (s', _)) => |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1165 |
if s = s' then build_map lthy (build_prod_proj mk_proj) T U else mk_proj T |
49670
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1166 |
| _ => mk_proj T); |
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1167 |
|
49681
aa66ea552357
changed type of corecursor for the nested recursion case
blanchet
parents:
49672
diff
changeset
|
1168 |
(* TODO: Avoid these complications; cf. corec case *) |
49672
902b24e0ffb4
fixed recursor definition for datatypes with inner products (e.g. "'a trm" from the lambda-term example)
blanchet
parents:
49671
diff
changeset
|
1169 |
fun mk_U proj (Type (s as @{type_name prod}, Ts as [T', U])) = |
902b24e0ffb4
fixed recursor definition for datatypes with inner products (e.g. "'a trm" from the lambda-term example)
blanchet
parents:
49671
diff
changeset
|
1170 |
if member (op =) fpTs T' then proj (T', U) else Type (s, map (mk_U proj) Ts) |
49670
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1171 |
| mk_U proj (Type (s, Ts)) = Type (s, map (mk_U proj) Ts) |
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1172 |
| mk_U _ T = T; |
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1173 |
|
51794 | 1174 |
fun unzip_rec (x as Free (_, T)) = |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1175 |
if exists_subtype_in fpTs T then |
51794 | 1176 |
([build_prod_proj fst_const (T, mk_U fst T) $ x], |
1177 |
[build_prod_proj snd_const (T, mk_U snd T) $ x]) |
|
49670
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1178 |
else |
51794 | 1179 |
([x], []); |
49670
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1180 |
|
51793
22f22172a361
started working on compatibility with old package's recursor
blanchet
parents:
51790
diff
changeset
|
1181 |
fun mk_rec_like_arg f xs = |
51794 | 1182 |
mk_tupled_fun (HOLogic.mk_tuple xs) f (flat_rec unzip_rec xs); |
49670
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1183 |
|
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1184 |
fun generate_rec_like (suf, fp_rec_like, (fss, f_Tss, xsss)) = |
49215 | 1185 |
let |
1186 |
val res_T = fold_rev (curry (op --->)) f_Tss fpT_to_C; |
|
49633 | 1187 |
val binding = qualify false fp_b_name (Binding.suffix_name ("_" ^ suf) fp_b); |
49215 | 1188 |
val spec = |
49336 | 1189 |
mk_Trueprop_eq (lists_bmoc fss (Free (Binding.name_of binding, res_T)), |
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1190 |
Term.list_comb (fp_rec_like, |
49670
c7a034d01936
changed the type of the recursor for nested recursion
blanchet
parents:
49636
diff
changeset
|
1191 |
map2 (mk_sum_caseN_balanced oo map2 mk_rec_like_arg) fss xsss)); |
49336 | 1192 |
in (binding, spec) end; |
49199 | 1193 |
|
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1194 |
val rec_like_infos = |
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1195 |
[(foldN, fp_fold, fold_only), |
49215 | 1196 |
(recN, fp_rec, rec_only)]; |
1197 |
||
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1198 |
val (bindings, specs) = map generate_rec_like rec_like_infos |> split_list; |
49215 | 1199 |
|
1200 |
val ((csts, defs), (lthy', lthy)) = no_defs_lthy |
|
49201 | 1201 |
|> apfst split_list o fold_map2 (fn b => fn spec => |
49199 | 1202 |
Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec)) |
49336 | 1203 |
#>> apsnd snd) bindings specs |
49199 | 1204 |
||> `Local_Theory.restore; |
49201 | 1205 |
|
1206 |
val phi = Proof_Context.export_morphism lthy lthy'; |
|
1207 |
||
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1208 |
val [fold_def, rec_def] = map (Morphism.thm phi) defs; |
49201 | 1209 |
|
49536 | 1210 |
val [foldx, recx] = map (mk_rec_like lfp As Cs o Morphism.term phi) csts; |
49134
846264f80f16
optionally provide extra dead variables to the FP constructions
blanchet
parents:
49130
diff
changeset
|
1211 |
in |
49693
393d7242adaf
thread the right local theory through + reenable parallel proofs for previously problematic theories
blanchet
parents:
49683
diff
changeset
|
1212 |
((foldx, recx, fold_def, rec_def), lthy') |
49134
846264f80f16
optionally provide extra dead variables to the FP constructions
blanchet
parents:
49130
diff
changeset
|
1213 |
end; |
846264f80f16
optionally provide extra dead variables to the FP constructions
blanchet
parents:
49130
diff
changeset
|
1214 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1215 |
fun define_unfold_corec no_defs_lthy = |
49210 | 1216 |
let |
1217 |
val B_to_fpT = C --> fpT; |
|
49211 | 1218 |
|
49683 | 1219 |
fun build_sum_inj mk_inj (T, U) = |
1220 |
if T = U then |
|
1221 |
id_const T |
|
1222 |
else |
|
1223 |
(case (T, U) of |
|
1224 |
(Type (s, _), Type (s', _)) => |
|
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1225 |
if s = s' then build_map lthy (build_sum_inj mk_inj) T U |
49683 | 1226 |
else uncurry mk_inj (dest_sumT U) |
1227 |
| _ => uncurry mk_inj (dest_sumT U)); |
|
1228 |
||
1229 |
fun build_dtor_corec_like_arg _ [] [cf] = cf |
|
1230 |
| build_dtor_corec_like_arg T [cq] [cf, cf'] = |
|
1231 |
mk_If cq (build_sum_inj Inl_const (fastype_of cf, T) $ cf) |
|
1232 |
(build_sum_inj Inr_const (fastype_of cf', T) $ cf') |
|
1233 |
||
1234 |
val crgsss = map3 (map3 (map3 build_dtor_corec_like_arg)) g_Tsss crssss cgssss; |
|
1235 |
val cshsss = map3 (map3 (map3 build_dtor_corec_like_arg)) h_Tsss csssss chssss; |
|
1236 |
||
49276 | 1237 |
fun mk_preds_getterss_join c n cps sum_prod_T cqfss = |
1238 |
Term.lambda c (mk_IfN sum_prod_T cps |
|
1239 |
(map2 (mk_InN_balanced sum_prod_T n) (map HOLogic.mk_tuple cqfss) (1 upto n))); |
|
49275 | 1240 |
|
49683 | 1241 |
fun generate_corec_like (suf, fp_rec_like, (cqfsss, ((pfss, _, _), (f_sum_prod_Ts, _, |
1242 |
pf_Tss)))) = |
|
49211 | 1243 |
let |
1244 |
val res_T = fold_rev (curry (op --->)) pf_Tss B_to_fpT; |
|
49633 | 1245 |
val binding = qualify false fp_b_name (Binding.suffix_name ("_" ^ suf) fp_b); |
49211 | 1246 |
val spec = |
49336 | 1247 |
mk_Trueprop_eq (lists_bmoc pfss (Free (Binding.name_of binding, res_T)), |
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1248 |
Term.list_comb (fp_rec_like, |
49276 | 1249 |
map5 mk_preds_getterss_join cs ns cpss f_sum_prod_Ts cqfsss)); |
49336 | 1250 |
in (binding, spec) end; |
49210 | 1251 |
|
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1252 |
val corec_like_infos = |
49683 | 1253 |
[(unfoldN, fp_fold, (crgsss, unfold_only)), |
1254 |
(corecN, fp_rec, (cshsss, corec_only))]; |
|
49212 | 1255 |
|
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1256 |
val (bindings, specs) = map generate_corec_like corec_like_infos |> split_list; |
49211 | 1257 |
|
1258 |
val ((csts, defs), (lthy', lthy)) = no_defs_lthy |
|
49210 | 1259 |
|> apfst split_list o fold_map2 (fn b => fn spec => |
1260 |
Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec)) |
|
49336 | 1261 |
#>> apsnd snd) bindings specs |
49210 | 1262 |
||> `Local_Theory.restore; |
1263 |
||
1264 |
val phi = Proof_Context.export_morphism lthy lthy'; |
|
1265 |
||
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1266 |
val [unfold_def, corec_def] = map (Morphism.thm phi) defs; |
49210 | 1267 |
|
49536 | 1268 |
val [unfold, corec] = map (mk_rec_like lfp As Cs o Morphism.term phi) csts; |
49210 | 1269 |
in |
49693
393d7242adaf
thread the right local theory through + reenable parallel proofs for previously problematic theories
blanchet
parents:
49683
diff
changeset
|
1270 |
((unfold, corec, unfold_def, corec_def), lthy') |
49287
ebe2a5cec4bf
allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents:
49286
diff
changeset
|
1271 |
end; |
ebe2a5cec4bf
allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents:
49286
diff
changeset
|
1272 |
|
51840 | 1273 |
fun massage_res (((maps_sets_rels, ctr_sugar), rec_like_res), lthy) = |
1274 |
(((maps_sets_rels, (ctrs, xss, ctr_defs, ctr_sugar)), rec_like_res), lthy); |
|
49119 | 1275 |
in |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1276 |
(wrap |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1277 |
#> derive_maps_sets_rels |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1278 |
##>> (if lfp then define_fold_rec else define_unfold_corec) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1279 |
#> massage_res, lthy') |
49119 | 1280 |
end; |
49167 | 1281 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1282 |
fun wrap_types_etc (wrap_types_etcs, lthy) = |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1283 |
fold_map I wrap_types_etcs lthy |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1284 |
|>> apsnd split_list4 o apfst (apsnd split_list4 o apfst split_list4 o split_list) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1285 |
o split_list; |
49226 | 1286 |
|
49479
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1287 |
val mk_simp_thmss = |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1288 |
map7 (fn {injects, distincts, case_thms, ...} => fn rec_likes => fn fold_likes => |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1289 |
fn mapsx => fn rel_injects => fn rel_distincts => fn setss => |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1290 |
injects @ distincts @ case_thms @ rec_likes @ fold_likes @ mapsx @ rel_injects |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1291 |
@ rel_distincts @ flat setss); |
49479
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1292 |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1293 |
fun derive_and_note_induct_fold_rec_thms_for_types |
51840 | 1294 |
((((mapsx, rel_injects, rel_distincts, setss), (ctrss, _, ctr_defss, ctr_sugars)), |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1295 |
(folds, recs, fold_defs, rec_defs)), lthy) = |
49202
f493cd25737f
some work towards iterator and recursor properties
blanchet
parents:
49201
diff
changeset
|
1296 |
let |
51833 | 1297 |
val ((induct_thm, induct_thms, induct_attrs), (fold_thmss, fold_attrs), |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1298 |
(rec_thmss, rec_attrs)) = |
51827 | 1299 |
derive_induct_fold_rec_thms_for_types pre_bnfs fp_folds0 fp_recs0 fp_induct fp_fold_thms |
1300 |
fp_rec_thms nesting_bnfs nested_bnfs fpTs Cs As ctrss ctr_defss folds recs fold_defs |
|
1301 |
rec_defs lthy; |
|
49201 | 1302 |
|
51830 | 1303 |
val induct_type_attr = Attrib.internal o K o Induct.induct_type; |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1304 |
|
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1305 |
val simp_thmss = |
51840 | 1306 |
mk_simp_thmss ctr_sugars rec_thmss fold_thmss mapsx rel_injects rel_distincts setss; |
49438 | 1307 |
|
49337 | 1308 |
val common_notes = |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1309 |
(if nn > 1 then [(inductN, [induct_thm], induct_attrs)] else []) |
51780 | 1310 |
|> massage_simple_notes fp_common_name; |
49337 | 1311 |
|
49226 | 1312 |
val notes = |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1313 |
[(foldN, fold_thmss, K fold_attrs), |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1314 |
(inductN, map single induct_thms, fn T_name => induct_attrs @ [induct_type_attr T_name]), |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1315 |
(recN, rec_thmss, K rec_attrs), |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1316 |
(simpsN, simp_thmss, K [])] |
51780 | 1317 |
|> massage_multi_notes; |
49202
f493cd25737f
some work towards iterator and recursor properties
blanchet
parents:
49201
diff
changeset
|
1318 |
in |
51824 | 1319 |
lthy |
1320 |
|> Local_Theory.notes (common_notes @ notes) |> snd |
|
51840 | 1321 |
|> register_fp_sugars true pre_bnfs fp_res ctr_sugars |
49202
f493cd25737f
some work towards iterator and recursor properties
blanchet
parents:
49201
diff
changeset
|
1322 |
end; |
f493cd25737f
some work towards iterator and recursor properties
blanchet
parents:
49201
diff
changeset
|
1323 |
|
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1324 |
fun derive_and_note_coinduct_unfold_corec_thms_for_types |
51840 | 1325 |
((((mapsx, rel_injects, rel_distincts, setss), (ctrss, _, ctr_defss, ctr_sugars)), |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1326 |
(unfolds, corecs, unfold_defs, corec_defs)), lthy) = |
49212 | 1327 |
let |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1328 |
val ((coinduct_thm, coinduct_thms, strong_coinduct_thm, strong_coinduct_thms, |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1329 |
coinduct_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1330 |
(unfold_thmss, corec_thmss, corec_like_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1331 |
(safe_unfold_thmss, safe_corec_thmss), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1332 |
(disc_unfold_thmss, disc_corec_thmss, disc_corec_like_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1333 |
(disc_unfold_iff_thmss, disc_corec_iff_thmss, disc_corec_like_iff_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1334 |
(sel_unfold_thmss, sel_corec_thmss, sel_corec_like_attrs)) = |
51829 | 1335 |
derive_coinduct_unfold_corec_thms_for_types pre_bnfs fp_folds0 fp_recs0 fp_induct |
51811 | 1336 |
fp_strong_induct dtor_ctors fp_fold_thms fp_rec_thms nesting_bnfs nested_bnfs fpTs Cs As |
51840 | 1337 |
kss mss ns ctr_defss ctr_sugars unfolds corecs unfold_defs corec_defs lthy; |
49212 | 1338 |
|
51830 | 1339 |
val coinduct_type_attr = Attrib.internal o K o Induct.coinduct_type; |
49479
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1340 |
|
49587 | 1341 |
fun flat_corec_like_thms corec_likes disc_corec_likes sel_corec_likes = |
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1342 |
corec_likes @ disc_corec_likes @ sel_corec_likes; |
49479
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1343 |
|
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1344 |
val simp_thmss = |
51840 | 1345 |
mk_simp_thmss ctr_sugars |
49587 | 1346 |
(map3 flat_corec_like_thms safe_corec_thmss disc_corec_thmss sel_corec_thmss) |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1347 |
(map3 flat_corec_like_thms safe_unfold_thmss disc_unfold_thmss sel_unfold_thmss) |
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1348 |
mapsx rel_injects rel_distincts setss; |
49479
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1349 |
|
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1350 |
val anonymous_notes = |
49504
df9b897fb254
renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents:
49502
diff
changeset
|
1351 |
[(flat safe_unfold_thmss @ flat safe_corec_thmss, simp_attrs)] |
49479
504f0a38f608
added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents:
49478
diff
changeset
|
1352 |
|> map (fn (thms, attrs) => ((Binding.empty, attrs), [(thms, [])])); |
49266 | 1353 |
|
49342 | 1354 |
val common_notes = |
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
1355 |
(if nn > 1 then |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1356 |
[(coinductN, [coinduct_thm], coinduct_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1357 |
(strong_coinductN, [strong_coinduct_thm], coinduct_attrs)] |
49591
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
1358 |
else |
91b228e26348
generate high-level "coinduct" and "strong_coinduct" properties
blanchet
parents:
49590
diff
changeset
|
1359 |
[]) |
51780 | 1360 |
|> massage_simple_notes fp_common_name; |
49342 | 1361 |
|
49212 | 1362 |
val notes = |
51780 | 1363 |
[(coinductN, map single coinduct_thms, |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1364 |
fn T_name => coinduct_attrs @ [coinduct_type_attr T_name]), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1365 |
(corecN, corec_thmss, K corec_like_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1366 |
(disc_corecN, disc_corec_thmss, K disc_corec_like_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1367 |
(disc_corec_iffN, disc_corec_iff_thmss, K disc_corec_like_iff_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1368 |
(disc_unfoldN, disc_unfold_thmss, K disc_corec_like_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1369 |
(disc_unfold_iffN, disc_unfold_iff_thmss, K disc_corec_like_iff_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1370 |
(sel_corecN, sel_corec_thmss, K sel_corec_like_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1371 |
(sel_unfoldN, sel_unfold_thmss, K sel_corec_like_attrs), |
51780 | 1372 |
(simpsN, simp_thmss, K []), |
51810
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1373 |
(strong_coinductN, map single strong_coinduct_thms, K coinduct_attrs), |
7b75fab5ebf5
factored out derivation of coinduction, unfold, corec
blanchet
parents:
51808
diff
changeset
|
1374 |
(unfoldN, unfold_thmss, K corec_like_attrs)] |
51780 | 1375 |
|> massage_multi_notes; |
49212 | 1376 |
in |
51824 | 1377 |
lthy |
1378 |
|> Local_Theory.notes (anonymous_notes @ common_notes @ notes) |> snd |
|
51840 | 1379 |
|> register_fp_sugars false pre_bnfs fp_res ctr_sugars |
49212 | 1380 |
end; |
1381 |
||
49204 | 1382 |
val lthy' = lthy |
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1383 |
|> fold_map define_ctrs_case_for_type (fp_bnfs ~~ fp_bs ~~ fpTs ~~ Cs ~~ ctors ~~ dtors ~~ |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1384 |
fp_folds ~~ fp_recs ~~ ctor_dtors ~~ dtor_ctors ~~ ctor_injects ~~ pre_map_defs ~~ |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1385 |
pre_set_defss ~~ pre_rel_defs ~~ fp_map_thms ~~ fp_set_thmss ~~ fp_rel_thms ~~ ns ~~ kss ~~ |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1386 |
mss ~~ ctr_bindingss ~~ ctr_mixfixess ~~ ctr_Tsss ~~ disc_bindingss ~~ sel_bindingsss ~~ |
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1387 |
raw_sel_defaultsss) |
51835
56523caf372f
Added maps, sets, rels to "simps" thm collection
blanchet
parents:
51833
diff
changeset
|
1388 |
|> wrap_types_etc |
51808
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1389 |
|> (if lfp then derive_and_note_induct_fold_rec_thms_for_types |
355dcd6a9b3c
factored out derivation of induction principles, folds and recs, in preparation for reduction of nested to mutual
blanchet
parents:
51805
diff
changeset
|
1390 |
else derive_and_note_coinduct_unfold_corec_thms_for_types); |
49167 | 1391 |
|
1392 |
val timer = time (timer ("Constructors, discriminators, selectors, etc., for the new " ^ |
|
49208 | 1393 |
(if lfp then "" else "co") ^ "datatype")); |
49112 | 1394 |
in |
49308
6190b701e4f4
reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents:
49302
diff
changeset
|
1395 |
timer; lthy' |
49112 | 1396 |
end; |
1397 |
||
49536 | 1398 |
val datatypes = define_datatypes (K I) (K I) (K I); |
49297 | 1399 |
|
51380 | 1400 |
val datatype_cmd = define_datatypes Typedecl.read_constraint Syntax.parse_typ Syntax.parse_term; |
49119 | 1401 |
|
49112 | 1402 |
val parse_ctr_arg = |
49329
82452dc63ed5
desambiguate grammar (e.g. for Nil's mixfix ("[]"))
blanchet
parents:
49311
diff
changeset
|
1403 |
@{keyword "("} |-- parse_binding_colon -- Parse.typ --| @{keyword ")"} || |
49434
433dc7e028c8
separated registration of BNFs from bnf_def (BNFs are now stored only for bnf_def and (co)data commands)
traytel
parents:
49429
diff
changeset
|
1404 |
(Parse.typ >> pair Binding.empty); |
49112 | 1405 |
|
49286 | 1406 |
val parse_defaults = |
1407 |
@{keyword "("} |-- @{keyword "defaults"} |-- Scan.repeat parse_bound_term --| @{keyword ")"}; |
|
1408 |
||
51758 | 1409 |
val parse_type_arg_constrained = |
51790
22517d04d20b
more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents:
51788
diff
changeset
|
1410 |
Parse.type_ident -- Scan.option (@{keyword "::"} |-- Parse.!!! Parse.sort); |
51758 | 1411 |
|
51790
22517d04d20b
more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents:
51788
diff
changeset
|
1412 |
val parse_type_arg_named_constrained = parse_opt_binding_colon -- parse_type_arg_constrained; |
51758 | 1413 |
|
1414 |
val parse_type_args_named_constrained = |
|
1415 |
parse_type_arg_constrained >> (single o pair Binding.empty) || |
|
1416 |
@{keyword "("} |-- Parse.!!! (Parse.list1 parse_type_arg_named_constrained --| @{keyword ")"}) || |
|
51756 | 1417 |
Scan.succeed []; |
1418 |
||
51790
22517d04d20b
more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents:
51788
diff
changeset
|
1419 |
val parse_map_rel_binding = Parse.short_ident --| @{keyword ":"} -- parse_binding; |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1420 |
|
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1421 |
val no_map_rel = (Binding.empty, Binding.empty); |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1422 |
|
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1423 |
(* "map" and "rel" are purposedly not registered as keywords, because they are short and nice names |
51833 | 1424 |
that we don't want them to be highlighted everywhere. *) |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1425 |
fun extract_map_rel ("map", b) = apfst (K b) |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1426 |
| extract_map_rel ("rel", b) = apsnd (K b) |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1427 |
| extract_map_rel (s, _) = error ("Expected \"map\" or \"rel\" instead of " ^ quote s); |
49112 | 1428 |
|
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1429 |
val parse_map_rel_bindings = |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1430 |
@{keyword "("} |-- Scan.repeat parse_map_rel_binding --| @{keyword ")"} |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1431 |
>> (fn ps => fold extract_map_rel ps no_map_rel) || |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1432 |
Scan.succeed no_map_rel; |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1433 |
|
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1434 |
val parse_ctr_spec = |
51790
22517d04d20b
more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents:
51788
diff
changeset
|
1435 |
parse_opt_binding_colon -- parse_binding -- Scan.repeat parse_ctr_arg -- |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1436 |
Scan.optional parse_defaults [] -- Parse.opt_mixfix; |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1437 |
|
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1438 |
val parse_spec = |
51790
22517d04d20b
more intuitive syntax for equality-style discriminators of nullary constructors
blanchet
parents:
51788
diff
changeset
|
1439 |
parse_type_args_named_constrained -- parse_binding -- parse_map_rel_bindings -- |
51767
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1440 |
Parse.opt_mixfix -- (@{keyword "="} |-- Parse.enum1 "|" parse_ctr_spec); |
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1441 |
|
bbcdd8519253
honor user-specified name for relator + generalize syntax
blanchet
parents:
51766
diff
changeset
|
1442 |
val parse_datatype = parse_wrap_options -- Parse.and_list1 parse_spec; |
49278 | 1443 |
|
49585
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
blanchet
parents:
49583
diff
changeset
|
1444 |
fun parse_datatype_cmd lfp construct_fp = parse_datatype >> datatype_cmd lfp construct_fp; |
49112 | 1445 |
|
1446 |
end; |