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