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