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