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