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