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