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