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