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