src/HOL/Codatatype/Tools/bnf_fp_sugar.ML
author blanchet
Wed, 12 Sep 2012 05:03:18 +0200
changeset 50323 6190b701e4f4
parent 50317 f5bd87aac224
child 50326 56fcd826f90c
permissions -rw-r--r--
reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
     1 (*  Title:      HOL/Codatatype/Tools/bnf_fp_sugar.ML
     2     Author:     Jasmin Blanchette, TU Muenchen
     3     Copyright   2012
     4 
     5 Sugar for constructing LFPs and GFPs.
     6 *)
     7 
     8 signature BNF_FP_SUGAR =
     9 sig
    10   val datatyp: bool ->
    11     (mixfix list -> (string * sort) list option -> binding list -> typ list * typ list list ->
    12       BNF_Def.BNF list -> local_theory ->
    13       (term list * term list * term list * term list * thm list * thm list * thm list * thm list *
    14          thm list) * local_theory) ->
    15     bool * ((((typ * sort) list * binding) * mixfix) * ((((binding * binding) *
    16       (binding * typ) list) * (binding * term) list) * mixfix) list) list ->
    17     local_theory -> local_theory
    18   val parse_datatype_cmd: bool ->
    19     (mixfix list -> (string * sort) list option -> binding list -> typ list * typ list list ->
    20       BNF_Def.BNF list -> local_theory ->
    21       (term list * term list * term list * term list * thm list * thm list * thm list * thm list *
    22          thm list) * local_theory) ->
    23     (local_theory -> local_theory) parser
    24 end;
    25 
    26 structure BNF_FP_Sugar : BNF_FP_SUGAR =
    27 struct
    28 
    29 open BNF_Util
    30 open BNF_Wrap
    31 open BNF_Def
    32 open BNF_FP_Util
    33 open BNF_FP_Sugar_Tactics
    34 
    35 val caseN = "case";
    36 val coitersN = "coiters";
    37 val corecsN = "corecs";
    38 val disc_coitersN = "disc_coiters";
    39 val disc_corecsN = "disc_corecs";
    40 val itersN = "iters";
    41 val recsN = "recs";
    42 val sel_coitersN = "sel_coiters";
    43 val sel_corecsN = "sel_corecs";
    44 
    45 val simp_attrs = @{attributes [simp]};
    46 
    47 fun split_list11 xs =
    48   (map #1 xs, map #2 xs, map #3 xs, map #4 xs, map #5 xs, map #6 xs, map #7 xs, map #8 xs,
    49    map #9 xs, map #10 xs, map #11 xs);
    50 
    51 fun strip_map_type (Type (@{type_name fun}, [T as Type _, T'])) = strip_map_type T' |>> cons T
    52   | strip_map_type T = ([], T);
    53 
    54 fun typ_subst inst (T as Type (s, Ts)) =
    55     (case AList.lookup (op =) inst T of
    56       NONE => Type (s, map (typ_subst inst) Ts)
    57     | SOME T' => T')
    58   | typ_subst inst T = the_default T (AList.lookup (op =) inst T);
    59 
    60 fun resort_tfree S (TFree (s, _)) = TFree (s, S);
    61 
    62 fun retype_free T (Free (s, _)) = Free (s, T);
    63 
    64 val lists_bmoc = fold (fn xs => fn t => Term.list_comb (t, xs));
    65 
    66 fun mk_predT T = T --> HOLogic.boolT;
    67 
    68 fun mk_id T = Const (@{const_name id}, T --> T);
    69 
    70 fun mk_tupled_fun x f xs = HOLogic.tupled_lambda x (Term.list_comb (f, xs));
    71 fun mk_uncurried_fun f xs = mk_tupled_fun (HOLogic.mk_tuple xs) f xs;
    72 fun mk_uncurried2_fun f xss =
    73   mk_tupled_fun (HOLogic.mk_tuple (map HOLogic.mk_tuple xss)) f (flat xss);
    74 
    75 fun tick v f = Term.lambda v (HOLogic.mk_prod (v, f $ v));
    76 
    77 fun tack z_name (c, v) f =
    78   let val z = Free (z_name, mk_sumT (fastype_of v, fastype_of c)) in
    79     Term.lambda z (mk_sum_case (Term.lambda v v, Term.lambda c (f $ c)) $ z)
    80   end;
    81 
    82 fun cannot_merge_types () = error "Mutually recursive types must have the same type parameters";
    83 
    84 fun merge_type_arg T T' = if T = T' then T else cannot_merge_types ();
    85 
    86 fun merge_type_args (As, As') =
    87   if length As = length As' then map2 merge_type_arg As As' else cannot_merge_types ();
    88 
    89 fun type_args_constrained_of (((cAs, _), _), _) = cAs;
    90 fun type_binder_of (((_, b), _), _) = b;
    91 fun mixfix_of ((_, mx), _) = mx;
    92 fun ctr_specs_of (_, ctr_specs) = ctr_specs;
    93 
    94 fun disc_of ((((disc, _), _), _), _) = disc;
    95 fun ctr_of ((((_, ctr), _), _), _) = ctr;
    96 fun args_of (((_, args), _), _) = args;
    97 fun defaults_of ((_, ds), _) = ds;
    98 fun ctr_mixfix_of (_, mx) = mx;
    99 
   100 fun define_datatype prepare_constraint prepare_typ prepare_term lfp construct (no_dests, specs)
   101     no_defs_lthy0 =
   102   let
   103     (* TODO: sanity checks on arguments *)
   104 
   105     val _ = if not lfp andalso no_dests then error "Cannot define destructor-less codatatypes"
   106       else ();
   107 
   108     val N = length specs;
   109 
   110     fun prepare_type_arg (ty, c) =
   111       let val TFree (s, _) = prepare_typ no_defs_lthy0 ty in
   112         TFree (s, prepare_constraint no_defs_lthy0 c)
   113       end;
   114 
   115     val Ass0 = map (map prepare_type_arg o type_args_constrained_of) specs;
   116     val unsorted_Ass0 = map (map (resort_tfree HOLogic.typeS)) Ass0;
   117     val unsorted_As = Library.foldr1 merge_type_args unsorted_Ass0;
   118 
   119     val ((Bs, Cs), no_defs_lthy) =
   120       no_defs_lthy0
   121       |> fold (Variable.declare_typ o resort_tfree dummyS) unsorted_As
   122       |> mk_TFrees N
   123       ||>> mk_TFrees N;
   124 
   125     (* TODO: cleaner handling of fake contexts, without "background_theory" *)
   126     (*the "perhaps o try" below helps gracefully handles the case where the new type is defined in a
   127       locale and shadows an existing global type*)
   128     val fake_thy =
   129       Theory.copy #> fold (fn spec => perhaps (try (Sign.add_type no_defs_lthy
   130         (type_binder_of spec, length (type_args_constrained_of spec), mixfix_of spec)))) specs;
   131     val fake_lthy = Proof_Context.background_theory fake_thy no_defs_lthy;
   132 
   133     fun mk_fake_T b =
   134       Type (fst (Term.dest_Type (Proof_Context.read_type_name fake_lthy true (Binding.name_of b))),
   135         unsorted_As);
   136 
   137     val fp_bs = map type_binder_of specs;
   138     val fake_Ts = map mk_fake_T fp_bs;
   139 
   140     val mixfixes = map mixfix_of specs;
   141 
   142     val _ = (case duplicates Binding.eq_name fp_bs of [] => ()
   143       | b :: _ => error ("Duplicate type name declaration " ^ quote (Binding.name_of b)));
   144 
   145     val ctr_specss = map ctr_specs_of specs;
   146 
   147     val disc_binderss = map (map disc_of) ctr_specss;
   148     val ctr_binderss =
   149       map2 (fn fp_b => map (Binding.qualify false (Binding.name_of fp_b) o ctr_of))
   150         fp_bs ctr_specss;
   151     val ctr_argsss = map (map args_of) ctr_specss;
   152     val ctr_mixfixess = map (map ctr_mixfix_of) ctr_specss;
   153 
   154     val sel_bindersss = map (map (map fst)) ctr_argsss;
   155     val fake_ctr_Tsss0 = map (map (map (prepare_typ fake_lthy o snd))) ctr_argsss;
   156     val raw_sel_defaultsss = map (map defaults_of) ctr_specss;
   157 
   158     val (As :: _) :: fake_ctr_Tsss =
   159       burrow (burrow (Syntax.check_typs fake_lthy)) (Ass0 :: fake_ctr_Tsss0);
   160 
   161     val _ = (case duplicates (op =) unsorted_As of [] => ()
   162       | A :: _ => error ("Duplicate type parameter " ^
   163           quote (Syntax.string_of_typ no_defs_lthy A)));
   164 
   165     val rhs_As' = fold (fold (fold Term.add_tfreesT)) fake_ctr_Tsss [];
   166     val _ = (case subtract (op =) (map dest_TFree As) rhs_As' of
   167         [] => ()
   168       | A' :: _ => error ("Extra type variables on rhs: " ^
   169           quote (Syntax.string_of_typ no_defs_lthy (TFree A'))));
   170 
   171     fun eq_fpT (T as Type (s, Us)) (Type (s', Us')) =
   172         s = s' andalso (Us = Us' orelse error ("Illegal occurrence of recursive type " ^
   173           quote (Syntax.string_of_typ fake_lthy T)))
   174       | eq_fpT _ _ = false;
   175 
   176     fun freeze_fp (T as Type (s, Us)) =
   177         (case find_index (eq_fpT T) fake_Ts of ~1 => Type (s, map freeze_fp Us) | j => nth Bs j)
   178       | freeze_fp T = T;
   179 
   180     val ctr_TsssBs = map (map (map freeze_fp)) fake_ctr_Tsss;
   181     val ctr_sum_prod_TsBs = map (mk_sumTN_balanced o map HOLogic.mk_tupleT) ctr_TsssBs;
   182 
   183     val fp_eqs =
   184       map dest_TFree Bs ~~ map (Term.typ_subst_atomic (As ~~ unsorted_As)) ctr_sum_prod_TsBs;
   185 
   186     val (pre_bnfs, ((unfs0, flds0, fp_iters0, fp_recs0, unf_flds, fld_unfs, fld_injects,
   187         fp_iter_thms, fp_rec_thms), lthy)) =
   188       fp_bnf construct fp_bs mixfixes (map dest_TFree unsorted_As) fp_eqs no_defs_lthy0;
   189 
   190     val add_nested_bnf_names =
   191       let
   192         fun add (Type (s, Ts)) ss =
   193             let val (needs, ss') = fold_map add Ts ss in
   194               if exists I needs then (true, insert (op =) s ss') else (false, ss')
   195             end
   196           | add T ss = (member (op =) As T, ss);
   197       in snd oo add end;
   198 
   199     val nested_bnfs =
   200       map_filter (bnf_of lthy) (fold (fold (fold add_nested_bnf_names)) ctr_TsssBs []);
   201 
   202     val timer = time (Timer.startRealTimer ());
   203 
   204     fun mk_unf_or_fld get_T Ts t =
   205       let val Type (_, Ts0) = get_T (fastype_of t) in
   206         Term.subst_atomic_types (Ts0 ~~ Ts) t
   207       end;
   208 
   209     val mk_unf = mk_unf_or_fld domain_type;
   210     val mk_fld = mk_unf_or_fld range_type;
   211 
   212     val unfs = map (mk_unf As) unfs0;
   213     val flds = map (mk_fld As) flds0;
   214 
   215     val fpTs = map (domain_type o fastype_of) unfs;
   216 
   217     val ctr_Tsss = map (map (map (Term.typ_subst_atomic (Bs ~~ fpTs)))) ctr_TsssBs;
   218     val ns = map length ctr_Tsss;
   219     val kss = map (fn n => 1 upto n) ns;
   220     val mss = map (map length) ctr_Tsss;
   221     val Css = map2 replicate ns Cs;
   222 
   223     fun mk_iter_like Ts Us t =
   224       let
   225         val (binders, body) = strip_type (fastype_of t);
   226         val (f_Us, prebody) = split_last binders;
   227         val Type (_, Ts0) = if lfp then prebody else body;
   228         val Us0 = distinct (op =) (map (if lfp then body_type else domain_type) f_Us);
   229       in
   230         Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
   231       end;
   232 
   233     val fp_iters as fp_iter1 :: _ = map (mk_iter_like As Cs) fp_iters0;
   234     val fp_recs as fp_rec1 :: _ = map (mk_iter_like As Cs) fp_recs0;
   235 
   236     val fp_iter_fun_Ts = fst (split_last (binder_types (fastype_of fp_iter1)));
   237     val fp_rec_fun_Ts = fst (split_last (binder_types (fastype_of fp_rec1)));
   238 
   239     val ((iter_only as (gss, _, _), rec_only as (hss, _, _)),
   240          (zs, cs, cpss, coiter_only as ((pgss, crgsss), _), corec_only as ((phss, cshsss), _))) =
   241       if lfp then
   242         let
   243           val y_Tsss =
   244             map3 (fn n => fn ms => map2 dest_tupleT ms o dest_sumTN_balanced n o domain_type)
   245               ns mss fp_iter_fun_Ts;
   246           val g_Tss = map2 (map2 (curry (op --->))) y_Tsss Css;
   247 
   248           val ((gss, ysss), _) =
   249             lthy
   250             |> mk_Freess "f" g_Tss
   251             ||>> mk_Freesss "x" y_Tsss;
   252           val yssss = map (map (map single)) ysss;
   253 
   254           fun dest_rec_prodT (T as Type (@{type_name prod}, Us as [_, U])) =
   255               if member (op =) Cs U then Us else [T]
   256             | dest_rec_prodT T = [T];
   257 
   258           val z_Tssss =
   259             map3 (fn n => fn ms => map2 (map dest_rec_prodT oo dest_tupleT) ms o
   260               dest_sumTN_balanced n o domain_type) ns mss fp_rec_fun_Ts;
   261           val h_Tss = map2 (map2 (fold_rev (curry (op --->)))) z_Tssss Css;
   262 
   263           val hss = map2 (map2 retype_free) h_Tss gss;
   264           val zssss_hd = map2 (map2 (map2 (retype_free o hd))) z_Tssss ysss;
   265           val (zssss_tl, _) =
   266             lthy
   267             |> mk_Freessss "y" (map (map (map tl)) z_Tssss);
   268           val zssss = map2 (map2 (map2 cons)) zssss_hd zssss_tl;
   269         in
   270           (((gss, g_Tss, yssss), (hss, h_Tss, zssss)),
   271            ([], [], [], (([], []), ([], [])), (([], []), ([], []))))
   272         end
   273       else
   274         let
   275           (*avoid "'a itself" arguments in coiterators and corecursors*)
   276           val mss' =  map (fn [0] => [1] | ms => ms) mss;
   277 
   278           val p_Tss = map2 (fn n => replicate (Int.max (0, n - 1)) o mk_predT) ns Cs;
   279 
   280           fun zip_predss_getterss qss fss = maps (op @) (qss ~~ fss);
   281 
   282           fun zip_preds_predsss_gettersss [] [qss] [fss] = zip_predss_getterss qss fss
   283             | zip_preds_predsss_gettersss (p :: ps) (qss :: qsss) (fss :: fsss) =
   284               p :: zip_predss_getterss qss fss @ zip_preds_predsss_gettersss ps qsss fsss;
   285 
   286           fun mk_types maybe_dest_sumT fun_Ts =
   287             let
   288               val f_sum_prod_Ts = map range_type fun_Ts;
   289               val f_prod_Tss = map2 dest_sumTN_balanced ns f_sum_prod_Ts;
   290               val f_Tssss =
   291                 map3 (fn C => map2 (map (map (curry (op -->) C) o maybe_dest_sumT) oo dest_tupleT))
   292                   Cs mss' f_prod_Tss;
   293               val q_Tssss =
   294                 map (map (map (fn [_] => [] | [_, C] => [mk_predT (domain_type C)]))) f_Tssss;
   295               val pf_Tss = map3 zip_preds_predsss_gettersss p_Tss q_Tssss f_Tssss;
   296             in (q_Tssss, f_sum_prod_Ts, f_Tssss, pf_Tss) end;
   297 
   298           val (r_Tssss, g_sum_prod_Ts, g_Tssss, pg_Tss) = mk_types single fp_iter_fun_Ts;
   299 
   300           val ((((Free (z, _), cs), pss), gssss), _) =
   301             lthy
   302             |> yield_singleton (mk_Frees "z") dummyT
   303             ||>> mk_Frees "a" Cs
   304             ||>> mk_Freess "p" p_Tss
   305             ||>> mk_Freessss "g" g_Tssss;
   306           val rssss = map (map (map (fn [] => []))) r_Tssss;
   307 
   308           fun dest_corec_sumT (T as Type (@{type_name sum}, Us as [_, U])) =
   309               if member (op =) Cs U then Us else [T]
   310             | dest_corec_sumT T = [T];
   311 
   312           val (s_Tssss, h_sum_prod_Ts, h_Tssss, ph_Tss) = mk_types dest_corec_sumT fp_rec_fun_Ts;
   313 
   314           val hssss_hd = map2 (map2 (map2 (fn T :: _ => fn [g] => retype_free T g))) h_Tssss gssss;
   315           val ((sssss, hssss_tl), _) =
   316             lthy
   317             |> mk_Freessss "q" s_Tssss
   318             ||>> mk_Freessss "h" (map (map (map tl)) h_Tssss);
   319           val hssss = map2 (map2 (map2 cons)) hssss_hd hssss_tl;
   320 
   321           val cpss = map2 (fn c => map (fn p => p $ c)) cs pss;
   322 
   323           fun mk_preds_getters_join [] [cf] = cf
   324             | mk_preds_getters_join [cq] [cf, cf'] =
   325               mk_If cq (mk_Inl (fastype_of cf') cf) (mk_Inr (fastype_of cf) cf');
   326 
   327           fun mk_terms qssss fssss =
   328             let
   329               val pfss = map3 zip_preds_predsss_gettersss pss qssss fssss;
   330               val cqssss = map2 (fn c => map (map (map (fn f => f $ c)))) cs qssss;
   331               val cfssss = map2 (fn c => map (map (map (fn f => f $ c)))) cs fssss;
   332               val cqfsss = map2 (map2 (map2 mk_preds_getters_join)) cqssss cfssss;
   333             in (pfss, cqfsss) end;
   334         in
   335           ((([], [], []), ([], [], [])),
   336            ([z], cs, cpss, (mk_terms rssss gssss, (g_sum_prod_Ts, pg_Tss)),
   337             (mk_terms sssss hssss, (h_sum_prod_Ts, ph_Tss))))
   338         end;
   339 
   340     fun define_ctrs_case_for_type ((((((((((((((((((fp_b, fpT), C), fld), unf), fp_iter), fp_rec),
   341           fld_unf), unf_fld), fld_inject), n), ks), ms), ctr_binders), ctr_mixfixes), ctr_Tss),
   342         disc_binders), sel_binderss), raw_sel_defaultss) no_defs_lthy =
   343       let
   344         val unfT = domain_type (fastype_of fld);
   345         val ctr_prod_Ts = map HOLogic.mk_tupleT ctr_Tss;
   346         val ctr_sum_prod_T = mk_sumTN_balanced ctr_prod_Ts;
   347         val case_Ts = map (fn Ts => Ts ---> C) ctr_Tss;
   348 
   349         val ((((u, v), fs), xss), _) =
   350           no_defs_lthy
   351           |> yield_singleton (mk_Frees "u") unfT
   352           ||>> yield_singleton (mk_Frees "v") fpT
   353           ||>> mk_Frees "f" case_Ts
   354           ||>> mk_Freess "x" ctr_Tss;
   355 
   356         val ctr_rhss =
   357           map2 (fn k => fn xs => fold_rev Term.lambda xs (fld $
   358             mk_InN_balanced ctr_sum_prod_T n (HOLogic.mk_tuple xs) k)) ks xss;
   359 
   360         val case_binder = Binding.suffix_name ("_" ^ caseN) fp_b;
   361 
   362         val case_rhs =
   363           fold_rev Term.lambda (fs @ [v])
   364             (mk_sum_caseN_balanced (map2 mk_uncurried_fun fs xss) $ (unf $ v));
   365 
   366         val ((raw_case :: raw_ctrs, raw_case_def :: raw_ctr_defs), (lthy', lthy)) = no_defs_lthy
   367           |> apfst split_list o fold_map3 (fn b => fn mx => fn rhs =>
   368               Local_Theory.define ((b, mx), ((Thm.def_binding b, []), rhs)) #>> apsnd snd)
   369             (case_binder :: ctr_binders) (NoSyn :: ctr_mixfixes) (case_rhs :: ctr_rhss)
   370           ||> `Local_Theory.restore;
   371 
   372         (*transforms defined frees into consts (and more)*)
   373         val phi = Proof_Context.export_morphism lthy lthy';
   374 
   375         val ctr_defs = map (Morphism.thm phi) raw_ctr_defs;
   376         val case_def = Morphism.thm phi raw_case_def;
   377 
   378         val ctrs0 = map (Morphism.term phi) raw_ctrs;
   379         val casex0 = Morphism.term phi raw_case;
   380 
   381         val ctrs = map (mk_ctr As) ctrs0;
   382 
   383         fun exhaust_tac {context = ctxt, ...} =
   384           let
   385             val fld_iff_unf_thm =
   386               let
   387                 val goal =
   388                   fold_rev Logic.all [u, v]
   389                     (mk_Trueprop_eq (HOLogic.mk_eq (v, fld $ u), HOLogic.mk_eq (unf $ v, u)));
   390               in
   391                 Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
   392                   mk_fld_iff_unf_tac ctxt (map (SOME o certifyT lthy) [unfT, fpT])
   393                     (certify lthy fld) (certify lthy unf) fld_unf unf_fld)
   394                 |> Thm.close_derivation
   395                 |> Morphism.thm phi
   396               end;
   397 
   398             val sumEN_thm' =
   399               Local_Defs.unfold lthy @{thms all_unit_eq}
   400                 (Drule.instantiate' (map (SOME o certifyT lthy) ctr_prod_Ts) []
   401                    (mk_sumEN_balanced n))
   402               |> Morphism.thm phi;
   403           in
   404             mk_exhaust_tac ctxt n ctr_defs fld_iff_unf_thm sumEN_thm'
   405           end;
   406 
   407         val inject_tacss =
   408           map2 (fn 0 => K [] | _ => fn ctr_def => [fn {context = ctxt, ...} =>
   409               mk_inject_tac ctxt ctr_def fld_inject]) ms ctr_defs;
   410 
   411         val half_distinct_tacss =
   412           map (map (fn (def, def') => fn {context = ctxt, ...} =>
   413             mk_half_distinct_tac ctxt fld_inject [def, def'])) (mk_half_pairss ctr_defs);
   414 
   415         val case_tacs =
   416           map3 (fn k => fn m => fn ctr_def => fn {context = ctxt, ...} =>
   417             mk_case_tac ctxt n k m case_def ctr_def unf_fld) ks ms ctr_defs;
   418 
   419         val tacss = [exhaust_tac] :: inject_tacss @ half_distinct_tacss @ [case_tacs];
   420 
   421         fun define_iter_rec ((selss0, discIs, sel_thmss), no_defs_lthy) =
   422           let
   423             val fpT_to_C = fpT --> C;
   424 
   425             fun generate_iter_like (suf, fp_iter_like, (fss, f_Tss, xssss)) =
   426               let
   427                 val res_T = fold_rev (curry (op --->)) f_Tss fpT_to_C;
   428 
   429                 val binder = Binding.suffix_name ("_" ^ suf) fp_b;
   430 
   431                 val spec =
   432                   mk_Trueprop_eq (lists_bmoc fss (Free (Binding.name_of binder, res_T)),
   433                     Term.list_comb (fp_iter_like,
   434                       map2 (mk_sum_caseN_balanced oo map2 mk_uncurried2_fun) fss xssss));
   435               in (binder, spec) end;
   436 
   437             val iter_like_infos =
   438               [(iterN, fp_iter, iter_only),
   439                (recN, fp_rec, rec_only)];
   440 
   441             val (binders, specs) = map generate_iter_like iter_like_infos |> split_list;
   442 
   443             val ((csts, defs), (lthy', lthy)) = no_defs_lthy
   444               |> apfst split_list o fold_map2 (fn b => fn spec =>
   445                 Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
   446                 #>> apsnd snd) binders specs
   447               ||> `Local_Theory.restore;
   448 
   449             (*transforms defined frees into consts (and more)*)
   450             val phi = Proof_Context.export_morphism lthy lthy';
   451 
   452             val [iter_def, rec_def] = map (Morphism.thm phi) defs;
   453 
   454             val [iter, recx] = map (mk_iter_like As Cs o Morphism.term phi) csts;
   455           in
   456             ((ctrs, selss0, iter, recx, v, xss, ctr_defs, discIs, sel_thmss, iter_def, rec_def),
   457              lthy)
   458           end;
   459 
   460         fun define_coiter_corec ((selss0, discIs, sel_thmss), no_defs_lthy) =
   461           let
   462             val B_to_fpT = C --> fpT;
   463 
   464             fun mk_preds_getterss_join c n cps sum_prod_T cqfss =
   465               Term.lambda c (mk_IfN sum_prod_T cps
   466                 (map2 (mk_InN_balanced sum_prod_T n) (map HOLogic.mk_tuple cqfss) (1 upto n)));
   467 
   468             fun generate_coiter_like (suf, fp_iter_like, ((pfss, cqfsss), (f_sum_prod_Ts,
   469                 pf_Tss))) =
   470               let
   471                 val res_T = fold_rev (curry (op --->)) pf_Tss B_to_fpT;
   472 
   473                 val binder = Binding.suffix_name ("_" ^ suf) fp_b;
   474 
   475                 val spec =
   476                   mk_Trueprop_eq (lists_bmoc pfss (Free (Binding.name_of binder, res_T)),
   477                     Term.list_comb (fp_iter_like,
   478                       map5 mk_preds_getterss_join cs ns cpss f_sum_prod_Ts cqfsss));
   479               in (binder, spec) end;
   480 
   481             val coiter_like_infos =
   482               [(coiterN, fp_iter, coiter_only),
   483                (corecN, fp_rec, corec_only)];
   484 
   485             val (binders, specs) = map generate_coiter_like coiter_like_infos |> split_list;
   486 
   487             val ((csts, defs), (lthy', lthy)) = no_defs_lthy
   488               |> apfst split_list o fold_map2 (fn b => fn spec =>
   489                 Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
   490                 #>> apsnd snd) binders specs
   491               ||> `Local_Theory.restore;
   492 
   493             (*transforms defined frees into consts (and more)*)
   494             val phi = Proof_Context.export_morphism lthy lthy';
   495 
   496             val [coiter_def, corec_def] = map (Morphism.thm phi) defs;
   497 
   498             val [coiter, corec] = map (mk_iter_like As Cs o Morphism.term phi) csts;
   499           in
   500             ((ctrs, selss0, coiter, corec, v, xss, ctr_defs, discIs, sel_thmss, coiter_def,
   501               corec_def), lthy)
   502           end;
   503 
   504         fun wrap lthy =
   505           let val sel_defaultss = map (map (apsnd (prepare_term lthy))) raw_sel_defaultss in
   506             wrap_datatype tacss (((no_dests, ctrs0), casex0), (disc_binders, (sel_binderss,
   507               sel_defaultss))) lthy
   508           end;
   509 
   510         val define_iter_likes = if lfp then define_iter_rec else define_coiter_corec;
   511       in
   512         ((wrap, define_iter_likes), lthy')
   513       end;
   514 
   515     val pre_map_defs = map map_def_of_bnf pre_bnfs;
   516     val map_ids = map map_id_of_bnf nested_bnfs;
   517 
   518     fun mk_map Ts Us t =
   519       let val (Type (_, Ts0), Type (_, Us0)) = strip_map_type (fastype_of t) |>> List.last in
   520         Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
   521       end;
   522 
   523     fun build_map build_arg (Type (s, Ts)) (Type (_, Us)) =
   524       let
   525         val map0 = map_of_bnf (the (bnf_of lthy s));
   526         val mapx = mk_map Ts Us map0;
   527         val TUs = map dest_funT (fst (split_last (fst (strip_map_type (fastype_of mapx)))));
   528         val args = map build_arg TUs;
   529       in Term.list_comb (mapx, args) end;
   530 
   531     fun derive_iter_rec_thms_for_types ((ctrss, _, iters, recs, vs, xsss, ctr_defss, _, _, iter_defs,
   532         rec_defs), lthy) =
   533       let
   534         val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss;
   535         val giters = map (lists_bmoc gss) iters;
   536         val hrecs = map (lists_bmoc hss) recs;
   537 
   538         val (iter_thmss, rec_thmss) =
   539           let
   540             fun mk_goal_iter_like fss fiter_like xctr f xs fxs =
   541               fold_rev (fold_rev Logic.all) (xs :: fss)
   542                 (mk_Trueprop_eq (fiter_like $ xctr, Term.list_comb (f, fxs)));
   543 
   544             fun build_call fiter_likes maybe_tick (T, U) =
   545               if T = U then
   546                 mk_id T
   547               else
   548                 (case find_index (curry (op =) T) fpTs of
   549                   ~1 => build_map (build_call fiter_likes maybe_tick) T U
   550                 | j => maybe_tick (nth vs j) (nth fiter_likes j));
   551 
   552             fun mk_U maybe_mk_prodT =
   553               typ_subst (map2 (fn fpT => fn C => (fpT, maybe_mk_prodT fpT C)) fpTs Cs);
   554 
   555             fun repair_calls fiter_likes maybe_cons maybe_tick maybe_mk_prodT (x as Free (_, T)) =
   556               if member (op =) fpTs T then
   557                 maybe_cons x [build_call fiter_likes (K I) (T, mk_U (K I) T) $ x]
   558               else if exists_subtype (member (op =) fpTs) T then
   559                 [build_call fiter_likes maybe_tick (T, mk_U maybe_mk_prodT T) $ x]
   560               else
   561                 [x];
   562 
   563             val gxsss = map (map (maps (repair_calls giters (K I) (K I) (K I)))) xsss;
   564             val hxsss =
   565               map (map (maps (repair_calls hrecs cons tick (curry HOLogic.mk_prodT)))) xsss;
   566 
   567             val goal_iterss = map5 (map4 o mk_goal_iter_like gss) giters xctrss gss xsss gxsss;
   568             val goal_recss = map5 (map4 o mk_goal_iter_like hss) hrecs xctrss hss xsss hxsss;
   569 
   570             val iter_tacss =
   571               map2 (map o mk_iter_like_tac pre_map_defs map_ids iter_defs) fp_iter_thms ctr_defss;
   572             val rec_tacss =
   573               map2 (map o mk_iter_like_tac pre_map_defs map_ids rec_defs) fp_rec_thms ctr_defss;
   574           in
   575             (map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
   576                goal_iterss iter_tacss,
   577              map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
   578                goal_recss rec_tacss)
   579           end;
   580 
   581         val notes =
   582           [(itersN, iter_thmss, simp_attrs),
   583            (recsN, rec_thmss, Code.add_default_eqn_attrib :: simp_attrs)]
   584           |> maps (fn (thmN, thmss, attrs) =>
   585             map2 (fn b => fn thms =>
   586               ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs),
   587                 [(thms, [])])) fp_bs thmss);
   588       in
   589         lthy |> Local_Theory.notes notes |> snd
   590       end;
   591 
   592     fun derive_coiter_corec_thms_for_types ((ctrss, selsss, coiters, corecs, vs, _, ctr_defss,
   593         discIss, sel_thmsss, coiter_defs, corec_defs), lthy) =
   594       let
   595         val z = the_single zs;
   596 
   597         val gcoiters = map (lists_bmoc pgss) coiters;
   598         val hcorecs = map (lists_bmoc phss) corecs;
   599 
   600         val (coiter_thmss, corec_thmss) =
   601           let
   602             fun mk_goal_cond pos = HOLogic.mk_Trueprop o (not pos ? HOLogic.mk_not);
   603 
   604             fun mk_goal_coiter_like pfss c cps fcoiter_like n k ctr m cfs' =
   605               fold_rev (fold_rev Logic.all) ([c] :: pfss)
   606                 (Logic.list_implies (seq_conds mk_goal_cond n k cps,
   607                    mk_Trueprop_eq (fcoiter_like $ c, Term.list_comb (ctr, take m cfs'))));
   608 
   609             fun build_call fiter_likes maybe_tack (T, U) =
   610               if T = U then
   611                 mk_id T
   612               else
   613                 (case find_index (curry (op =) U) fpTs of
   614                   ~1 => build_map (build_call fiter_likes maybe_tack) T U
   615                 | j => maybe_tack (nth cs j, nth vs j) (nth fiter_likes j));
   616 
   617             fun mk_U maybe_mk_sumT =
   618               typ_subst (map2 (fn C => fn fpT => (maybe_mk_sumT fpT C, fpT)) Cs fpTs);
   619 
   620             fun repair_calls fiter_likes maybe_mk_sumT maybe_tack cqf =
   621               let val T = fastype_of cqf in
   622                 if exists_subtype (member (op =) Cs) T then
   623                   build_call fiter_likes maybe_tack (T, mk_U maybe_mk_sumT T) $ cqf
   624                 else
   625                   cqf
   626               end;
   627 
   628             val crgsss' = map (map (map (repair_calls gcoiters (K I) (K I)))) crgsss;
   629             val cshsss' = map (map (map (repair_calls hcorecs (curry mk_sumT) (tack z)))) cshsss;
   630 
   631             val goal_coiterss =
   632               map8 (map4 oooo mk_goal_coiter_like pgss) cs cpss gcoiters ns kss ctrss mss crgsss';
   633             val goal_corecss =
   634               map8 (map4 oooo mk_goal_coiter_like phss) cs cpss hcorecs ns kss ctrss mss cshsss';
   635 
   636             val coiter_tacss =
   637               map3 (map oo mk_coiter_like_tac coiter_defs map_ids) fp_iter_thms pre_map_defs
   638                 ctr_defss;
   639             val corec_tacss =
   640               map3 (map oo mk_coiter_like_tac corec_defs map_ids) fp_rec_thms pre_map_defs
   641                 ctr_defss;
   642           in
   643             (map2 (map2 (fn goal => fn tac =>
   644                  Skip_Proof.prove lthy [] [] goal (tac o #context) |> Thm.close_derivation))
   645                goal_coiterss coiter_tacss,
   646              map2 (map2 (fn goal => fn tac =>
   647                  Skip_Proof.prove lthy [] [] goal (tac o #context)
   648                  |> Local_Defs.unfold lthy @{thms sum_case_if} |> Thm.close_derivation))
   649                goal_corecss corec_tacss)
   650           end;
   651 
   652         fun mk_disc_coiter_like_thms [_] = K []
   653           | mk_disc_coiter_like_thms thms = map2 (curry (op RS)) thms;
   654 
   655         val disc_coiter_thmss = map2 mk_disc_coiter_like_thms coiter_thmss discIss;
   656         val disc_corec_thmss = map2 mk_disc_coiter_like_thms corec_thmss discIss;
   657 
   658         fun mk_sel_coiter_like_thm coiter_like_thm sel0 sel_thm =
   659           let
   660             val (domT, ranT) = dest_funT (fastype_of sel0);
   661             val arg_cong' =
   662               Drule.instantiate' (map (SOME o certifyT lthy) [domT, ranT])
   663                 [NONE, NONE, SOME (certify lthy sel0)] arg_cong
   664               |> Thm.varifyT_global;
   665             val sel_thm' = sel_thm RSN (2, trans);
   666           in
   667             coiter_like_thm RS arg_cong' RS sel_thm'
   668           end;
   669 
   670         val sel_coiter_thmsss =
   671           map3 (map3 (map2 o mk_sel_coiter_like_thm)) coiter_thmss selsss sel_thmsss;
   672         val sel_corec_thmsss =
   673           map3 (map3 (map2 o mk_sel_coiter_like_thm)) corec_thmss selsss sel_thmsss;
   674 
   675         val notes =
   676           [(coitersN, coiter_thmss, []),
   677            (disc_coitersN, disc_coiter_thmss, []),
   678            (sel_coitersN, map flat sel_coiter_thmsss, []),
   679            (corecsN, corec_thmss, []),
   680            (disc_corecsN, disc_corec_thmss, []),
   681            (sel_corecsN, map flat sel_corec_thmsss, [])]
   682           |> maps (fn (thmN, thmss, attrs) =>
   683             map_filter (fn (_, []) => NONE | (b, thms) =>
   684               SOME ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs),
   685                 [(thms, [])])) (fp_bs ~~ thmss));
   686       in
   687         lthy |> Local_Theory.notes notes |> snd
   688       end;
   689 
   690     fun wrap_types_and_define_iter_likes ((wraps, define_iter_likess), lthy) =
   691       fold_map2 (curry (op o)) define_iter_likess wraps lthy |>> split_list11
   692 
   693     val lthy' = lthy
   694       |> fold_map define_ctrs_case_for_type (fp_bs ~~ fpTs ~~ Cs ~~ flds ~~ unfs ~~ fp_iters ~~
   695         fp_recs ~~ fld_unfs ~~ unf_flds ~~ fld_injects ~~ ns ~~ kss ~~ mss ~~ ctr_binderss ~~
   696         ctr_mixfixess ~~ ctr_Tsss ~~ disc_binderss ~~ sel_bindersss ~~ raw_sel_defaultsss)
   697       |>> split_list |> wrap_types_and_define_iter_likes
   698       |> (if lfp then derive_iter_rec_thms_for_types else derive_coiter_corec_thms_for_types);
   699 
   700     val timer = time (timer ("Constructors, discriminators, selectors, etc., for the new " ^
   701       (if lfp then "" else "co") ^ "datatype"));
   702   in
   703     timer; lthy'
   704   end;
   705 
   706 val datatyp = define_datatype (K I) (K I) (K I);
   707 
   708 val datatype_cmd = define_datatype Typedecl.read_constraint Syntax.parse_typ Syntax.read_term;
   709 
   710 val parse_opt_binding_colon = Scan.optional (Parse.binding --| @{keyword ":"}) no_binder
   711 
   712 val parse_ctr_arg =
   713   @{keyword "("} |-- parse_opt_binding_colon -- Parse.typ --| @{keyword ")"} ||
   714   (Parse.typ >> pair no_binder);
   715 
   716 val parse_defaults =
   717   @{keyword "("} |-- @{keyword "defaults"} |-- Scan.repeat parse_bound_term --| @{keyword ")"};
   718 
   719 val parse_single_spec =
   720   Parse.type_args_constrained -- Parse.binding -- Parse.opt_mixfix --
   721   (@{keyword "="} |-- Parse.enum1 "|" (parse_opt_binding_colon -- Parse.binding --
   722     Scan.repeat parse_ctr_arg -- Scan.optional parse_defaults [] -- Parse.opt_mixfix));
   723 
   724 val parse_datatype = parse_wrap_options -- Parse.and_list1 parse_single_spec;
   725 
   726 fun parse_datatype_cmd lfp construct = parse_datatype >> datatype_cmd lfp construct;
   727 
   728 end;