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