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