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