src/HOL/Codatatype/Tools/bnf_fp_sugar.ML
author blanchet
Fri, 14 Sep 2012 12:09:27 +0200
changeset 50377 1271aca16aed
parent 50376 cc1d39529dd1
child 50378 8fc53d925629
permissions -rw-r--r--
make tactic more robust in the case where "asm_simp_tac" already finishes the job
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@50357
    44
fun resort_tfree S (TFree (s, _)) = TFree (s, S);
blanchet@50357
    45
blanchet@50229
    46
fun typ_subst inst (T as Type (s, Ts)) =
blanchet@50229
    47
    (case AList.lookup (op =) inst T of
blanchet@50229
    48
      NONE => Type (s, map (typ_subst inst) Ts)
blanchet@50229
    49
    | SOME T' => T')
blanchet@50229
    50
  | typ_subst inst T = the_default T (AList.lookup (op =) inst T);
blanchet@50220
    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@50376
    95
    val fp_bs = map type_binding_of specs;
blanchet@50376
    96
    val fp_common_name = mk_common_name fp_bs;
blanchet@50134
    97
blanchet@50313
    98
    fun prepare_type_arg (ty, c) =
blanchet@50313
    99
      let val TFree (s, _) = prepare_typ no_defs_lthy0 ty in
blanchet@50313
   100
        TFree (s, prepare_constraint no_defs_lthy0 c)
blanchet@50313
   101
      end;
blanchet@50134
   102
blanchet@50313
   103
    val Ass0 = map (map prepare_type_arg o type_args_constrained_of) specs;
blanchet@50313
   104
    val unsorted_Ass0 = map (map (resort_tfree HOLogic.typeS)) Ass0;
blanchet@50313
   105
    val unsorted_As = Library.foldr1 merge_type_args unsorted_Ass0;
blanchet@50134
   106
blanchet@50376
   107
    val (((Bs, Cs), vs'), no_defs_lthy) =
blanchet@50313
   108
      no_defs_lthy0
blanchet@50313
   109
      |> fold (Variable.declare_typ o resort_tfree dummyS) unsorted_As
blanchet@50313
   110
      |> mk_TFrees N
blanchet@50376
   111
      ||>> mk_TFrees N
blanchet@50376
   112
      ||>> Variable.variant_fixes (map Binding.name_of fp_bs);
blanchet@50313
   113
blanchet@50313
   114
    (* TODO: cleaner handling of fake contexts, without "background_theory" *)
blanchet@50313
   115
    (*the "perhaps o try" below helps gracefully handles the case where the new type is defined in a
blanchet@50313
   116
      locale and shadows an existing global type*)
blanchet@50313
   117
    val fake_thy =
blanchet@50313
   118
      Theory.copy #> fold (fn spec => perhaps (try (Sign.add_type no_defs_lthy
blanchet@50351
   119
        (type_binding_of spec, length (type_args_constrained_of spec), mixfix_of spec)))) specs;
blanchet@50313
   120
    val fake_lthy = Proof_Context.background_theory fake_thy no_defs_lthy;
blanchet@50134
   121
blanchet@50197
   122
    fun mk_fake_T b =
blanchet@50136
   123
      Type (fst (Term.dest_Type (Proof_Context.read_type_name fake_lthy true (Binding.name_of b))),
blanchet@50313
   124
        unsorted_As);
blanchet@50136
   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@50357
   156
      | A' :: _ => error ("Extra type variable on right-hand side: " ^
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@50377
   184
          | add T ss = (member (op =) Bs 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@50377
   204
blanchet@50377
   205
    val exists_fp_subtype = exists_subtype (member (op =) fpTs);
blanchet@50377
   206
blanchet@50376
   207
    val vs = map2 (curry Free) vs' fpTs;
blanchet@50219
   208
blanchet@50312
   209
    val ctr_Tsss = map (map (map (Term.typ_subst_atomic (Bs ~~ fpTs)))) ctr_TsssBs;
blanchet@50218
   210
    val ns = map length ctr_Tsss;
blanchet@50227
   211
    val kss = map (fn n => 1 upto n) ns;
blanchet@50218
   212
    val mss = map (map length) ctr_Tsss;
blanchet@50218
   213
    val Css = map2 replicate ns Cs;
blanchet@50218
   214
blanchet@50229
   215
    fun mk_iter_like Ts Us t =
blanchet@50134
   216
      let
blanchet@50351
   217
        val (bindings, body) = strip_type (fastype_of t);
blanchet@50351
   218
        val (f_Us, prebody) = split_last bindings;
blanchet@50225
   219
        val Type (_, Ts0) = if lfp then prebody else body;
blanchet@50225
   220
        val Us0 = distinct (op =) (map (if lfp then body_type else domain_type) f_Us);
blanchet@50191
   221
      in
blanchet@50229
   222
        Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
blanchet@50191
   223
      end;
blanchet@50191
   224
blanchet@50225
   225
    val fp_iters as fp_iter1 :: _ = map (mk_iter_like As Cs) fp_iters0;
blanchet@50225
   226
    val fp_recs as fp_rec1 :: _ = map (mk_iter_like As Cs) fp_recs0;
blanchet@50225
   227
blanchet@50227
   228
    val fp_iter_fun_Ts = fst (split_last (binder_types (fastype_of fp_iter1)));
blanchet@50227
   229
    val fp_rec_fun_Ts = fst (split_last (binder_types (fastype_of fp_rec1)));
blanchet@50219
   230
blanchet@50271
   231
    val ((iter_only as (gss, _, _), rec_only as (hss, _, _)),
blanchet@50291
   232
         (zs, cs, cpss, coiter_only as ((pgss, crgsss), _), corec_only as ((phss, cshsss), _))) =
blanchet@50223
   233
      if lfp then
blanchet@50223
   234
        let
blanchet@50223
   235
          val y_Tsss =
blanchet@50270
   236
            map3 (fn n => fn ms => map2 dest_tupleT ms o dest_sumTN_balanced n o domain_type)
blanchet@50227
   237
              ns mss fp_iter_fun_Ts;
blanchet@50223
   238
          val g_Tss = map2 (map2 (curry (op --->))) y_Tsss Css;
blanchet@50219
   239
blanchet@50223
   240
          val ((gss, ysss), _) =
blanchet@50223
   241
            lthy
blanchet@50223
   242
            |> mk_Freess "f" g_Tss
blanchet@50223
   243
            ||>> mk_Freesss "x" y_Tsss;
blanchet@50289
   244
          val yssss = map (map (map single)) ysss;
blanchet@50289
   245
blanchet@50289
   246
          fun dest_rec_prodT (T as Type (@{type_name prod}, Us as [_, U])) =
blanchet@50289
   247
              if member (op =) Cs U then Us else [T]
blanchet@50289
   248
            | dest_rec_prodT T = [T];
blanchet@50219
   249
blanchet@50223
   250
          val z_Tssss =
blanchet@50289
   251
            map3 (fn n => fn ms => map2 (map dest_rec_prodT oo dest_tupleT) ms o
blanchet@50270
   252
              dest_sumTN_balanced n o domain_type) ns mss fp_rec_fun_Ts;
blanchet@50223
   253
          val h_Tss = map2 (map2 (fold_rev (curry (op --->)))) z_Tssss Css;
blanchet@50223
   254
blanchet@50313
   255
          val hss = map2 (map2 retype_free) h_Tss gss;
blanchet@50313
   256
          val zssss_hd = map2 (map2 (map2 (retype_free o hd))) z_Tssss ysss;
blanchet@50289
   257
          val (zssss_tl, _) =
blanchet@50223
   258
            lthy
blanchet@50289
   259
            |> mk_Freessss "y" (map (map (map tl)) z_Tssss);
blanchet@50289
   260
          val zssss = map2 (map2 (map2 cons)) zssss_hd zssss_tl;
blanchet@50225
   261
        in
blanchet@50289
   262
          (((gss, g_Tss, yssss), (hss, h_Tss, zssss)),
blanchet@50291
   263
           ([], [], [], (([], []), ([], [])), (([], []), ([], []))))
blanchet@50225
   264
        end
blanchet@50223
   265
      else
blanchet@50225
   266
        let
blanchet@50236
   267
          (*avoid "'a itself" arguments in coiterators and corecursors*)
blanchet@50236
   268
          val mss' =  map (fn [0] => [1] | ms => ms) mss;
blanchet@50236
   269
blanchet@50290
   270
          val p_Tss = map2 (fn n => replicate (Int.max (0, n - 1)) o mk_predT) ns Cs;
blanchet@50191
   271
blanchet@50291
   272
          fun zip_predss_getterss qss fss = maps (op @) (qss ~~ fss);
blanchet@50230
   273
blanchet@50291
   274
          fun zip_preds_predsss_gettersss [] [qss] [fss] = zip_predss_getterss qss fss
blanchet@50291
   275
            | zip_preds_predsss_gettersss (p :: ps) (qss :: qsss) (fss :: fsss) =
blanchet@50291
   276
              p :: zip_predss_getterss qss fss @ zip_preds_predsss_gettersss ps qsss fsss;
blanchet@50289
   277
blanchet@50289
   278
          fun mk_types maybe_dest_sumT fun_Ts =
blanchet@50227
   279
            let
blanchet@50227
   280
              val f_sum_prod_Ts = map range_type fun_Ts;
blanchet@50270
   281
              val f_prod_Tss = map2 dest_sumTN_balanced ns f_sum_prod_Ts;
blanchet@50290
   282
              val f_Tssss =
blanchet@50290
   283
                map3 (fn C => map2 (map (map (curry (op -->) C) o maybe_dest_sumT) oo dest_tupleT))
blanchet@50290
   284
                  Cs mss' f_prod_Tss;
blanchet@50290
   285
              val q_Tssss =
blanchet@50290
   286
                map (map (map (fn [_] => [] | [_, C] => [mk_predT (domain_type C)]))) f_Tssss;
blanchet@50291
   287
              val pf_Tss = map3 zip_preds_predsss_gettersss p_Tss q_Tssss f_Tssss;
blanchet@50290
   288
            in (q_Tssss, f_sum_prod_Ts, f_Tssss, pf_Tss) end;
blanchet@50226
   289
blanchet@50290
   290
          val (r_Tssss, g_sum_prod_Ts, g_Tssss, pg_Tss) = mk_types single fp_iter_fun_Ts;
blanchet@50226
   291
blanchet@50290
   292
          val ((((Free (z, _), cs), pss), gssss), _) =
blanchet@50225
   293
            lthy
blanchet@50248
   294
            |> yield_singleton (mk_Frees "z") dummyT
blanchet@50248
   295
            ||>> mk_Frees "a" Cs
blanchet@50226
   296
            ||>> mk_Freess "p" p_Tss
blanchet@50290
   297
            ||>> mk_Freessss "g" g_Tssss;
blanchet@50290
   298
          val rssss = map (map (map (fn [] => []))) r_Tssss;
blanchet@50289
   299
blanchet@50289
   300
          fun dest_corec_sumT (T as Type (@{type_name sum}, Us as [_, U])) =
blanchet@50289
   301
              if member (op =) Cs U then Us else [T]
blanchet@50289
   302
            | dest_corec_sumT T = [T];
blanchet@50289
   303
blanchet@50290
   304
          val (s_Tssss, h_sum_prod_Ts, h_Tssss, ph_Tss) = mk_types dest_corec_sumT fp_rec_fun_Ts;
blanchet@50225
   305
blanchet@50313
   306
          val hssss_hd = map2 (map2 (map2 (fn T :: _ => fn [g] => retype_free T g))) h_Tssss gssss;
blanchet@50290
   307
          val ((sssss, hssss_tl), _) =
blanchet@50290
   308
            lthy
blanchet@50290
   309
            |> mk_Freessss "q" s_Tssss
blanchet@50290
   310
            ||>> mk_Freessss "h" (map (map (map tl)) h_Tssss);
blanchet@50290
   311
          val hssss = map2 (map2 (map2 cons)) hssss_hd hssss_tl;
blanchet@50226
   312
blanchet@50227
   313
          val cpss = map2 (fn c => map (fn p => p $ c)) cs pss;
blanchet@50227
   314
blanchet@50291
   315
          fun mk_preds_getters_join [] [cf] = cf
blanchet@50291
   316
            | mk_preds_getters_join [cq] [cf, cf'] =
blanchet@50291
   317
              mk_If cq (mk_Inl (fastype_of cf') cf) (mk_Inr (fastype_of cf) cf');
blanchet@50291
   318
blanchet@50290
   319
          fun mk_terms qssss fssss =
blanchet@50227
   320
            let
blanchet@50291
   321
              val pfss = map3 zip_preds_predsss_gettersss pss qssss fssss;
blanchet@50290
   322
              val cqssss = map2 (fn c => map (map (map (fn f => f $ c)))) cs qssss;
blanchet@50289
   323
              val cfssss = map2 (fn c => map (map (map (fn f => f $ c)))) cs fssss;
blanchet@50291
   324
              val cqfsss = map2 (map2 (map2 mk_preds_getters_join)) cqssss cfssss;
blanchet@50291
   325
            in (pfss, cqfsss) end;
blanchet@50225
   326
        in
blanchet@50227
   327
          ((([], [], []), ([], [], [])),
blanchet@50290
   328
           ([z], cs, cpss, (mk_terms rssss gssss, (g_sum_prod_Ts, pg_Tss)),
blanchet@50290
   329
            (mk_terms sssss hssss, (h_sum_prod_Ts, ph_Tss))))
blanchet@50225
   330
        end;
blanchet@50225
   331
blanchet@50376
   332
    fun define_ctrs_case_for_type (((((((((((((((((((fp_b, fpT), C), v), fld), unf), fp_iter),
blanchet@50376
   333
          fp_rec), fld_unf), unf_fld), fld_inject), n), ks), ms), ctr_bindings), ctr_mixfixes),
blanchet@50376
   334
        ctr_Tss), disc_bindings), sel_bindingss), raw_sel_defaultss) no_defs_lthy =
blanchet@50191
   335
      let
blanchet@50216
   336
        val unfT = domain_type (fastype_of fld);
blanchet@50225
   337
        val ctr_prod_Ts = map HOLogic.mk_tupleT ctr_Tss;
blanchet@50270
   338
        val ctr_sum_prod_T = mk_sumTN_balanced ctr_prod_Ts;
blanchet@50149
   339
        val case_Ts = map (fn Ts => Ts ---> C) ctr_Tss;
blanchet@50139
   340
blanchet@50376
   341
        val (((u, fs), xss), _) =
blanchet@50219
   342
          no_defs_lthy
blanchet@50216
   343
          |> yield_singleton (mk_Frees "u") unfT
blanchet@50191
   344
          ||>> mk_Frees "f" case_Ts
blanchet@50139
   345
          ||>> mk_Freess "x" ctr_Tss;
blanchet@50136
   346
blanchet@50144
   347
        val ctr_rhss =
blanchet@50271
   348
          map2 (fn k => fn xs => fold_rev Term.lambda xs (fld $
blanchet@50271
   349
            mk_InN_balanced ctr_sum_prod_T n (HOLogic.mk_tuple xs) k)) ks xss;
blanchet@50136
   350
blanchet@50351
   351
        val case_binding = Binding.suffix_name ("_" ^ caseN) fp_b;
blanchet@50144
   352
blanchet@50149
   353
        val case_rhs =
blanchet@50270
   354
          fold_rev Term.lambda (fs @ [v])
blanchet@50270
   355
            (mk_sum_caseN_balanced (map2 mk_uncurried_fun fs xss) $ (unf $ v));
blanchet@50144
   356
blanchet@50216
   357
        val ((raw_case :: raw_ctrs, raw_case_def :: raw_ctr_defs), (lthy', lthy)) = no_defs_lthy
blanchet@50184
   358
          |> apfst split_list o fold_map3 (fn b => fn mx => fn rhs =>
blanchet@50317
   359
              Local_Theory.define ((b, mx), ((Thm.def_binding b, []), rhs)) #>> apsnd snd)
blanchet@50351
   360
            (case_binding :: ctr_bindings) (NoSyn :: ctr_mixfixes) (case_rhs :: ctr_rhss)
blanchet@50136
   361
          ||> `Local_Theory.restore;
blanchet@50136
   362
blanchet@50136
   363
        val phi = Proof_Context.export_morphism lthy lthy';
blanchet@50136
   364
blanchet@50136
   365
        val ctr_defs = map (Morphism.thm phi) raw_ctr_defs;
blanchet@50145
   366
        val case_def = Morphism.thm phi raw_case_def;
blanchet@50145
   367
blanchet@50218
   368
        val ctrs0 = map (Morphism.term phi) raw_ctrs;
blanchet@50218
   369
        val casex0 = Morphism.term phi raw_case;
blanchet@50218
   370
blanchet@50218
   371
        val ctrs = map (mk_ctr As) ctrs0;
blanchet@50136
   372
blanchet@50150
   373
        fun exhaust_tac {context = ctxt, ...} =
blanchet@50138
   374
          let
blanchet@50150
   375
            val fld_iff_unf_thm =
blanchet@50150
   376
              let
blanchet@50150
   377
                val goal =
blanchet@50150
   378
                  fold_rev Logic.all [u, v]
blanchet@50150
   379
                    (mk_Trueprop_eq (HOLogic.mk_eq (v, fld $ u), HOLogic.mk_eq (unf $ v, u)));
blanchet@50150
   380
              in
blanchet@50150
   381
                Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
blanchet@50216
   382
                  mk_fld_iff_unf_tac ctxt (map (SOME o certifyT lthy) [unfT, fpT])
blanchet@50191
   383
                    (certify lthy fld) (certify lthy unf) fld_unf unf_fld)
blanchet@50150
   384
                |> Thm.close_derivation
blanchet@50150
   385
                |> Morphism.thm phi
blanchet@50150
   386
              end;
blanchet@50150
   387
blanchet@50150
   388
            val sumEN_thm' =
blanchet@50150
   389
              Local_Defs.unfold lthy @{thms all_unit_eq}
blanchet@50270
   390
                (Drule.instantiate' (map (SOME o certifyT lthy) ctr_prod_Ts) []
blanchet@50270
   391
                   (mk_sumEN_balanced n))
blanchet@50150
   392
              |> Morphism.thm phi;
blanchet@50138
   393
          in
blanchet@50176
   394
            mk_exhaust_tac ctxt n ctr_defs fld_iff_unf_thm sumEN_thm'
blanchet@50138
   395
          end;
blanchet@50136
   396
blanchet@50141
   397
        val inject_tacss =
blanchet@50220
   398
          map2 (fn 0 => K [] | _ => fn ctr_def => [fn {context = ctxt, ...} =>
blanchet@50220
   399
              mk_inject_tac ctxt ctr_def fld_inject]) ms ctr_defs;
blanchet@50141
   400
blanchet@50142
   401
        val half_distinct_tacss =
blanchet@50142
   402
          map (map (fn (def, def') => fn {context = ctxt, ...} =>
blanchet@50142
   403
            mk_half_distinct_tac ctxt fld_inject [def, def'])) (mk_half_pairss ctr_defs);
blanchet@50142
   404
blanchet@50145
   405
        val case_tacs =
blanchet@50145
   406
          map3 (fn k => fn m => fn ctr_def => fn {context = ctxt, ...} =>
blanchet@50145
   407
            mk_case_tac ctxt n k m case_def ctr_def unf_fld) ks ms ctr_defs;
blanchet@50136
   408
blanchet@50136
   409
        val tacss = [exhaust_tac] :: inject_tacss @ half_distinct_tacss @ [case_tacs];
blanchet@50149
   410
blanchet@50302
   411
        fun define_iter_rec ((selss0, discIs, sel_thmss), no_defs_lthy) =
blanchet@50149
   412
          let
blanchet@50223
   413
            val fpT_to_C = fpT --> C;
blanchet@50214
   414
blanchet@50230
   415
            fun generate_iter_like (suf, fp_iter_like, (fss, f_Tss, xssss)) =
blanchet@50230
   416
              let
blanchet@50230
   417
                val res_T = fold_rev (curry (op --->)) f_Tss fpT_to_C;
blanchet@50351
   418
                val binding = Binding.suffix_name ("_" ^ suf) fp_b;
blanchet@50230
   419
                val spec =
blanchet@50351
   420
                  mk_Trueprop_eq (lists_bmoc fss (Free (Binding.name_of binding, res_T)),
blanchet@50230
   421
                    Term.list_comb (fp_iter_like,
blanchet@50270
   422
                      map2 (mk_sum_caseN_balanced oo map2 mk_uncurried2_fun) fss xssss));
blanchet@50351
   423
              in (binding, spec) end;
blanchet@50230
   424
blanchet@50315
   425
            val iter_like_infos =
blanchet@50230
   426
              [(iterN, fp_iter, iter_only),
blanchet@50230
   427
               (recN, fp_rec, rec_only)];
blanchet@50230
   428
blanchet@50351
   429
            val (bindings, specs) = map generate_iter_like iter_like_infos |> split_list;
blanchet@50230
   430
blanchet@50230
   431
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
blanchet@50216
   432
              |> apfst split_list o fold_map2 (fn b => fn spec =>
blanchet@50214
   433
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
blanchet@50351
   434
                #>> apsnd snd) bindings specs
blanchet@50214
   435
              ||> `Local_Theory.restore;
blanchet@50216
   436
blanchet@50216
   437
            val phi = Proof_Context.export_morphism lthy lthy';
blanchet@50216
   438
blanchet@50230
   439
            val [iter_def, rec_def] = map (Morphism.thm phi) defs;
blanchet@50216
   440
blanchet@50230
   441
            val [iter, recx] = map (mk_iter_like As Cs o Morphism.term phi) csts;
blanchet@50149
   442
          in
blanchet@50282
   443
            ((ctrs, selss0, iter, recx, v, xss, ctr_defs, discIs, sel_thmss, iter_def, rec_def),
blanchet@50281
   444
             lthy)
blanchet@50149
   445
          end;
blanchet@50149
   446
blanchet@50302
   447
        fun define_coiter_corec ((selss0, discIs, sel_thmss), no_defs_lthy) =
blanchet@50225
   448
          let
blanchet@50225
   449
            val B_to_fpT = C --> fpT;
blanchet@50225
   450
blanchet@50291
   451
            fun mk_preds_getterss_join c n cps sum_prod_T cqfss =
blanchet@50291
   452
              Term.lambda c (mk_IfN sum_prod_T cps
blanchet@50291
   453
                (map2 (mk_InN_balanced sum_prod_T n) (map HOLogic.mk_tuple cqfss) (1 upto n)));
blanchet@50290
   454
blanchet@50291
   455
            fun generate_coiter_like (suf, fp_iter_like, ((pfss, cqfsss), (f_sum_prod_Ts,
blanchet@50289
   456
                pf_Tss))) =
blanchet@50226
   457
              let
blanchet@50226
   458
                val res_T = fold_rev (curry (op --->)) pf_Tss B_to_fpT;
blanchet@50351
   459
                val binding = Binding.suffix_name ("_" ^ suf) fp_b;
blanchet@50226
   460
                val spec =
blanchet@50351
   461
                  mk_Trueprop_eq (lists_bmoc pfss (Free (Binding.name_of binding, res_T)),
blanchet@50226
   462
                    Term.list_comb (fp_iter_like,
blanchet@50291
   463
                      map5 mk_preds_getterss_join cs ns cpss f_sum_prod_Ts cqfsss));
blanchet@50351
   464
              in (binding, spec) end;
blanchet@50225
   465
blanchet@50315
   466
            val coiter_like_infos =
blanchet@50230
   467
              [(coiterN, fp_iter, coiter_only),
blanchet@50230
   468
               (corecN, fp_rec, corec_only)];
blanchet@50227
   469
blanchet@50351
   470
            val (bindings, specs) = map generate_coiter_like coiter_like_infos |> split_list;
blanchet@50226
   471
blanchet@50226
   472
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
blanchet@50225
   473
              |> apfst split_list o fold_map2 (fn b => fn spec =>
blanchet@50225
   474
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
blanchet@50351
   475
                #>> apsnd snd) bindings specs
blanchet@50225
   476
              ||> `Local_Theory.restore;
blanchet@50225
   477
blanchet@50225
   478
            val phi = Proof_Context.export_morphism lthy lthy';
blanchet@50225
   479
blanchet@50226
   480
            val [coiter_def, corec_def] = map (Morphism.thm phi) defs;
blanchet@50225
   481
blanchet@50226
   482
            val [coiter, corec] = map (mk_iter_like As Cs o Morphism.term phi) csts;
blanchet@50225
   483
          in
blanchet@50282
   484
            ((ctrs, selss0, coiter, corec, v, xss, ctr_defs, discIs, sel_thmss, coiter_def,
blanchet@50281
   485
              corec_def), lthy)
blanchet@50225
   486
          end;
blanchet@50301
   487
blanchet@50302
   488
        fun wrap lthy =
blanchet@50302
   489
          let val sel_defaultss = map (map (apsnd (prepare_term lthy))) raw_sel_defaultss in
blanchet@50351
   490
            wrap_datatype tacss (((no_dests, ctrs0), casex0), (disc_bindings, (sel_bindingss,
blanchet@50302
   491
              sel_defaultss))) lthy
blanchet@50302
   492
          end;
blanchet@50302
   493
blanchet@50302
   494
        val define_iter_likes = if lfp then define_iter_rec else define_coiter_corec;
blanchet@50134
   495
      in
blanchet@50302
   496
        ((wrap, define_iter_likes), lthy')
blanchet@50134
   497
      end;
blanchet@50182
   498
blanchet@50241
   499
    val pre_map_defs = map map_def_of_bnf pre_bnfs;
blanchet@50357
   500
    val pre_set_defss = map set_defs_of_bnf pre_bnfs;
blanchet@50244
   501
    val map_ids = map map_id_of_bnf nested_bnfs;
blanchet@50241
   502
blanchet@50229
   503
    fun mk_map Ts Us t =
blanchet@50232
   504
      let val (Type (_, Ts0), Type (_, Us0)) = strip_map_type (fastype_of t) |>> List.last in
blanchet@50229
   505
        Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
blanchet@50229
   506
      end;
blanchet@50229
   507
blanchet@50249
   508
    fun build_map build_arg (Type (s, Ts)) (Type (_, Us)) =
blanchet@50249
   509
      let
traytel@50251
   510
        val map0 = map_of_bnf (the (bnf_of lthy s));
blanchet@50249
   511
        val mapx = mk_map Ts Us map0;
blanchet@50249
   512
        val TUs = map dest_funT (fst (split_last (fst (strip_map_type (fastype_of mapx)))));
blanchet@50249
   513
        val args = map build_arg TUs;
blanchet@50249
   514
      in Term.list_comb (mapx, args) end;
blanchet@50249
   515
blanchet@50352
   516
    fun derive_induct_iter_rec_thms_for_types ((ctrss, _, iters, recs, vs, xsss, ctr_defss, _, _,
blanchet@50352
   517
        iter_defs, rec_defs), lthy) =
blanchet@50217
   518
      let
blanchet@50377
   519
        fun mk_sets_nested bnf =
blanchet@50377
   520
          let
blanchet@50377
   521
            val Type (T_name, Us) = T_of_bnf bnf;
blanchet@50377
   522
            val lives = lives_of_bnf bnf;
blanchet@50377
   523
            val sets = sets_of_bnf bnf;
blanchet@50377
   524
            fun mk_set U =
blanchet@50377
   525
              (case find_index (curry (op =) U) lives of
blanchet@50377
   526
                ~1 => Term.dummy
blanchet@50377
   527
              | i => nth sets i);
blanchet@50377
   528
          in
blanchet@50377
   529
            (T_name, map mk_set Us)
blanchet@50377
   530
          end;
blanchet@50377
   531
blanchet@50377
   532
        val setss_nested = map mk_sets_nested nested_bnfs;
blanchet@50377
   533
blanchet@50352
   534
        val (induct_thms, induct_thm) =
blanchet@50352
   535
          let
blanchet@50377
   536
            val ((phis, phis'), names_lthy) =
blanchet@50376
   537
              lthy
blanchet@50377
   538
              |> mk_Frees' "P" (map mk_predT fpTs);
blanchet@50357
   539
blanchet@50377
   540
            fun mk_set Ts t =
blanchet@50377
   541
              let val Type (_, Ts0) = domain_type (fastype_of t) in
blanchet@50377
   542
                Term.subst_atomic_types (Ts0 ~~ Ts) t
blanchet@50377
   543
              end;
blanchet@50377
   544
blanchet@50377
   545
            fun mk_prem_prems names_lthy (x as Free (s, T as Type (T_name, Ts0))) =
blanchet@50376
   546
                (case find_index (curry (op =) T) fpTs of
blanchet@50377
   547
                  ~1 =>
blanchet@50377
   548
                  (case AList.lookup (op =) setss_nested T_name of
blanchet@50377
   549
                    NONE => []
blanchet@50377
   550
                  | SOME raw_sets0 =>
blanchet@50377
   551
                    let
blanchet@50377
   552
                      val (Ts, raw_sets) =
blanchet@50377
   553
                        split_list (filter (exists_fp_subtype o fst) (Ts0 ~~ raw_sets0));
blanchet@50377
   554
                      val sets = map (mk_set Ts0) raw_sets;
blanchet@50377
   555
                      val (ys, names_lthy') = names_lthy |> mk_Frees s Ts;
blanchet@50377
   556
                      val heads =
blanchet@50377
   557
                        map2 (fn y => fn set => HOLogic.mk_Trueprop (HOLogic.mk_mem (y, set $ x)))
blanchet@50377
   558
                          ys sets;
blanchet@50377
   559
                      val bodies = flat (map (mk_prem_prems names_lthy') ys);
blanchet@50377
   560
                    in
blanchet@50377
   561
                      map2 (curry Logic.mk_implies) heads bodies
blanchet@50377
   562
                    end)
blanchet@50377
   563
                | i => [HOLogic.mk_Trueprop (nth phis i $ x)])
blanchet@50377
   564
              | mk_prem_prems _ _ = [];
blanchet@50357
   565
blanchet@50377
   566
            fun close_prem_prem (Free x') t =
blanchet@50377
   567
              fold_rev Logic.all (map Free (drop (N + 1) (rev (Term.add_frees t (x' :: phis'))))) t;
blanchet@50377
   568
blanchet@50377
   569
            fun mk_prem phi ctr ctr_Ts =
blanchet@50377
   570
              let
blanchet@50377
   571
                val (xs, names_lthy') = names_lthy |> mk_Frees "x" ctr_Ts;
blanchet@50377
   572
                val prem_prems =
blanchet@50377
   573
                  maps (fn x => map (close_prem_prem x) (mk_prem_prems names_lthy' x)) xs;
blanchet@50377
   574
              in
blanchet@50376
   575
                fold_rev Logic.all xs
blanchet@50377
   576
                  (Logic.list_implies (prem_prems,
blanchet@50377
   577
                     HOLogic.mk_Trueprop (phi $ Term.list_comb (ctr, xs))))
blanchet@50376
   578
              end;
blanchet@50357
   579
blanchet@50376
   580
            val goal =
blanchet@50377
   581
              fold_rev (fold_rev Logic.all) [phis, vs]
blanchet@50377
   582
                (Library.foldr Logic.list_implies (map3 (map2 o mk_prem) phis ctrss ctr_Tsss,
blanchet@50376
   583
                   HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj
blanchet@50377
   584
                     (map2 (curry (op $)) phis vs))));
blanchet@50357
   585
blanchet@50357
   586
            val induct_thm =
blanchet@50376
   587
              Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
blanchet@50377
   588
                mk_induct_tac ctxt);
blanchet@50352
   589
          in
blanchet@50352
   590
            `(conj_dests N) induct_thm
blanchet@50352
   591
          end;
blanchet@50216
   592
blanchet@50217
   593
        val (iter_thmss, rec_thmss) =
blanchet@50222
   594
          let
blanchet@50352
   595
            val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss;
blanchet@50352
   596
            val giters = map (lists_bmoc gss) iters;
blanchet@50352
   597
            val hrecs = map (lists_bmoc hss) recs;
blanchet@50352
   598
blanchet@50227
   599
            fun mk_goal_iter_like fss fiter_like xctr f xs fxs =
blanchet@50222
   600
              fold_rev (fold_rev Logic.all) (xs :: fss)
blanchet@50227
   601
                (mk_Trueprop_eq (fiter_like $ xctr, Term.list_comb (f, fxs)));
blanchet@50216
   602
blanchet@50249
   603
            fun build_call fiter_likes maybe_tick (T, U) =
blanchet@50249
   604
              if T = U then
blanchet@50249
   605
                mk_id T
blanchet@50249
   606
              else
blanchet@50249
   607
                (case find_index (curry (op =) T) fpTs of
blanchet@50249
   608
                  ~1 => build_map (build_call fiter_likes maybe_tick) T U
blanchet@50249
   609
                | j => maybe_tick (nth vs j) (nth fiter_likes j));
blanchet@50248
   610
blanchet@50289
   611
            fun mk_U maybe_mk_prodT =
blanchet@50289
   612
              typ_subst (map2 (fn fpT => fn C => (fpT, maybe_mk_prodT fpT C)) fpTs Cs);
blanchet@50229
   613
blanchet@50357
   614
            fun intr_calls fiter_likes maybe_cons maybe_tick maybe_mk_prodT (x as Free (_, T)) =
blanchet@50229
   615
              if member (op =) fpTs T then
blanchet@50248
   616
                maybe_cons x [build_call fiter_likes (K I) (T, mk_U (K I) T) $ x]
blanchet@50377
   617
              else if exists_fp_subtype T then
blanchet@50289
   618
                [build_call fiter_likes maybe_tick (T, mk_U maybe_mk_prodT T) $ x]
blanchet@50229
   619
              else
blanchet@50229
   620
                [x];
blanchet@50229
   621
blanchet@50357
   622
            val gxsss = map (map (maps (intr_calls giters (K I) (K I) (K I)))) xsss;
blanchet@50357
   623
            val hxsss = map (map (maps (intr_calls hrecs cons tick (curry HOLogic.mk_prodT)))) xsss;
blanchet@50219
   624
blanchet@50227
   625
            val goal_iterss = map5 (map4 o mk_goal_iter_like gss) giters xctrss gss xsss gxsss;
blanchet@50227
   626
            val goal_recss = map5 (map4 o mk_goal_iter_like hss) hrecs xctrss hss xsss hxsss;
blanchet@50219
   627
blanchet@50218
   628
            val iter_tacss =
blanchet@50244
   629
              map2 (map o mk_iter_like_tac pre_map_defs map_ids iter_defs) fp_iter_thms ctr_defss;
blanchet@50218
   630
            val rec_tacss =
blanchet@50244
   631
              map2 (map o mk_iter_like_tac pre_map_defs map_ids rec_defs) fp_rec_thms ctr_defss;
blanchet@50217
   632
          in
blanchet@50291
   633
            (map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
blanchet@50220
   634
               goal_iterss iter_tacss,
blanchet@50291
   635
             map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
blanchet@50220
   636
               goal_recss rec_tacss)
blanchet@50217
   637
          end;
blanchet@50216
   638
blanchet@50352
   639
        val common_notes =
blanchet@50357
   640
          (if N > 1 then [(inductN, [induct_thm], [])] (* FIXME: attribs *) else [])
blanchet@50352
   641
          |> map (fn (thmN, thms, attrs) =>
blanchet@50352
   642
              ((Binding.qualify true fp_common_name (Binding.name thmN), attrs), [(thms, [])]));
blanchet@50352
   643
blanchet@50241
   644
        val notes =
blanchet@50357
   645
          [(inductN, map single induct_thms, []), (* FIXME: attribs *)
blanchet@50357
   646
           (itersN, iter_thmss, simp_attrs),
blanchet@50315
   647
           (recsN, rec_thmss, Code.add_default_eqn_attrib :: simp_attrs)]
blanchet@50315
   648
          |> maps (fn (thmN, thmss, attrs) =>
blanchet@50217
   649
            map2 (fn b => fn thms =>
blanchet@50315
   650
              ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs),
blanchet@50317
   651
                [(thms, [])])) fp_bs thmss);
blanchet@50217
   652
      in
blanchet@50352
   653
        lthy |> Local_Theory.notes (common_notes @ notes) |> snd
blanchet@50217
   654
      end;
blanchet@50217
   655
blanchet@50352
   656
    fun derive_coinduct_coiter_corec_thms_for_types ((ctrss, selsss, coiters, corecs, vs, _,
blanchet@50352
   657
        ctr_defss, discIss, sel_thmsss, coiter_defs, corec_defs), lthy) =
blanchet@50227
   658
      let
blanchet@50352
   659
        val (coinduct_thms, coinduct_thm) =
blanchet@50352
   660
          let
blanchet@50352
   661
            val coinduct_thm = fp_induct;
blanchet@50352
   662
          in
blanchet@50352
   663
            `(conj_dests N) coinduct_thm
blanchet@50352
   664
          end;
blanchet@50227
   665
blanchet@50227
   666
        val (coiter_thmss, corec_thmss) =
blanchet@50227
   667
          let
blanchet@50352
   668
            val z = the_single zs;
blanchet@50352
   669
            val gcoiters = map (lists_bmoc pgss) coiters;
blanchet@50352
   670
            val hcorecs = map (lists_bmoc phss) corecs;
blanchet@50352
   671
blanchet@50247
   672
            fun mk_goal_cond pos = HOLogic.mk_Trueprop o (not pos ? HOLogic.mk_not);
blanchet@50227
   673
blanchet@50291
   674
            fun mk_goal_coiter_like pfss c cps fcoiter_like n k ctr m cfs' =
blanchet@50227
   675
              fold_rev (fold_rev Logic.all) ([c] :: pfss)
blanchet@50247
   676
                (Logic.list_implies (seq_conds mk_goal_cond n k cps,
blanchet@50291
   677
                   mk_Trueprop_eq (fcoiter_like $ c, Term.list_comb (ctr, take m cfs'))));
blanchet@50227
   678
blanchet@50249
   679
            fun build_call fiter_likes maybe_tack (T, U) =
blanchet@50249
   680
              if T = U then
blanchet@50249
   681
                mk_id T
blanchet@50249
   682
              else
blanchet@50249
   683
                (case find_index (curry (op =) U) fpTs of
blanchet@50249
   684
                  ~1 => build_map (build_call fiter_likes maybe_tack) T U
blanchet@50249
   685
                | j => maybe_tack (nth cs j, nth vs j) (nth fiter_likes j));
blanchet@50248
   686
blanchet@50289
   687
            fun mk_U maybe_mk_sumT =
blanchet@50289
   688
              typ_subst (map2 (fn C => fn fpT => (maybe_mk_sumT fpT C, fpT)) Cs fpTs);
blanchet@50227
   689
blanchet@50357
   690
            fun intr_calls fiter_likes maybe_mk_sumT maybe_tack cqf =
blanchet@50291
   691
              let val T = fastype_of cqf in
blanchet@50291
   692
                if exists_subtype (member (op =) Cs) T then
blanchet@50291
   693
                  build_call fiter_likes maybe_tack (T, mk_U maybe_mk_sumT T) $ cqf
blanchet@50291
   694
                else
blanchet@50291
   695
                  cqf
blanchet@50291
   696
              end;
blanchet@50247
   697
blanchet@50357
   698
            val crgsss' = map (map (map (intr_calls gcoiters (K I) (K I)))) crgsss;
blanchet@50357
   699
            val cshsss' = map (map (map (intr_calls hcorecs (curry mk_sumT) (tack z)))) cshsss;
blanchet@50227
   700
blanchet@50227
   701
            val goal_coiterss =
blanchet@50291
   702
              map8 (map4 oooo mk_goal_coiter_like pgss) cs cpss gcoiters ns kss ctrss mss crgsss';
blanchet@50248
   703
            val goal_corecss =
blanchet@50291
   704
              map8 (map4 oooo mk_goal_coiter_like phss) cs cpss hcorecs ns kss ctrss mss cshsss';
blanchet@50228
   705
blanchet@50228
   706
            val coiter_tacss =
blanchet@50244
   707
              map3 (map oo mk_coiter_like_tac coiter_defs map_ids) fp_iter_thms pre_map_defs
blanchet@50241
   708
                ctr_defss;
blanchet@50248
   709
            val corec_tacss =
blanchet@50248
   710
              map3 (map oo mk_coiter_like_tac corec_defs map_ids) fp_rec_thms pre_map_defs
blanchet@50248
   711
                ctr_defss;
blanchet@50227
   712
          in
blanchet@50291
   713
            (map2 (map2 (fn goal => fn tac =>
blanchet@50291
   714
                 Skip_Proof.prove lthy [] [] goal (tac o #context) |> Thm.close_derivation))
blanchet@50228
   715
               goal_coiterss coiter_tacss,
blanchet@50291
   716
             map2 (map2 (fn goal => fn tac =>
blanchet@50291
   717
                 Skip_Proof.prove lthy [] [] goal (tac o #context)
blanchet@50291
   718
                 |> Local_Defs.unfold lthy @{thms sum_case_if} |> Thm.close_derivation))
blanchet@50248
   719
               goal_corecss corec_tacss)
blanchet@50227
   720
          end;
blanchet@50227
   721
blanchet@50281
   722
        fun mk_disc_coiter_like_thms [_] = K []
blanchet@50281
   723
          | mk_disc_coiter_like_thms thms = map2 (curry (op RS)) thms;
blanchet@50281
   724
blanchet@50281
   725
        val disc_coiter_thmss = map2 mk_disc_coiter_like_thms coiter_thmss discIss;
blanchet@50281
   726
        val disc_corec_thmss = map2 mk_disc_coiter_like_thms corec_thmss discIss;
blanchet@50281
   727
blanchet@50282
   728
        fun mk_sel_coiter_like_thm coiter_like_thm sel0 sel_thm =
blanchet@50281
   729
          let
blanchet@50282
   730
            val (domT, ranT) = dest_funT (fastype_of sel0);
blanchet@50281
   731
            val arg_cong' =
blanchet@50281
   732
              Drule.instantiate' (map (SOME o certifyT lthy) [domT, ranT])
blanchet@50282
   733
                [NONE, NONE, SOME (certify lthy sel0)] arg_cong
blanchet@50282
   734
              |> Thm.varifyT_global;
blanchet@50281
   735
            val sel_thm' = sel_thm RSN (2, trans);
blanchet@50281
   736
          in
blanchet@50282
   737
            coiter_like_thm RS arg_cong' RS sel_thm'
blanchet@50281
   738
          end;
blanchet@50281
   739
blanchet@50281
   740
        val sel_coiter_thmsss =
blanchet@50281
   741
          map3 (map3 (map2 o mk_sel_coiter_like_thm)) coiter_thmss selsss sel_thmsss;
blanchet@50281
   742
        val sel_corec_thmsss =
blanchet@50282
   743
          map3 (map3 (map2 o mk_sel_coiter_like_thm)) corec_thmss selsss sel_thmsss;
blanchet@50281
   744
blanchet@50357
   745
        val common_notes =
blanchet@50357
   746
          (if N > 1 then [(coinductN, [coinduct_thm], [])] (* FIXME: attribs *) else [])
blanchet@50357
   747
          |> map (fn (thmN, thms, attrs) =>
blanchet@50357
   748
              ((Binding.qualify true fp_common_name (Binding.name thmN), attrs), [(thms, [])]));
blanchet@50357
   749
blanchet@50227
   750
        val notes =
blanchet@50357
   751
          [(coinductN, map single coinduct_thms, []), (* FIXME: attribs *)
blanchet@50357
   752
           (coitersN, coiter_thmss, []),
blanchet@50315
   753
           (disc_coitersN, disc_coiter_thmss, []),
blanchet@50315
   754
           (sel_coitersN, map flat sel_coiter_thmsss, []),
blanchet@50315
   755
           (corecsN, corec_thmss, []),
blanchet@50315
   756
           (disc_corecsN, disc_corec_thmss, []),
blanchet@50315
   757
           (sel_corecsN, map flat sel_corec_thmsss, [])]
blanchet@50315
   758
          |> maps (fn (thmN, thmss, attrs) =>
blanchet@50281
   759
            map_filter (fn (_, []) => NONE | (b, thms) =>
blanchet@50315
   760
              SOME ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs),
blanchet@50317
   761
                [(thms, [])])) (fp_bs ~~ thmss));
blanchet@50227
   762
      in
blanchet@50376
   763
        lthy |> Local_Theory.notes (common_notes @ notes) |> snd
blanchet@50227
   764
      end;
blanchet@50227
   765
blanchet@50302
   766
    fun wrap_types_and_define_iter_likes ((wraps, define_iter_likess), lthy) =
blanchet@50302
   767
      fold_map2 (curry (op o)) define_iter_likess wraps lthy |>> split_list11
blanchet@50302
   768
blanchet@50219
   769
    val lthy' = lthy
blanchet@50376
   770
      |> fold_map define_ctrs_case_for_type (fp_bs ~~ fpTs ~~ Cs ~~ vs ~~ flds ~~ unfs ~~
blanchet@50376
   771
        fp_iters ~~ fp_recs ~~ fld_unfs ~~ unf_flds ~~ fld_injects ~~ ns ~~ kss ~~ mss ~~
blanchet@50376
   772
        ctr_bindingss ~~ ctr_mixfixess ~~ ctr_Tsss ~~ disc_bindingss ~~ sel_bindingsss ~~
blanchet@50376
   773
        raw_sel_defaultsss)
blanchet@50302
   774
      |>> split_list |> wrap_types_and_define_iter_likes
blanchet@50352
   775
      |> (if lfp then derive_induct_iter_rec_thms_for_types
blanchet@50352
   776
          else derive_coinduct_coiter_corec_thms_for_types);
blanchet@50182
   777
blanchet@50182
   778
    val timer = time (timer ("Constructors, discriminators, selectors, etc., for the new " ^
blanchet@50223
   779
      (if lfp then "" else "co") ^ "datatype"));
blanchet@50127
   780
  in
blanchet@50323
   781
    timer; lthy'
blanchet@50127
   782
  end;
blanchet@50127
   783
blanchet@50313
   784
val datatyp = define_datatype (K I) (K I) (K I);
blanchet@50312
   785
blanchet@50313
   786
val datatype_cmd = define_datatype Typedecl.read_constraint Syntax.parse_typ Syntax.read_term;
blanchet@50134
   787
blanchet@50344
   788
val parse_binding_colon = Parse.binding --| @{keyword ":"};
blanchet@50351
   789
val parse_opt_binding_colon = Scan.optional parse_binding_colon no_binding;
blanchet@50134
   790
blanchet@50127
   791
val parse_ctr_arg =
blanchet@50344
   792
  @{keyword "("} |-- parse_binding_colon -- Parse.typ --| @{keyword ")"} ||
blanchet@50351
   793
  (Parse.typ >> pair no_binding);
blanchet@50127
   794
blanchet@50301
   795
val parse_defaults =
blanchet@50301
   796
  @{keyword "("} |-- @{keyword "defaults"} |-- Scan.repeat parse_bound_term --| @{keyword ")"};
blanchet@50301
   797
blanchet@50127
   798
val parse_single_spec =
blanchet@50127
   799
  Parse.type_args_constrained -- Parse.binding -- Parse.opt_mixfix --
blanchet@50134
   800
  (@{keyword "="} |-- Parse.enum1 "|" (parse_opt_binding_colon -- Parse.binding --
blanchet@50301
   801
    Scan.repeat parse_ctr_arg -- Scan.optional parse_defaults [] -- Parse.opt_mixfix));
blanchet@50127
   802
blanchet@50293
   803
val parse_datatype = parse_wrap_options -- Parse.and_list1 parse_single_spec;
blanchet@50293
   804
blanchet@50323
   805
fun parse_datatype_cmd lfp construct = parse_datatype >> datatype_cmd lfp construct;
blanchet@50127
   806
blanchet@50127
   807
end;