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