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