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