| author | blanchet | 
| Tue, 19 Aug 2014 09:34:57 +0200 | |
| changeset 57993 | c52255a71114 | 
| parent 57890 | 1e13f63fb452 | 
| child 58128 | 43a1ba26a8cb | 
| permissions | -rw-r--r-- | 
| 55061 | 1 | (* Title: HOL/Tools/BNF/bnf_comp.ML | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 2 | Author: Dmitriy Traytel, TU Muenchen | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 3 | Author: Jasmin Blanchette, TU Muenchen | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 4 | Copyright 2012 | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 5 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 6 | Composition of bounded natural functors. | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 7 | *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 8 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 9 | signature BNF_COMP = | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 10 | sig | 
| 51837 
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
 blanchet parents: 
51782diff
changeset | 11 | val ID_bnf: BNF_Def.bnf | 
| 
087498724486
lowercase type constructor, for consistency (cf. fp_result not FP_result nor FP_Result)
 blanchet parents: 
51782diff
changeset | 12 | val DEADID_bnf: BNF_Def.bnf | 
| 49585 
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
 blanchet parents: 
49538diff
changeset | 13 | |
| 55706 | 14 | type comp_cache | 
| 49502 | 15 | type unfold_set | 
| 55706 | 16 | |
| 17 | val empty_comp_cache: comp_cache | |
| 49502 | 18 | val empty_unfolds: unfold_set | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 19 | |
| 53222 | 20 | exception BAD_DEAD of typ * typ | 
| 21 | ||
| 55856 
bddaada24074
got rid of automatically generated fold constant and theorems (to reduce overhead)
 blanchet parents: 
55855diff
changeset | 22 | val bnf_of_typ: BNF_Def.inline_policy -> (binding -> binding) -> | 
| 55703 
a21069381ba5
optimization of 'bnf_of_typ' if all variables are dead
 blanchet parents: 
55480diff
changeset | 23 | ((string * sort) list list -> (string * sort) list) -> (string * sort) list -> | 
| 55904 | 24 | (string * sort) list -> typ -> (comp_cache * unfold_set) * local_theory -> | 
| 25 | (BNF_Def.bnf * (typ list * typ list)) * ((comp_cache * unfold_set) * local_theory) | |
| 49014 | 26 | val default_comp_sort: (string * sort) list list -> (string * sort) list | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 27 | val normalize_bnfs: (int -> binding -> binding) -> ''a list list -> ''a list -> | 
| 55904 | 28 |     (''a list list -> ''a list) -> BNF_Def.bnf list -> (comp_cache * unfold_set) * local_theory ->
 | 
| 29 | (int list list * ''a list) * (BNF_Def.bnf list * ((comp_cache * unfold_set) * local_theory)) | |
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 30 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 31 | type absT_info = | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 32 |     {absT: typ,
 | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 33 | repT: typ, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 34 | abs: term, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 35 | rep: term, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 36 | abs_inject: thm, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 37 | abs_inverse: thm, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 38 | type_definition: thm} | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 39 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 40 | val morph_absT_info: morphism -> absT_info -> absT_info | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 41 | val mk_absT: theory -> typ -> typ -> typ -> typ | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 42 | val mk_repT: typ -> typ -> typ -> typ | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 43 | val mk_abs: typ -> term -> term | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 44 | val mk_rep: typ -> term -> term | 
| 53264 | 45 | val seal_bnf: (binding -> binding) -> unfold_set -> binding -> typ list -> BNF_Def.bnf -> | 
| 55904 | 46 | local_theory -> (BNF_Def.bnf * (typ list * absT_info)) * local_theory | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 47 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 48 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 49 | structure BNF_Comp : BNF_COMP = | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 50 | struct | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 51 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 52 | open BNF_Def | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 53 | open BNF_Util | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 54 | open BNF_Tactics | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 55 | open BNF_Comp_Tactics | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 56 | |
| 55935 
8f20d09d294e
move special BNFs used for composition only to BNF_Comp;
 traytel parents: 
55930diff
changeset | 57 | val ID_bnf = the (bnf_of @{context} "BNF_Comp.ID");
 | 
| 
8f20d09d294e
move special BNFs used for composition only to BNF_Comp;
 traytel parents: 
55930diff
changeset | 58 | val DEADID_bnf = the (bnf_of @{context} "BNF_Comp.DEADID");
 | 
| 49585 
5c4a12550491
generate high-level "maps", "sets", and "rels" properties
 blanchet parents: 
49538diff
changeset | 59 | |
| 55706 | 60 | type comp_cache = (bnf * (typ list * typ list)) Typtab.table; | 
| 61 | ||
| 55904 | 62 | fun key_of_types s Ts = Type (s, Ts); | 
| 63 | fun key_of_typess s = key_of_types s o map (key_of_types ""); | |
| 64 | fun typ_of_int n = Type (string_of_int n, []); | |
| 65 | fun typ_of_bnf bnf = | |
| 66 | key_of_typess "" [[T_of_bnf bnf], lives_of_bnf bnf, sort Term_Ord.typ_ord (deads_of_bnf bnf)]; | |
| 67 | ||
| 68 | fun key_of_kill n bnf = key_of_types "k" [typ_of_int n, typ_of_bnf bnf]; | |
| 69 | fun key_of_lift n bnf = key_of_types "l" [typ_of_int n, typ_of_bnf bnf]; | |
| 70 | fun key_of_permute src dest bnf = | |
| 71 | key_of_types "p" (map typ_of_int src @ map typ_of_int dest @ [typ_of_bnf bnf]); | |
| 72 | fun key_of_compose oDs Dss Ass outer inners = | |
| 73 | key_of_types "c" (map (key_of_typess "") [[oDs], Dss, Ass, [map typ_of_bnf (outer :: inners)]]); | |
| 74 | ||
| 75 | fun cache_comp_simple key cache (bnf, (unfold_set, lthy)) = | |
| 76 | (bnf, ((Typtab.update (key, (bnf, ([], []))) cache, unfold_set), lthy)); | |
| 77 | ||
| 78 | fun cache_comp key (bnf_Ds_As, ((cache, unfold_set), lthy)) = | |
| 79 | (bnf_Ds_As, ((Typtab.update (key, bnf_Ds_As) cache, unfold_set), lthy)); | |
| 80 | ||
| 55706 | 81 | (* TODO: Replace by "BNF_Defs.defs list"? *) | 
| 49502 | 82 | type unfold_set = {
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 83 | map_unfolds: thm list, | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 84 | set_unfoldss: thm list list, | 
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 85 | rel_unfolds: thm list | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 86 | }; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 87 | |
| 55706 | 88 | val empty_comp_cache = Typtab.empty; | 
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 89 | val empty_unfolds = {map_unfolds = [], set_unfoldss = [], rel_unfolds = []};
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 90 | |
| 49503 | 91 | fun add_to_thms thms new = thms |> not (Thm.is_reflexive new) ? insert Thm.eq_thm new; | 
| 92 | fun adds_to_thms thms news = insert (eq_set Thm.eq_thm) (no_reflexive news) thms; | |
| 93 | ||
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 94 | fun add_to_unfolds map sets rel | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 95 |   {map_unfolds, set_unfoldss, rel_unfolds} =
 | 
| 49503 | 96 |   {map_unfolds = add_to_thms map_unfolds map,
 | 
| 97 | set_unfoldss = adds_to_thms set_unfoldss sets, | |
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 98 | rel_unfolds = add_to_thms rel_unfolds rel}; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 99 | |
| 49503 | 100 | fun add_bnf_to_unfolds bnf = | 
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 101 | add_to_unfolds (map_def_of_bnf bnf) (set_defs_of_bnf bnf) (rel_def_of_bnf bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 102 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 103 | val bdTN = "bdT"; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 104 | |
| 49425 | 105 | fun mk_killN n = "_kill" ^ string_of_int n; | 
| 106 | fun mk_liftN n = "_lift" ^ string_of_int n; | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 107 | fun mk_permuteN src dest = | 
| 49425 | 108 | "_permute_" ^ implode (map string_of_int src) ^ "_" ^ implode (map string_of_int dest); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 109 | |
| 55935 
8f20d09d294e
move special BNFs used for composition only to BNF_Comp;
 traytel parents: 
55930diff
changeset | 110 | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 111 | (*copied from Envir.expand_term_free*) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 112 | fun expand_term_const defs = | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 113 | let | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 114 | val eqs = map ((fn ((x, U), u) => (x, (U, u))) o apfst dest_Const) defs; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 115 | val get = fn Const (x, _) => AList.lookup (op =) eqs x | _ => NONE; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 116 | in Envir.expand_term get end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 117 | |
| 55937 | 118 | val id_bnf_comp_def = @{thm id_bnf_comp_def};
 | 
| 119 | val expand_id_bnf_comp_def = | |
| 120 | expand_term_const [Thm.prop_of id_bnf_comp_def |> Logic.dest_equals]; | |
| 121 | ||
| 55851 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 122 | fun is_sum_prod_natLeq (Const (@{const_name csum}, _) $ t $ u) = forall is_sum_prod_natLeq [t, u]
 | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 123 |   | is_sum_prod_natLeq (Const (@{const_name cprod}, _) $ t $ u) = forall is_sum_prod_natLeq [t, u]
 | 
| 55853 | 124 |   | is_sum_prod_natLeq t = t aconv @{term natLeq};
 | 
| 55851 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 125 | |
| 49502 | 126 | fun clean_compose_bnf const_policy qualify b outer inners (unfold_set, lthy) = | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 127 | let | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 128 | val olive = live_of_bnf outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 129 | val onwits = nwits_of_bnf outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 130 | val odead = dead_of_bnf outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 131 | val inner = hd inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 132 | val ilive = live_of_bnf inner; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 133 | val ideads = map dead_of_bnf inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 134 | val inwitss = map nwits_of_bnf inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 135 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 136 | (* TODO: check olive = length inners > 0, | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 137 | forall inner from inners. ilive = live, | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 138 | forall inner from inners. idead = dead *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 139 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 140 | val (oDs, lthy1) = apfst (map TFree) | 
| 56254 | 141 |       (Variable.invent_types (replicate odead @{sort type}) lthy);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 142 | val (Dss, lthy2) = apfst (map (map TFree)) | 
| 56254 | 143 |       (fold_map Variable.invent_types (map (fn n => replicate n @{sort type}) ideads) lthy1);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 144 | val (Ass, lthy3) = apfst (replicate ilive o map TFree) | 
| 56254 | 145 |       (Variable.invent_types (replicate ilive @{sort type}) lthy2);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 146 | val As = if ilive > 0 then hd Ass else []; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 147 | val Ass_repl = replicate olive As; | 
| 55906 | 148 | val (Bs, names_lthy) = apfst (map TFree) | 
| 56254 | 149 |       (Variable.invent_types (replicate ilive @{sort type}) lthy3);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 150 | val Bss_repl = replicate olive Bs; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 151 | |
| 55906 | 152 | val ((((fs', Qs'), Asets), xs), _) = names_lthy | 
| 52923 | 153 | |> apfst snd o mk_Frees' "f" (map2 (curry op -->) As Bs) | 
| 49463 | 154 | ||>> apfst snd o mk_Frees' "Q" (map2 mk_pred2T As Bs) | 
| 49456 | 155 | ||>> mk_Frees "A" (map HOLogic.mk_setT As) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 156 | ||>> mk_Frees "x" As; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 157 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 158 | val CAs = map3 mk_T_of_bnf Dss Ass_repl inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 159 | val CCA = mk_T_of_bnf oDs CAs outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 160 | val CBs = map3 mk_T_of_bnf Dss Bss_repl inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 161 | val outer_sets = mk_sets_of_bnf (replicate olive oDs) (replicate olive CAs) outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 162 | val inner_setss = map3 mk_sets_of_bnf (map (replicate ilive) Dss) (replicate olive Ass) inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 163 | val inner_bds = map3 mk_bd_of_bnf Dss Ass_repl inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 164 | val outer_bd = mk_bd_of_bnf oDs CAs outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 165 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 166 | (*%f1 ... fn. outer.map (inner_1.map f1 ... fn) ... (inner_m.map f1 ... fn)*) | 
| 49303 | 167 | val mapx = fold_rev Term.abs fs' | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 168 | (Term.list_comb (mk_map_of_bnf oDs CAs CBs outer, | 
| 49463 | 169 | map2 (fn Ds => (fn f => Term.list_comb (f, map Bound (ilive - 1 downto 0))) o | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 170 | mk_map_of_bnf Ds As Bs) Dss inners)); | 
| 49507 | 171 | (*%Q1 ... Qn. outer.rel (inner_1.rel Q1 ... Qn) ... (inner_m.rel Q1 ... Qn)*) | 
| 172 | val rel = fold_rev Term.abs Qs' | |
| 173 | (Term.list_comb (mk_rel_of_bnf oDs CAs CBs outer, | |
| 49463 | 174 | map2 (fn Ds => (fn f => Term.list_comb (f, map Bound (ilive - 1 downto 0))) o | 
| 49507 | 175 | mk_rel_of_bnf Ds As Bs) Dss inners)); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 176 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 177 |     (*Union o collect {outer.set_1 ... outer.set_m} o outer.map inner_1.set_i ... inner_m.set_i*)
 | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 178 |     (*Union o collect {image inner_1.set_i o outer.set_1 ... image inner_m.set_i o outer.set_m}*)
 | 
| 49303 | 179 | fun mk_set i = | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 180 | let | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 181 | val (setTs, T) = `(replicate olive o HOLogic.mk_setT) (nth As i); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 182 | val outer_set = mk_collect | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 183 | (mk_sets_of_bnf (replicate olive oDs) (replicate olive setTs) outer) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 184 | (mk_T_of_bnf oDs setTs outer --> HOLogic.mk_setT T); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 185 | val inner_sets = map (fn sets => nth sets i) inner_setss; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 186 | val outer_map = mk_map_of_bnf oDs CAs setTs outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 187 | val map_inner_sets = Term.list_comb (outer_map, inner_sets); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 188 | val collect_image = mk_collect | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 189 | (map2 (fn f => fn set => HOLogic.mk_comp (mk_image f, set)) inner_sets outer_sets) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 190 | (CCA --> HOLogic.mk_setT T); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 191 | in | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 192 | (Library.foldl1 HOLogic.mk_comp [mk_Union T, outer_set, map_inner_sets], | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 193 | HOLogic.mk_comp (mk_Union T, collect_image)) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 194 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 195 | |
| 49303 | 196 | val (sets, sets_alt) = map_split mk_set (0 upto ilive - 1); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 197 | |
| 55906 | 198 | fun mk_simplified_set set = | 
| 199 | let | |
| 200 | val setT = fastype_of set; | |
| 55908 
e6d570cb0f5e
no 'sorry' so that the schematic variable gets instantiated
 blanchet parents: 
55906diff
changeset | 201 |         val var_set' = Const (@{const_name id_bnf_comp}, setT --> setT) $ Var ((Name.uu, 0), setT);
 | 
| 
e6d570cb0f5e
no 'sorry' so that the schematic variable gets instantiated
 blanchet parents: 
55906diff
changeset | 202 | val goal = mk_Trueprop_eq (var_set', set); | 
| 55930 
25a90cebbbe5
more careful simplification of sets (cf. abf91ebd0820)---yields smaller terms
 traytel parents: 
55908diff
changeset | 203 |         fun tac {context = ctxt, prems = _} =
 | 
| 
25a90cebbbe5
more careful simplification of sets (cf. abf91ebd0820)---yields smaller terms
 traytel parents: 
55908diff
changeset | 204 | mk_simplified_set_tac ctxt (collect_set_map_of_bnf outer); | 
| 55906 | 205 | val set'_eq_set = | 
| 57890 
1e13f63fb452
use Goal.prove_sorry instead of Goal.prove where possible (= no schematics in goal and tactic is expected to succeed)
 traytel parents: 
57632diff
changeset | 206 | Goal.prove (*no sorry*) names_lthy [] [] goal tac | 
| 55906 | 207 | |> Thm.close_derivation; | 
| 208 | val set' = fst (HOLogic.dest_eq (HOLogic.dest_Trueprop (Thm.prop_of set'_eq_set))); | |
| 209 | in | |
| 210 | (set', set'_eq_set) | |
| 211 | end; | |
| 212 | ||
| 213 | val (sets', set'_eq_sets) = | |
| 214 | map_split mk_simplified_set sets | |
| 215 | ||> Proof_Context.export names_lthy lthy; | |
| 216 | ||
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 217 | (*(inner_1.bd +c ... +c inner_m.bd) *c outer.bd*) | 
| 54421 | 218 | val bd = mk_cprod (Library.foldr1 (uncurry mk_csum) inner_bds) outer_bd; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 219 | |
| 55851 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 220 | val (bd', bd_ordIso_natLeq_thm_opt) = | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 221 | if is_sum_prod_natLeq bd then | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 222 | let | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 223 |           val bd' = @{term natLeq};
 | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 224 | val bd_bd' = HOLogic.mk_prod (bd, bd'); | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 225 |           val ordIso = Const (@{const_name ordIso}, HOLogic.mk_setT (fastype_of bd_bd'));
 | 
| 57567 | 226 | val goal = mk_Trueprop_mem (bd_bd', ordIso); | 
| 55851 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 227 | in | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 228 | (bd', SOME (Goal.prove_sorry lthy [] [] goal (K bd_ordIso_natLeq_tac) | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 229 | |> Thm.close_derivation)) | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 230 | end | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 231 | else | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 232 | (bd, NONE); | 
| 
3d40cf74726c
optimize cardinal bounds involving natLeq (omega)
 blanchet parents: 
55803diff
changeset | 233 | |
| 53270 | 234 | fun map_id0_tac _ = | 
| 235 | mk_comp_map_id0_tac (map_id0_of_bnf outer) (map_cong0_of_bnf outer) | |
| 236 | (map map_id0_of_bnf inners); | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 237 | |
| 53287 | 238 | fun map_comp0_tac _ = | 
| 239 | mk_comp_map_comp0_tac (map_comp0_of_bnf outer) (map_cong0_of_bnf outer) | |
| 240 | (map map_comp0_of_bnf inners); | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 241 | |
| 55906 | 242 | fun mk_single_set_map0_tac i ctxt = | 
| 243 | mk_comp_set_map0_tac ctxt (nth set'_eq_sets i) (map_comp0_of_bnf outer) | |
| 244 | (map_cong0_of_bnf outer) (collect_set_map_of_bnf outer) | |
| 53289 | 245 | (map ((fn thms => nth thms i) o set_map0_of_bnf) inners); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 246 | |
| 53289 | 247 | val set_map0_tacs = map mk_single_set_map0_tac (0 upto ilive - 1); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 248 | |
| 49303 | 249 | fun bd_card_order_tac _ = | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 250 | mk_comp_bd_card_order_tac (map bd_card_order_of_bnf inners) (bd_card_order_of_bnf outer); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 251 | |
| 49303 | 252 | fun bd_cinfinite_tac _ = | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 253 | mk_comp_bd_cinfinite_tac (bd_cinfinite_of_bnf inner) (bd_cinfinite_of_bnf outer); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 254 | |
| 49303 | 255 | val set_alt_thms = | 
| 52059 | 256 | if Config.get lthy quick_and_dirty then | 
| 49456 | 257 | [] | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 258 | else | 
| 49109 
0e5b859e1c91
no more aliases for Local_Theory.note; use Thm.close_derivation in internal theorems;
 traytel parents: 
49019diff
changeset | 259 | map (fn goal => | 
| 51551 | 260 | Goal.prove_sorry lthy [] [] goal | 
| 49714 | 261 |             (fn {context = ctxt, prems = _} =>
 | 
| 51766 
f19a4d0ab1bf
renamed "set_natural" to "set_map", reflecting {Bl,Po,Tr} concensus
 blanchet parents: 
51761diff
changeset | 262 | mk_comp_set_alt_tac ctxt (collect_set_map_of_bnf outer)) | 
| 49109 
0e5b859e1c91
no more aliases for Local_Theory.note; use Thm.close_derivation in internal theorems;
 traytel parents: 
49019diff
changeset | 263 | |> Thm.close_derivation) | 
| 49303 | 264 | (map2 (curry (HOLogic.mk_Trueprop o HOLogic.mk_eq)) sets sets_alt); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 265 | |
| 55906 | 266 | fun map_cong0_tac ctxt = | 
| 267 | mk_comp_map_cong0_tac ctxt set'_eq_sets set_alt_thms (map_cong0_of_bnf outer) | |
| 268 | (map map_cong0_of_bnf inners); | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 269 | |
| 49303 | 270 | val set_bd_tacs = | 
| 52059 | 271 | if Config.get lthy quick_and_dirty then | 
| 49669 | 272 | replicate ilive (K all_tac) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 273 | else | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 274 | let | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 275 | val outer_set_bds = set_bd_of_bnf outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 276 | val inner_set_bdss = map set_bd_of_bnf inners; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 277 | val inner_bd_Card_orders = map bd_Card_order_of_bnf inners; | 
| 49303 | 278 | fun single_set_bd_thm i j = | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 279 |             @{thm comp_single_set_bd} OF [nth inner_bd_Card_orders j, nth (nth inner_set_bdss j) i,
 | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 280 | nth outer_set_bds j] | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 281 | val single_set_bd_thmss = | 
| 49303 | 282 | map ((fn f => map f (0 upto olive - 1)) o single_set_bd_thm) (0 upto ilive - 1); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 283 | in | 
| 55906 | 284 | map3 (fn set'_eq_set => fn set_alt => fn single_set_bds => fn ctxt => | 
| 285 | mk_comp_set_bd_tac ctxt set'_eq_set bd_ordIso_natLeq_thm_opt set_alt single_set_bds) | |
| 286 | set'_eq_sets set_alt_thms single_set_bd_thmss | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 287 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 288 | |
| 49303 | 289 | val in_alt_thm = | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 290 | let | 
| 49303 | 291 | val inx = mk_in Asets sets CCA; | 
| 292 | val in_alt = mk_in (map2 (mk_in Asets) inner_setss CAs) outer_sets CCA; | |
| 293 | val goal = fold_rev Logic.all Asets (mk_Trueprop_eq (inx, in_alt)); | |
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 294 | in | 
| 51551 | 295 | Goal.prove_sorry lthy [] [] goal | 
| 49714 | 296 |           (fn {context = ctxt, prems = _} => mk_comp_in_alt_tac ctxt set_alt_thms)
 | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 297 | |> Thm.close_derivation | 
| 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 298 | end; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 299 | |
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 300 | fun le_rel_OO_tac _ = mk_le_rel_OO_tac (le_rel_OO_of_bnf outer) (rel_mono_of_bnf outer) | 
| 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 301 | (map le_rel_OO_of_bnf inners); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 302 | |
| 55906 | 303 | fun rel_OO_Grp_tac ctxt = | 
| 49456 | 304 | let | 
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 305 | val outer_rel_Grp = rel_Grp_of_bnf outer RS sym; | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 306 | val outer_rel_cong = rel_cong_of_bnf outer; | 
| 49463 | 307 | val thm = | 
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 308 |           (trans OF [in_alt_thm RS @{thm OO_Grp_cong},
 | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 309 |              trans OF [@{thm arg_cong2[of _ _ _ _ relcompp]} OF
 | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 310 |                [trans OF [outer_rel_Grp RS @{thm arg_cong[of _ _ conversep]},
 | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 311 | rel_conversep_of_bnf outer RS sym], outer_rel_Grp], | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 312 | trans OF [rel_OO_of_bnf outer RS sym, outer_rel_cong OF | 
| 55906 | 313 | (map (fn bnf => rel_OO_Grp_of_bnf bnf RS sym) inners)]]] RS sym); | 
| 49456 | 314 | in | 
| 55906 | 315 | unfold_thms_tac ctxt set'_eq_sets THEN rtac thm 1 | 
| 49463 | 316 | end; | 
| 49456 | 317 | |
| 53289 | 318 | val tacs = zip_axioms map_id0_tac map_comp0_tac map_cong0_tac set_map0_tacs bd_card_order_tac | 
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 319 | bd_cinfinite_tac set_bd_tacs le_rel_OO_tac rel_OO_Grp_tac; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 320 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 321 | val outer_wits = mk_wits_of_bnf (replicate onwits oDs) (replicate onwits CAs) outer; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 322 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 323 | val inner_witss = map (map (fn (I, wit) => Term.list_comb (wit, map (nth xs) I))) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 324 | (map3 (fn Ds => fn n => mk_wits_of_bnf (replicate n Ds) (replicate n As)) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 325 | Dss inwitss inners); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 326 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 327 | val inner_witsss = map (map (nth inner_witss) o fst) outer_wits; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 328 | |
| 49303 | 329 | val wits = (inner_witsss, (map (single o snd) outer_wits)) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 330 | |-> map2 (fold (map_product (fn iwit => fn owit => owit $ iwit))) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 331 | |> flat | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 332 | |> map (`(fn t => Term.add_frees t [])) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 333 | |> minimize_wits | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 334 | |> map (fn (frees, t) => fold absfree frees t); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 335 | |
| 55197 | 336 | fun wit_tac ctxt = | 
| 55906 | 337 | mk_comp_wit_tac ctxt set'_eq_sets (wit_thms_of_bnf outer) (collect_set_map_of_bnf outer) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 338 | (maps wit_thms_of_bnf inners); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 339 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 340 | val (bnf', lthy') = | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 341 | bnf_def const_policy (K Dont_Note) true qualify tacs wit_tac (SOME (oDs @ flat Dss)) | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 342 | Binding.empty Binding.empty [] ((((((b, CCA), mapx), sets'), bd'), wits), SOME rel) lthy; | 
| 55906 | 343 | |
| 344 | val phi = | |
| 55935 
8f20d09d294e
move special BNFs used for composition only to BNF_Comp;
 traytel parents: 
55930diff
changeset | 345 | Morphism.thm_morphism "BNF" (unfold_thms lthy' [id_bnf_comp_def]) | 
| 55937 | 346 | $> Morphism.term_morphism "BNF" expand_id_bnf_comp_def; | 
| 55906 | 347 | |
| 348 | val bnf'' = morph_bnf phi bnf'; | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 349 | in | 
| 55906 | 350 | (bnf'', (add_bnf_to_unfolds bnf'' unfold_set, lthy')) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 351 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 352 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 353 | (* Killing live variables *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 354 | |
| 55904 | 355 | fun raw_kill_bnf qualify n bnf (accum as (unfold_set, lthy)) = | 
| 356 | if n = 0 then (bnf, accum) else | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 357 | let | 
| 49425 | 358 | val b = Binding.suffix_name (mk_killN n) (name_of_bnf bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 359 | val live = live_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 360 | val dead = dead_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 361 | val nwits = nwits_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 362 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 363 | (* TODO: check 0 < n <= live *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 364 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 365 | val (Ds, lthy1) = apfst (map TFree) | 
| 56254 | 366 |       (Variable.invent_types (replicate dead @{sort type}) lthy);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 367 | val ((killedAs, As), lthy2) = apfst (`(take n) o map TFree) | 
| 56254 | 368 |       (Variable.invent_types (replicate live @{sort type}) lthy1);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 369 | val (Bs, _(*lthy3*)) = apfst (append killedAs o map TFree) | 
| 56254 | 370 |       (Variable.invent_types (replicate (live - n) @{sort type}) lthy2);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 371 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 372 | val ((Asets, lives), _(*names_lthy*)) = lthy | 
| 49456 | 373 | |> mk_Frees "A" (map HOLogic.mk_setT (drop n As)) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 374 | ||>> mk_Frees "x" (drop n As); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 375 |     val xs = map (fn T => HOLogic.choice_const T $ absdummy T @{term True}) killedAs @ lives;
 | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 376 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 377 | val T = mk_T_of_bnf Ds As bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 378 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 379 | (*bnf.map id ... id*) | 
| 49303 | 380 | val mapx = Term.list_comb (mk_map_of_bnf Ds As Bs bnf, map HOLogic.id_const killedAs); | 
| 49507 | 381 | (*bnf.rel (op =) ... (op =)*) | 
| 382 | val rel = Term.list_comb (mk_rel_of_bnf Ds As Bs bnf, map HOLogic.eq_const killedAs); | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 383 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 384 | val bnf_sets = mk_sets_of_bnf (replicate live Ds) (replicate live As) bnf; | 
| 49303 | 385 | val sets = drop n bnf_sets; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 386 | |
| 55707 
50cf04dd2584
clarified interaction with dead variables in the composition of BNFs
 traytel parents: 
55706diff
changeset | 387 | val bd = mk_bd_of_bnf Ds As bnf; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 388 | |
| 53270 | 389 | fun map_id0_tac _ = rtac (map_id0_of_bnf bnf) 1; | 
| 55197 | 390 | fun map_comp0_tac ctxt = | 
| 55067 | 391 | unfold_thms_tac ctxt ((map_comp0_of_bnf bnf RS sym) :: | 
| 392 |         @{thms comp_assoc id_comp comp_id}) THEN rtac refl 1;
 | |
| 55197 | 393 | fun map_cong0_tac ctxt = | 
| 51761 
4c9f08836d87
renamed "map_cong" axiom to "map_cong0" in preparation for real "map_cong"
 blanchet parents: 
51758diff
changeset | 394 | mk_kill_map_cong0_tac ctxt n (live - n) (map_cong0_of_bnf bnf); | 
| 53289 | 395 | val set_map0_tacs = map (fn thm => fn _ => rtac thm 1) (drop n (set_map0_of_bnf bnf)); | 
| 55707 
50cf04dd2584
clarified interaction with dead variables in the composition of BNFs
 traytel parents: 
55706diff
changeset | 396 | fun bd_card_order_tac _ = rtac (bd_card_order_of_bnf bnf) 1; | 
| 
50cf04dd2584
clarified interaction with dead variables in the composition of BNFs
 traytel parents: 
55706diff
changeset | 397 | fun bd_cinfinite_tac _ = rtac (bd_cinfinite_of_bnf bnf) 1; | 
| 
50cf04dd2584
clarified interaction with dead variables in the composition of BNFs
 traytel parents: 
55706diff
changeset | 398 | val set_bd_tacs = map (fn thm => fn _ => rtac thm 1) (drop n (set_bd_of_bnf bnf)); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 399 | |
| 49303 | 400 | val in_alt_thm = | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 401 | let | 
| 49303 | 402 | val inx = mk_in Asets sets T; | 
| 403 | val in_alt = mk_in (map HOLogic.mk_UNIV killedAs @ Asets) bnf_sets T; | |
| 404 | val goal = fold_rev Logic.all Asets (mk_Trueprop_eq (inx, in_alt)); | |
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 405 | in | 
| 51551 | 406 | Goal.prove_sorry lthy [] [] goal (K kill_in_alt_tac) |> Thm.close_derivation | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 407 | end; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 408 | |
| 55197 | 409 | fun le_rel_OO_tac ctxt = | 
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 410 |       EVERY' [rtac @{thm ord_le_eq_trans}, rtac (le_rel_OO_of_bnf bnf)] 1 THEN
 | 
| 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 411 |       unfold_thms_tac ctxt @{thms eq_OO} THEN rtac refl 1;
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 412 | |
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 413 | fun rel_OO_Grp_tac _ = | 
| 49456 | 414 | let | 
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 415 | val rel_Grp = rel_Grp_of_bnf bnf RS sym | 
| 49463 | 416 | val thm = | 
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 417 |           (trans OF [in_alt_thm RS @{thm OO_Grp_cong},
 | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 418 |             trans OF [@{thm arg_cong2[of _ _ _ _ relcompp]} OF
 | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 419 |               [trans OF [rel_Grp RS @{thm arg_cong[of _ _ conversep]},
 | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 420 | rel_conversep_of_bnf bnf RS sym], rel_Grp], | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 421 | trans OF [rel_OO_of_bnf bnf RS sym, rel_cong_of_bnf bnf OF | 
| 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 422 |                 (replicate n @{thm trans[OF Grp_UNIV_id[OF refl] eq_alt[symmetric]]} @
 | 
| 52660 | 423 |                  replicate (live - n) @{thm Grp_fst_snd})]]] RS sym);
 | 
| 49456 | 424 | in | 
| 49463 | 425 | rtac thm 1 | 
| 49456 | 426 | end; | 
| 427 | ||
| 53289 | 428 | val tacs = zip_axioms map_id0_tac map_comp0_tac map_cong0_tac set_map0_tacs bd_card_order_tac | 
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 429 | bd_cinfinite_tac set_bd_tacs le_rel_OO_tac rel_OO_Grp_tac; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 430 | |
| 49303 | 431 | val bnf_wits = mk_wits_of_bnf (replicate nwits Ds) (replicate nwits As) bnf; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 432 | |
| 49303 | 433 | val wits = map (fn t => fold absfree (Term.add_frees t []) t) | 
| 434 | (map (fn (I, wit) => Term.list_comb (wit, map (nth xs) I)) bnf_wits); | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 435 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 436 | fun wit_tac _ = mk_simple_wit_tac (wit_thms_of_bnf bnf); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 437 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 438 | val (bnf', lthy') = | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 439 | bnf_def Smart_Inline (K Dont_Note) true qualify tacs wit_tac (SOME (killedAs @ Ds)) | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 440 | Binding.empty Binding.empty [] ((((((b, T), mapx), sets), bd), wits), SOME rel) lthy; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 441 | in | 
| 49503 | 442 | (bnf', (add_bnf_to_unfolds bnf' unfold_set, lthy')) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 443 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 444 | |
| 55904 | 445 | fun kill_bnf qualify n bnf (accum as ((cache, unfold_set), lthy)) = | 
| 446 | let val key = key_of_kill n bnf in | |
| 447 | (case Typtab.lookup cache key of | |
| 448 | SOME (bnf, _) => (bnf, accum) | |
| 449 | | NONE => cache_comp_simple key cache (raw_kill_bnf qualify n bnf (unfold_set, lthy))) | |
| 450 | end; | |
| 451 | ||
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 452 | (* Adding dummy live variables *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 453 | |
| 55904 | 454 | fun raw_lift_bnf qualify n bnf (accum as (unfold_set, lthy)) = | 
| 455 | if n = 0 then (bnf, accum) else | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 456 | let | 
| 49425 | 457 | val b = Binding.suffix_name (mk_liftN n) (name_of_bnf bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 458 | val live = live_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 459 | val dead = dead_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 460 | val nwits = nwits_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 461 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 462 | (* TODO: check 0 < n *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 463 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 464 | val (Ds, lthy1) = apfst (map TFree) | 
| 56254 | 465 |       (Variable.invent_types (replicate dead @{sort type}) lthy);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 466 | val ((newAs, As), lthy2) = apfst (chop n o map TFree) | 
| 56254 | 467 |       (Variable.invent_types (replicate (n + live) @{sort type}) lthy1);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 468 | val ((newBs, Bs), _(*lthy3*)) = apfst (chop n o map TFree) | 
| 56254 | 469 |       (Variable.invent_types (replicate (n + live) @{sort type}) lthy2);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 470 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 471 | val (Asets, _(*names_lthy*)) = lthy | 
| 49456 | 472 | |> mk_Frees "A" (map HOLogic.mk_setT (newAs @ As)); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 473 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 474 | val T = mk_T_of_bnf Ds As bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 475 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 476 | (*%f1 ... fn. bnf.map*) | 
| 49303 | 477 | val mapx = | 
| 52923 | 478 | fold_rev Term.absdummy (map2 (curry op -->) newAs newBs) (mk_map_of_bnf Ds As Bs bnf); | 
| 49507 | 479 | (*%Q1 ... Qn. bnf.rel*) | 
| 480 | val rel = fold_rev Term.absdummy (map2 mk_pred2T newAs newBs) (mk_rel_of_bnf Ds As Bs bnf); | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 481 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 482 | val bnf_sets = mk_sets_of_bnf (replicate live Ds) (replicate live As) bnf; | 
| 49303 | 483 | val sets = map (fn A => absdummy T (HOLogic.mk_set A [])) newAs @ bnf_sets; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 484 | |
| 49303 | 485 | val bd = mk_bd_of_bnf Ds As bnf; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 486 | |
| 53270 | 487 | fun map_id0_tac _ = rtac (map_id0_of_bnf bnf) 1; | 
| 55197 | 488 | fun map_comp0_tac ctxt = | 
| 55067 | 489 | unfold_thms_tac ctxt ((map_comp0_of_bnf bnf RS sym) :: | 
| 490 |         @{thms comp_assoc id_comp comp_id}) THEN rtac refl 1;
 | |
| 55197 | 491 | fun map_cong0_tac ctxt = | 
| 51761 
4c9f08836d87
renamed "map_cong" axiom to "map_cong0" in preparation for real "map_cong"
 blanchet parents: 
51758diff
changeset | 492 | rtac (map_cong0_of_bnf bnf) 1 THEN REPEAT_DETERM_N live (Goal.assume_rule_tac ctxt 1); | 
| 53289 | 493 | val set_map0_tacs = | 
| 52059 | 494 | if Config.get lthy quick_and_dirty then | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 495 | replicate (n + live) (K all_tac) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 496 | else | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 497 | replicate n (K empty_natural_tac) @ | 
| 53289 | 498 | map (fn thm => fn _ => rtac thm 1) (set_map0_of_bnf bnf); | 
| 49303 | 499 | fun bd_card_order_tac _ = rtac (bd_card_order_of_bnf bnf) 1; | 
| 500 | fun bd_cinfinite_tac _ = rtac (bd_cinfinite_of_bnf bnf) 1; | |
| 501 | val set_bd_tacs = | |
| 52059 | 502 | if Config.get lthy quick_and_dirty then | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 503 | replicate (n + live) (K all_tac) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 504 | else | 
| 49304 | 505 | replicate n (K (mk_lift_set_bd_tac (bd_Card_order_of_bnf bnf))) @ | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 506 | (map (fn thm => fn _ => rtac thm 1) (set_bd_of_bnf bnf)); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 507 | |
| 49303 | 508 | val in_alt_thm = | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 509 | let | 
| 49303 | 510 | val inx = mk_in Asets sets T; | 
| 511 | val in_alt = mk_in (drop n Asets) bnf_sets T; | |
| 512 | val goal = fold_rev Logic.all Asets (mk_Trueprop_eq (inx, in_alt)); | |
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 513 | in | 
| 51551 | 514 | Goal.prove_sorry lthy [] [] goal (K lift_in_alt_tac) |> Thm.close_derivation | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 515 | end; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 516 | |
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 517 | fun le_rel_OO_tac _ = rtac (le_rel_OO_of_bnf bnf) 1; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 518 | |
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 519 | fun rel_OO_Grp_tac _ = mk_simple_rel_OO_Grp_tac (rel_OO_Grp_of_bnf bnf) in_alt_thm; | 
| 49456 | 520 | |
| 53289 | 521 | val tacs = zip_axioms map_id0_tac map_comp0_tac map_cong0_tac set_map0_tacs bd_card_order_tac | 
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 522 | bd_cinfinite_tac set_bd_tacs le_rel_OO_tac rel_OO_Grp_tac; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 523 | |
| 49303 | 524 | val wits = map snd (mk_wits_of_bnf (replicate nwits Ds) (replicate nwits As) bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 525 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 526 | fun wit_tac _ = mk_simple_wit_tac (wit_thms_of_bnf bnf); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 527 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 528 | val (bnf', lthy') = | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 529 | bnf_def Smart_Inline (K Dont_Note) true qualify tacs wit_tac (SOME Ds) Binding.empty | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 530 | Binding.empty [] ((((((b, T), mapx), sets), bd), wits), SOME rel) lthy; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 531 | in | 
| 49503 | 532 | (bnf', (add_bnf_to_unfolds bnf' unfold_set, lthy')) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 533 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 534 | |
| 55904 | 535 | fun lift_bnf qualify n bnf (accum as ((cache, unfold_set), lthy)) = | 
| 536 | let val key = key_of_lift n bnf in | |
| 537 | (case Typtab.lookup cache key of | |
| 538 | SOME (bnf, _) => (bnf, accum) | |
| 539 | | NONE => cache_comp_simple key cache (raw_lift_bnf qualify n bnf (unfold_set, lthy))) | |
| 540 | end; | |
| 541 | ||
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 542 | (* Changing the order of live variables *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 543 | |
| 55904 | 544 | fun raw_permute_bnf qualify src dest bnf (accum as (unfold_set, lthy)) = | 
| 545 | if src = dest then (bnf, accum) else | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 546 | let | 
| 49425 | 547 | val b = Binding.suffix_name (mk_permuteN src dest) (name_of_bnf bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 548 | val live = live_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 549 | val dead = dead_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 550 | val nwits = nwits_of_bnf bnf; | 
| 55480 
59cc4a8bc28a
allow different functions to recurse on the same type, like in the old package
 blanchet parents: 
55197diff
changeset | 551 | |
| 
59cc4a8bc28a
allow different functions to recurse on the same type, like in the old package
 blanchet parents: 
55197diff
changeset | 552 | fun permute xs = permute_like_unique (op =) src dest xs; | 
| 
59cc4a8bc28a
allow different functions to recurse on the same type, like in the old package
 blanchet parents: 
55197diff
changeset | 553 | fun unpermute xs = permute_like_unique (op =) dest src xs; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 554 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 555 | val (Ds, lthy1) = apfst (map TFree) | 
| 56254 | 556 |       (Variable.invent_types (replicate dead @{sort type}) lthy);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 557 | val (As, lthy2) = apfst (map TFree) | 
| 56254 | 558 |       (Variable.invent_types (replicate live @{sort type}) lthy1);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 559 | val (Bs, _(*lthy3*)) = apfst (map TFree) | 
| 56254 | 560 |       (Variable.invent_types (replicate live @{sort type}) lthy2);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 561 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 562 | val (Asets, _(*names_lthy*)) = lthy | 
| 49456 | 563 | |> mk_Frees "A" (map HOLogic.mk_setT (permute As)); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 564 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 565 | val T = mk_T_of_bnf Ds As bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 566 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 567 | (*%f(1) ... f(n). bnf.map f\<sigma>(1) ... f\<sigma>(n)*) | 
| 49303 | 568 | val mapx = fold_rev Term.absdummy (permute (map2 (curry op -->) As Bs)) | 
| 53038 | 569 | (Term.list_comb (mk_map_of_bnf Ds As Bs bnf, unpermute (map Bound (live - 1 downto 0)))); | 
| 49507 | 570 | (*%Q(1) ... Q(n). bnf.rel Q\<sigma>(1) ... Q\<sigma>(n)*) | 
| 571 | val rel = fold_rev Term.absdummy (permute (map2 mk_pred2T As Bs)) | |
| 53038 | 572 | (Term.list_comb (mk_rel_of_bnf Ds As Bs bnf, unpermute (map Bound (live - 1 downto 0)))); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 573 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 574 | val bnf_sets = mk_sets_of_bnf (replicate live Ds) (replicate live As) bnf; | 
| 49303 | 575 | val sets = permute bnf_sets; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 576 | |
| 49303 | 577 | val bd = mk_bd_of_bnf Ds As bnf; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 578 | |
| 53270 | 579 | fun map_id0_tac _ = rtac (map_id0_of_bnf bnf) 1; | 
| 53287 | 580 | fun map_comp0_tac _ = rtac (map_comp0_of_bnf bnf) 1; | 
| 55197 | 581 | fun map_cong0_tac ctxt = | 
| 51761 
4c9f08836d87
renamed "map_cong" axiom to "map_cong0" in preparation for real "map_cong"
 blanchet parents: 
51758diff
changeset | 582 | rtac (map_cong0_of_bnf bnf) 1 THEN REPEAT_DETERM_N live (Goal.assume_rule_tac ctxt 1); | 
| 53289 | 583 | val set_map0_tacs = permute (map (fn thm => fn _ => rtac thm 1) (set_map0_of_bnf bnf)); | 
| 49303 | 584 | fun bd_card_order_tac _ = rtac (bd_card_order_of_bnf bnf) 1; | 
| 585 | fun bd_cinfinite_tac _ = rtac (bd_cinfinite_of_bnf bnf) 1; | |
| 586 | val set_bd_tacs = permute (map (fn thm => fn _ => rtac thm 1) (set_bd_of_bnf bnf)); | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 587 | |
| 49303 | 588 | val in_alt_thm = | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 589 | let | 
| 49303 | 590 | val inx = mk_in Asets sets T; | 
| 53038 | 591 | val in_alt = mk_in (unpermute Asets) bnf_sets T; | 
| 49303 | 592 | val goal = fold_rev Logic.all Asets (mk_Trueprop_eq (inx, in_alt)); | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 593 | in | 
| 51551 | 594 | Goal.prove_sorry lthy [] [] goal (K (mk_permute_in_alt_tac src dest)) | 
| 49155 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 595 | |> Thm.close_derivation | 
| 
f51ab68f882f
do not trivialize important internal theorem in quick_and_dirty mode
 traytel parents: 
49123diff
changeset | 596 | end; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 597 | |
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 598 | fun le_rel_OO_tac _ = rtac (le_rel_OO_of_bnf bnf) 1; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 599 | |
| 51893 
596baae88a88
got rid of the set based relator---use (binary) predicate based relator instead
 traytel parents: 
51837diff
changeset | 600 | fun rel_OO_Grp_tac _ = mk_simple_rel_OO_Grp_tac (rel_OO_Grp_of_bnf bnf) in_alt_thm; | 
| 49456 | 601 | |
| 53289 | 602 | val tacs = zip_axioms map_id0_tac map_comp0_tac map_cong0_tac set_map0_tacs bd_card_order_tac | 
| 54841 
af71b753c459
express weak pullback property of bnfs only in terms of the relator
 traytel parents: 
54742diff
changeset | 603 | bd_cinfinite_tac set_bd_tacs le_rel_OO_tac rel_OO_Grp_tac; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 604 | |
| 49303 | 605 | val wits = map snd (mk_wits_of_bnf (replicate nwits Ds) (replicate nwits As) bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 606 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 607 | fun wit_tac _ = mk_simple_wit_tac (wit_thms_of_bnf bnf); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 608 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 609 | val (bnf', lthy') = | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 610 | bnf_def Smart_Inline (K Dont_Note) true qualify tacs wit_tac (SOME Ds) Binding.empty | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 611 | Binding.empty [] ((((((b, T), mapx), sets), bd), wits), SOME rel) lthy; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 612 | in | 
| 49503 | 613 | (bnf', (add_bnf_to_unfolds bnf' unfold_set, lthy')) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 614 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 615 | |
| 55904 | 616 | fun permute_bnf qualify src dest bnf (accum as ((cache, unfold_set), lthy)) = | 
| 617 | let val key = key_of_permute src dest bnf in | |
| 618 | (case Typtab.lookup cache key of | |
| 619 | SOME (bnf, _) => (bnf, accum) | |
| 620 | | NONE => cache_comp_simple key cache (raw_permute_bnf qualify src dest bnf (unfold_set, lthy))) | |
| 621 | end; | |
| 622 | ||
| 49014 | 623 | (* Composition pipeline *) | 
| 624 | ||
| 625 | fun permute_and_kill qualify n src dest bnf = | |
| 55703 
a21069381ba5
optimization of 'bnf_of_typ' if all variables are dead
 blanchet parents: 
55480diff
changeset | 626 | permute_bnf qualify src dest bnf | 
| 49304 | 627 | #> uncurry (kill_bnf qualify n); | 
| 49014 | 628 | |
| 629 | fun lift_and_permute qualify n src dest bnf = | |
| 55703 
a21069381ba5
optimization of 'bnf_of_typ' if all variables are dead
 blanchet parents: 
55480diff
changeset | 630 | lift_bnf qualify n bnf | 
| 49014 | 631 | #> uncurry (permute_bnf qualify src dest); | 
| 632 | ||
| 55904 | 633 | fun normalize_bnfs qualify Ass Ds sort bnfs accum = | 
| 49014 | 634 | let | 
| 635 | val before_kill_src = map (fn As => 0 upto (length As - 1)) Ass; | |
| 52985 | 636 | val kill_poss = map (find_indices op = Ds) Ass; | 
| 637 | val live_poss = map2 (subtract op =) kill_poss before_kill_src; | |
| 49014 | 638 | val before_kill_dest = map2 append kill_poss live_poss; | 
| 639 | val kill_ns = map length kill_poss; | |
| 55904 | 640 | val (inners', accum') = | 
| 49014 | 641 | fold_map5 (fn i => permute_and_kill (qualify i)) | 
| 642 | (if length bnfs = 1 then [0] else (1 upto length bnfs)) | |
| 55904 | 643 | kill_ns before_kill_src before_kill_dest bnfs accum; | 
| 49014 | 644 | |
| 645 | val Ass' = map2 (map o nth) Ass live_poss; | |
| 646 | val As = sort Ass'; | |
| 647 | val after_lift_dest = replicate (length Ass') (0 upto (length As - 1)); | |
| 648 | val old_poss = map (map (fn x => find_index (fn y => x = y) As)) Ass'; | |
| 52985 | 649 | val new_poss = map2 (subtract op =) old_poss after_lift_dest; | 
| 49014 | 650 | val after_lift_src = map2 append new_poss old_poss; | 
| 651 | val lift_ns = map (fn xs => length As - length xs) Ass'; | |
| 652 | in | |
| 653 | ((kill_poss, As), fold_map5 (fn i => lift_and_permute (qualify i)) | |
| 55703 
a21069381ba5
optimization of 'bnf_of_typ' if all variables are dead
 blanchet parents: 
55480diff
changeset | 654 | (if length bnfs = 1 then [0] else 1 upto length bnfs) | 
| 55904 | 655 | lift_ns after_lift_src after_lift_dest inners' accum') | 
| 49014 | 656 | end; | 
| 657 | ||
| 658 | fun default_comp_sort Ass = | |
| 659 | Library.sort (Term_Ord.typ_ord o pairself TFree) (fold (fold (insert (op =))) Ass []); | |
| 660 | ||
| 55904 | 661 | fun raw_compose_bnf const_policy qualify sort outer inners oDs Dss tfreess accum = | 
| 49014 | 662 | let | 
| 49425 | 663 | val b = name_of_bnf outer; | 
| 49014 | 664 | |
| 49121 | 665 | val Ass = map (map Term.dest_TFree) tfreess; | 
| 49014 | 666 | val Ds = fold (fold Term.add_tfreesT) (oDs :: Dss) []; | 
| 667 | ||
| 55904 | 668 | val ((kill_poss, As), (inners', ((cache', unfold_set'), lthy'))) = | 
| 669 | normalize_bnfs qualify Ass Ds sort inners accum; | |
| 49014 | 670 | |
| 671 | val Ds = oDs @ flat (map3 (append oo map o nth) tfreess kill_poss Dss); | |
| 672 | val As = map TFree As; | |
| 673 | in | |
| 49425 | 674 | apfst (rpair (Ds, As)) | 
| 55904 | 675 | (apsnd (apfst (pair cache')) | 
| 676 | (clean_compose_bnf const_policy (qualify 0) b outer inners' (unfold_set', lthy'))) | |
| 677 | end; | |
| 678 | ||
| 679 | fun compose_bnf const_policy qualify sort outer inners oDs Dss tfreess (accum as ((cache, _), _)) = | |
| 680 | let val key = key_of_compose oDs Dss tfreess outer inners in | |
| 681 | (case Typtab.lookup cache key of | |
| 682 | SOME bnf_Ds_As => (bnf_Ds_As, accum) | |
| 683 | | NONE => | |
| 684 | cache_comp key (raw_compose_bnf const_policy qualify sort outer inners oDs Dss tfreess accum)) | |
| 49014 | 685 | end; | 
| 686 | ||
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 687 | (* Hide the type of the bound (optimization) and unfold the definitions (nicer to the user) *) | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 688 | |
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 689 | type absT_info = | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 690 |   {absT: typ,
 | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 691 | repT: typ, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 692 | abs: term, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 693 | rep: term, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 694 | abs_inject: thm, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 695 | abs_inverse: thm, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 696 | type_definition: thm}; | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 697 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 698 | fun morph_absT_info phi | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 699 |   {absT, repT, abs, rep, abs_inject, abs_inverse, type_definition} =
 | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 700 |   {absT = Morphism.typ phi absT,
 | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 701 | repT = Morphism.typ phi repT, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 702 | abs = Morphism.term phi abs, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 703 | rep = Morphism.term phi rep, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 704 | abs_inject = Morphism.thm phi abs_inject, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 705 | abs_inverse = Morphism.thm phi abs_inverse, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 706 | type_definition = Morphism.thm phi type_definition}; | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 707 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 708 | fun mk_absT thy repT absT repU = | 
| 55900 
21aa30ea6806
propagate the exception that is expected later on
 traytel parents: 
55856diff
changeset | 709 | let | 
| 56634 | 710 | val rho = Vartab.fold (cons o apsnd snd) (Sign.typ_match thy (repT, repU) Vartab.empty) []; | 
| 55900 
21aa30ea6806
propagate the exception that is expected later on
 traytel parents: 
55856diff
changeset | 711 | in Term.typ_subst_TVars rho absT end | 
| 
21aa30ea6806
propagate the exception that is expected later on
 traytel parents: 
55856diff
changeset | 712 |   handle Type.TYPE_MATCH => raise Term.TYPE ("mk_absT", [repT, absT, repU], []);
 | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 713 | |
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 714 | fun mk_repT absT repT absU = | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 715 | if absT = repT then absU | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 716 | else | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 717 | (case (absT, absU) of | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 718 | (Type (C, Ts), Type (C', Us)) => | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 719 | if C = C' then Term.typ_subst_atomic (Ts ~~ Us) repT | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 720 |         else raise Term.TYPE ("mk_repT", [absT, repT, absT], [])
 | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 721 |     | _ => raise Term.TYPE ("mk_repT", [absT, repT, absT], []));
 | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 722 | |
| 55855 
98ad5680173a
use same identity function for abs and rep (doesn't seem to confuse any proofs)
 blanchet parents: 
55854diff
changeset | 723 | fun mk_abs_or_rep _ absU (Const (@{const_name id_bnf_comp}, _)) =
 | 
| 
98ad5680173a
use same identity function for abs and rep (doesn't seem to confuse any proofs)
 blanchet parents: 
55854diff
changeset | 724 |     Const (@{const_name id_bnf_comp}, absU --> absU)
 | 
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 725 | | mk_abs_or_rep getT (Type (_, Us)) abs = | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 726 | let val Ts = snd (dest_Type (getT (fastype_of abs))) | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 727 | in Term.subst_atomic_types (Ts ~~ Us) abs end; | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 728 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 729 | val mk_abs = mk_abs_or_rep range_type; | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 730 | val mk_rep = mk_abs_or_rep domain_type; | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 731 | |
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 732 | val smart_max_inline_type_size = 5; (*FUDGE*) | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 733 | |
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 734 | fun maybe_typedef (b, As, mx) set opt_morphs tac = | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 735 | let | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 736 | val repT = HOLogic.dest_setT (fastype_of set); | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 737 | val inline = Term.size_of_typ repT <= smart_max_inline_type_size; | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 738 | in | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 739 | if inline then | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 740 | pair (repT, | 
| 55855 
98ad5680173a
use same identity function for abs and rep (doesn't seem to confuse any proofs)
 blanchet parents: 
55854diff
changeset | 741 |         (@{const_name id_bnf_comp}, @{const_name id_bnf_comp},
 | 
| 
98ad5680173a
use same identity function for abs and rep (doesn't seem to confuse any proofs)
 blanchet parents: 
55854diff
changeset | 742 |          @{thm type_definition_id_bnf_comp_UNIV},
 | 
| 
98ad5680173a
use same identity function for abs and rep (doesn't seem to confuse any proofs)
 blanchet parents: 
55854diff
changeset | 743 |          @{thm type_definition.Abs_inverse[OF type_definition_id_bnf_comp_UNIV]},
 | 
| 56012 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 744 |          @{thm type_definition.Abs_inject[OF type_definition_id_bnf_comp_UNIV]},
 | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 745 |          @{thm type_definition.Abs_cases[OF type_definition_id_bnf_comp_UNIV]}))
 | 
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 746 | else | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 747 | typedef (b, As, mx) set opt_morphs tac | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 748 |       #>> (fn (T_name, ({Rep_name, Abs_name, ...},
 | 
| 56012 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 749 |           {type_definition, Abs_inverse, Abs_inject, Abs_cases, ...}) : Typedef.info) =>
 | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 750 | (Type (T_name, map TFree As), | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 751 | (Rep_name, Abs_name, type_definition, Abs_inverse, Abs_inject, Abs_cases))) | 
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 752 | end; | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 753 | |
| 53264 | 754 | fun seal_bnf qualify (unfold_set : unfold_set) b Ds bnf lthy = | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 755 | let | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 756 | val live = live_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 757 | val nwits = nwits_of_bnf bnf; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 758 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 759 | val (As, lthy1) = apfst (map TFree) | 
| 56254 | 760 |       (Variable.invent_types (replicate live @{sort type}) (fold Variable.declare_typ Ds lthy));
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 761 | val (Bs, _) = apfst (map TFree) | 
| 56254 | 762 |       (Variable.invent_types (replicate live @{sort type}) lthy1);
 | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 763 | |
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 764 | val (((fs, fs'), (Rs, Rs')), _(*names_lthy*)) = lthy | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 765 | |> mk_Frees' "f" (map2 (curry op -->) As Bs) | 
| 55937 | 766 | ||>> mk_Frees' "R" (map2 mk_pred2T As Bs); | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 767 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 768 | val repTA = mk_T_of_bnf Ds As bnf; | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 769 | val T_bind = qualify b; | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 770 | val TA_params = Term.add_tfreesT repTA []; | 
| 56012 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 771 | val ((TA, (Rep_name, Abs_name, type_definition, Abs_inverse, Abs_inject, _)), lthy) = | 
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 772 | maybe_typedef (T_bind, TA_params, NoSyn) | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 773 | (HOLogic.mk_UNIV repTA) NONE (EVERY' [rtac exI, rtac UNIV_I] 1) lthy; | 
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 774 | |
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 775 | val repTB = mk_T_of_bnf Ds Bs bnf; | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 776 | val TB = Term.typ_subst_atomic (As ~~ Bs) TA; | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 777 | val RepA = Const (Rep_name, TA --> repTA); | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 778 | val RepB = Const (Rep_name, TB --> repTB); | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 779 | val AbsA = Const (Abs_name, repTA --> TA); | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 780 | val AbsB = Const (Abs_name, repTB --> TB); | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 781 |     val Abs_inject' = Abs_inject OF @{thms UNIV_I UNIV_I};
 | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 782 |     val Abs_inverse' = Abs_inverse OF @{thms UNIV_I};
 | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 783 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 784 |     val absT_info = {absT = TA, repT = repTA, abs = AbsA, rep = RepA, abs_inject = Abs_inject',
 | 
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 785 | abs_inverse = Abs_inverse', type_definition = type_definition}; | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 786 | |
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 787 | val bnf_map = fold_rev Term.absfree fs' (HOLogic.mk_comp (HOLogic.mk_comp (AbsB, | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 788 | Term.list_comb (mk_map_of_bnf Ds As Bs bnf, fs)), RepA)); | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 789 | val bnf_sets = map ((fn t => HOLogic.mk_comp (t, RepA))) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 790 | (mk_sets_of_bnf (replicate live Ds) (replicate live As) bnf); | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 791 | val bnf_bd = mk_bd_of_bnf Ds As bnf; | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 792 | val bnf_rel = fold_rev Term.absfree Rs' (mk_vimage2p RepA RepB $ | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 793 | (Term.list_comb (mk_rel_of_bnf Ds As Bs bnf, Rs))); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 794 | |
| 55704 
a97b9b81e195
optimized 'bnf_of_typ' further w.r.t. dead variables
 blanchet parents: 
55703diff
changeset | 795 | (*bd may depend only on dead type variables*) | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 796 | val bd_repT = fst (dest_relT (fastype_of bnf_bd)); | 
| 53264 | 797 |     val bdT_bind = qualify (Binding.suffix_name ("_" ^ bdTN) b);
 | 
| 55707 
50cf04dd2584
clarified interaction with dead variables in the composition of BNFs
 traytel parents: 
55706diff
changeset | 798 | val params = Term.add_tfreesT bd_repT []; | 
| 
50cf04dd2584
clarified interaction with dead variables in the composition of BNFs
 traytel parents: 
55706diff
changeset | 799 | val all_deads = map TFree (fold Term.add_tfreesT Ds []); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 800 | |
| 56012 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 801 | val ((bdT, (_, Abs_bd_name, _, _, Abs_bdT_inject, Abs_bdT_cases)), lthy) = | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 802 | maybe_typedef (bdT_bind, params, NoSyn) | 
| 49228 | 803 | (HOLogic.mk_UNIV bd_repT) NONE (EVERY' [rtac exI, rtac UNIV_I] 1) lthy; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 804 | |
| 56012 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 805 | val (bnf_bd', bd_ordIso, bd_card_order, bd_cinfinite) = | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 806 |       if bdT = bd_repT then (bnf_bd, bd_Card_order_of_bnf bnf RS @{thm ordIso_refl},
 | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 807 | bd_card_order_of_bnf bnf, bd_cinfinite_of_bnf bnf) | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 808 | else | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 809 | let | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 810 | val bnf_bd' = mk_dir_image bnf_bd (Const (Abs_bd_name, bd_repT --> bdT)); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 811 | |
| 56012 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 812 | val Abs_bdT_inj = mk_Abs_inj_thm Abs_bdT_inject; | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 813 | val Abs_bdT_bij = mk_Abs_bij_thm lthy Abs_bdT_inj Abs_bdT_cases; | 
| 57567 | 814 | |
| 56012 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 815 |           val bd_ordIso = @{thm dir_image} OF [Abs_bdT_inj, bd_Card_order_of_bnf bnf];
 | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 816 | val bd_card_order = | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 817 |             @{thm card_order_dir_image} OF [Abs_bdT_bij, bd_card_order_of_bnf bnf];
 | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 818 | val bd_cinfinite = | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 819 |             (@{thm Cinfinite_cong} OF [bd_ordIso, bd_Cinfinite_of_bnf bnf]) RS conjunct1;
 | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 820 | in | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 821 | (bnf_bd', bd_ordIso, bd_card_order, bd_cinfinite) | 
| 
158dc03db8be
made typedef for the type of the bound optional (size-based)
 traytel parents: 
56010diff
changeset | 822 | end; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 823 | |
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 824 | fun map_id0_tac _ = | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 825 |       rtac (@{thm type_copy_map_id0} OF [type_definition, map_id0_of_bnf bnf]) 1;
 | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 826 | fun map_comp0_tac _ = | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 827 |       rtac (@{thm type_copy_map_comp0} OF [type_definition, map_comp0_of_bnf bnf]) 1;
 | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 828 | fun map_cong0_tac _ = | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 829 |       EVERY' (rtac @{thm type_copy_map_cong0} :: rtac (map_cong0_of_bnf bnf) ::
 | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 830 | map (fn i => EVERY' [select_prem_tac live (dtac meta_spec) i, etac meta_mp, | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 831 | etac (o_apply RS equalityD2 RS set_mp)]) (1 upto live)) 1; | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 832 | fun set_map0_tac thm _ = | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 833 |       rtac (@{thm type_copy_set_map0} OF [type_definition, thm]) 1;
 | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 834 |     val set_bd_tacs = map (fn thm => fn _ => rtac (@{thm ordLeq_ordIso_trans} OF
 | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 835 |         [thm, bd_ordIso] RS @{thm type_copy_set_bd}) 1) (set_bd_of_bnf bnf);
 | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 836 | fun le_rel_OO_tac _ = | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 837 |       rtac (le_rel_OO_of_bnf bnf RS @{thm vimage2p_relcompp_mono}) 1;
 | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 838 | fun rel_OO_Grp_tac ctxt = | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 839 |       (rtac (rel_OO_Grp_of_bnf bnf RS @{thm vimage2p_cong} RS trans) THEN'
 | 
| 55854 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 840 | SELECT_GOAL (unfold_thms_tac ctxt [o_apply, | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 841 |         type_definition RS @{thm type_copy_vimage2p_Grp_Rep},
 | 
| 
ee270328a781
make 'typedef' optional, depending on size of original type
 blanchet parents: 
55853diff
changeset | 842 |         type_definition RS @{thm vimage2p_relcompp_converse}]) THEN' rtac refl) 1;
 | 
| 49456 | 843 | |
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 844 | val tacs = zip_axioms map_id0_tac map_comp0_tac map_cong0_tac | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 845 | (map set_map0_tac (set_map0_of_bnf bnf)) (K (rtac bd_card_order 1)) (K (rtac bd_cinfinite 1)) | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 846 | set_bd_tacs le_rel_OO_tac rel_OO_Grp_tac; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 847 | |
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 848 | val bnf_wits = map (fn (I, t) => | 
| 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 849 | fold Term.absdummy (map (nth As) I) | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 850 | (AbsA $ Term.list_comb (t, map Bound (0 upto length I - 1)))) | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 851 | (mk_wits_of_bnf (replicate nwits Ds) (replicate nwits As) bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 852 | |
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 853 |     fun wit_tac _ = ALLGOALS (dtac (type_definition RS @{thm type_copy_wit})) THEN
 | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 854 | mk_simple_wit_tac (wit_thms_of_bnf bnf); | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 855 | |
| 53264 | 856 | val (bnf', lthy') = | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 857 | bnf_def Hardly_Inline (user_policy Dont_Note) true qualify tacs wit_tac (SOME all_deads) | 
| 53264 | 858 | Binding.empty Binding.empty [] | 
| 55803 
74d3fe9031d8
joint work with blanchet: intermediate typedef for the input to fp-operations
 traytel parents: 
55707diff
changeset | 859 | ((((((b, TA), bnf_map), bnf_sets), bnf_bd'), bnf_wits), SOME bnf_rel) lthy; | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 860 | |
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 861 |     val unfolds = @{thm id_bnf_comp_apply} ::
 | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 862 | (#map_unfolds unfold_set @ flat (#set_unfoldss unfold_set) @ #rel_unfolds unfold_set); | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 863 | |
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 864 | val bnf'' = bnf' |> morph_bnf_defs (Morphism.thm_morphism "BNF" (unfold_thms lthy' unfolds)); | 
| 57567 | 865 | |
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 866 | val map_def = map_def_of_bnf bnf''; | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 867 | val set_defs = set_defs_of_bnf bnf''; | 
| 56018 | 868 | val rel_def = rel_def_of_bnf bnf''; | 
| 56016 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 869 | |
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 870 | val bnf_b = qualify b; | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 871 | val def_qualify = | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 872 | Thm.def_binding o Binding.conceal o Binding.qualify false (Binding.name_of bnf_b); | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 873 | fun mk_prefix_binding pre = Binding.prefix_name (pre ^ "_") bnf_b; | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 874 | val map_b = def_qualify (mk_prefix_binding mapN); | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 875 | val rel_b = def_qualify (mk_prefix_binding relN); | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 876 | val set_bs = if live = 1 then [def_qualify (mk_prefix_binding setN)] | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 877 | else map (fn i => def_qualify (mk_prefix_binding (mk_setN i))) (1 upto live); | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 878 | |
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 879 | val notes = (map_b, map_def) :: (rel_b, rel_def) :: (set_bs ~~ set_defs) | 
| 
8875cdcfc85b
unfold intermediate definitions after sealing the bnf
 traytel parents: 
56013diff
changeset | 880 | |> map (fn (b, def) => ((b, []), [([def], [])])) | 
| 57632 | 881 | |
| 882 | val (noted, lthy'') = lthy' |> Local_Theory.notes notes | |
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 883 | in | 
| 57632 | 884 | ((morph_bnf (substitute_noted_thm noted) bnf'', (all_deads, absT_info)), lthy'') | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 885 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 886 | |
| 53222 | 887 | exception BAD_DEAD of typ * typ; | 
| 888 | ||
| 55704 
a97b9b81e195
optimized 'bnf_of_typ' further w.r.t. dead variables
 blanchet parents: 
55703diff
changeset | 889 | fun bnf_of_typ _ _ _ _ Ds0 (T as TFree T') accum = | 
| 
a97b9b81e195
optimized 'bnf_of_typ' further w.r.t. dead variables
 blanchet parents: 
55703diff
changeset | 890 | (if member (op =) Ds0 T' then (DEADID_bnf, ([T], [])) else (ID_bnf, ([], [T])), accum) | 
| 55703 
a21069381ba5
optimization of 'bnf_of_typ' if all variables are dead
 blanchet parents: 
55480diff
changeset | 891 | | bnf_of_typ _ _ _ _ _ (TVar _) _ = error "Unexpected schematic variable" | 
| 55706 | 892 | | bnf_of_typ const_policy qualify' sort Xs Ds0 (T as Type (C, Ts)) (accum as (_, lthy)) = | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 893 | let | 
| 53222 | 894 | fun check_bad_dead ((_, (deads, _)), _) = | 
| 895 | let val Ds = fold Term.add_tfreesT deads [] in | |
| 896 | (case Library.inter (op =) Ds Xs of [] => () | |
| 55705 | 897 | | X :: _ => raise BAD_DEAD (TFree X, T)) | 
| 53222 | 898 | end; | 
| 899 | ||
| 55704 
a97b9b81e195
optimized 'bnf_of_typ' further w.r.t. dead variables
 blanchet parents: 
55703diff
changeset | 900 | val tfrees = subtract (op =) Ds0 (Term.add_tfreesT T []); | 
| 
a97b9b81e195
optimized 'bnf_of_typ' further w.r.t. dead variables
 blanchet parents: 
55703diff
changeset | 901 | val bnf_opt = if null tfrees then NONE else bnf_of lthy C; | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 902 | in | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 903 | (case bnf_opt of | 
| 55704 
a97b9b81e195
optimized 'bnf_of_typ' further w.r.t. dead variables
 blanchet parents: 
55703diff
changeset | 904 | NONE => ((DEADID_bnf, ([T], [])), accum) | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 905 | | SOME bnf => | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 906 | if forall (can Term.dest_TFree) Ts andalso length Ts = length tfrees then | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 907 | let | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 908 | val T' = T_of_bnf bnf; | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 909 | val deads = deads_of_bnf bnf; | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 910 | val lives = lives_of_bnf bnf; | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 911 | val tvars' = Term.add_tvarsT T' []; | 
| 55904 | 912 | val Ds_As = | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 913 | pairself (map (Term.typ_subst_TVars (map fst tvars' ~~ map TFree tfrees))) | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 914 | (deads, lives); | 
| 55904 | 915 | in ((bnf, Ds_As), accum) end | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 916 | else | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 917 | let | 
| 49425 | 918 | val name = Long_Name.base_name C; | 
| 919 | fun qualify i = | |
| 920 | let val namei = name ^ nonzero_string_of_int i; | |
| 921 | in qualify' o Binding.qualify true namei end; | |
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 922 | val odead = dead_of_bnf bnf; | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 923 | val olive = live_of_bnf bnf; | 
| 52985 | 924 |             val oDs_pos = find_indices op = [TFree ("dead", [])] (snd (Term.dest_Type
 | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 925 |               (mk_T_of_bnf (replicate odead (TFree ("dead", []))) (replicate olive dummyT) bnf)));
 | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 926 | val oDs = map (nth Ts) oDs_pos; | 
| 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 927 | val Ts' = map (nth Ts) (subtract (op =) oDs_pos (0 upto length Ts - 1)); | 
| 55904 | 928 | val ((inners, (Dss, Ass)), (accum', lthy')) = | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 929 | apfst (apsnd split_list o split_list) | 
| 55704 
a97b9b81e195
optimized 'bnf_of_typ' further w.r.t. dead variables
 blanchet parents: 
55703diff
changeset | 930 | (fold_map2 (fn i => bnf_of_typ Smart_Inline (qualify i) sort Xs Ds0) | 
| 55706 | 931 | (if length Ts' = 1 then [0] else (1 upto length Ts')) Ts' accum); | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 932 | in | 
| 55904 | 933 | compose_bnf const_policy qualify sort bnf inners oDs Dss Ass (accum', lthy') | 
| 49186 
4b5fa9d5e330
handle type constructors not known to be a BNF using the DEADID BNF
 traytel parents: 
49185diff
changeset | 934 | end) | 
| 53222 | 935 | |> tap check_bad_dead | 
| 48975 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 936 | end; | 
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 937 | |
| 
7f79f94a432c
added new (co)datatype package + theories of ordinals and cardinals (with Dmitriy and Andrei)
 blanchet parents: diff
changeset | 938 | end; |