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