src/HOL/Codatatype/Tools/bnf_fp_sugar.ML
author blanchet
Mon, 10 Sep 2012 17:32:39 +0200
changeset 50269 edc322ac5279
parent 50251 632f68beff2a
child 50270 2ecc533d6697
permissions -rw-r--r--
busted -- let's use more neutral names
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@50248
    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@50191
   151
    val sum_prod_TsXs = map (mk_sumTN o map HOLogic.mk_tupleT) ctr_TsssXs;
blanchet@50134
   152
blanchet@50191
   153
    val eqs = map dest_TFree Xs ~~ 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@50230
   212
    val ((iter_only as (gss, g_Tss, yssss), rec_only as (hss, h_Tss, zssss)),
blanchet@50248
   213
         (zs, cs, cpss, p_Tss, coiter_only as ((pgss, cgsss), g_sum_prod_Ts, g_prod_Tss, g_Tsss),
blanchet@50230
   214
          corec_only as ((phss, chsss), h_sum_prod_Ts, h_prod_Tss, h_Tsss))) =
blanchet@50223
   215
      if lfp then
blanchet@50223
   216
        let
blanchet@50223
   217
          val y_Tsss =
blanchet@50225
   218
            map3 (fn n => fn ms => map2 dest_tupleT ms o dest_sumTN n o domain_type)
blanchet@50227
   219
              ns mss fp_iter_fun_Ts;
blanchet@50223
   220
          val g_Tss = map2 (map2 (curry (op --->))) y_Tsss Css;
blanchet@50219
   221
blanchet@50223
   222
          val ((gss, ysss), _) =
blanchet@50223
   223
            lthy
blanchet@50223
   224
            |> mk_Freess "f" g_Tss
blanchet@50223
   225
            ||>> mk_Freesss "x" y_Tsss;
blanchet@50219
   226
blanchet@50223
   227
          val z_Tssss =
blanchet@50225
   228
            map3 (fn n => fn ms => map2 (map dest_rec_pair oo dest_tupleT) ms o dest_sumTN n
blanchet@50227
   229
              o domain_type) ns mss fp_rec_fun_Ts;
blanchet@50223
   230
          val h_Tss = map2 (map2 (fold_rev (curry (op --->)))) z_Tssss Css;
blanchet@50223
   231
blanchet@50223
   232
          val hss = map2 (map2 retype_free) gss h_Tss;
blanchet@50223
   233
          val (zssss, _) =
blanchet@50223
   234
            lthy
blanchet@50223
   235
            |> mk_Freessss "x" z_Tssss;
blanchet@50225
   236
        in
blanchet@50230
   237
          (((gss, g_Tss, map (map (map single)) ysss), (hss, h_Tss, zssss)),
blanchet@50248
   238
           ([], [], [], [], (([], []), [], [], []), (([], []), [], [], [])))
blanchet@50225
   239
        end
blanchet@50223
   240
      else
blanchet@50225
   241
        let
blanchet@50236
   242
          (*avoid "'a itself" arguments in coiterators and corecursors*)
blanchet@50236
   243
          val mss' =  map (fn [0] => [1] | ms => ms) mss;
blanchet@50236
   244
blanchet@50226
   245
          val p_Tss =
blanchet@50225
   246
            map2 (fn C => fn n => replicate (Int.max (0, n - 1)) (C --> HOLogic.boolT)) Cs ns;
blanchet@50191
   247
blanchet@50269
   248
          fun zip_preds_getters [] [fs] = fs
blanchet@50269
   249
            | zip_preds_getters (p :: ps) (fs :: fss) = p :: fs @ zip_preds_getters ps fss;
blanchet@50230
   250
blanchet@50227
   251
          fun mk_types fun_Ts =
blanchet@50227
   252
            let
blanchet@50227
   253
              val f_sum_prod_Ts = map range_type fun_Ts;
blanchet@50227
   254
              val f_prod_Tss = map2 dest_sumTN ns f_sum_prod_Ts;
blanchet@50227
   255
              val f_Tsss =
blanchet@50236
   256
                map3 (fn C => map2 (map (curry (op -->) C) oo dest_tupleT)) Cs mss' f_prod_Tss;
blanchet@50269
   257
              val pf_Tss = map2 zip_preds_getters p_Tss f_Tsss
blanchet@50227
   258
            in (f_sum_prod_Ts, f_prod_Tss, f_Tsss, pf_Tss) end;
blanchet@50226
   259
blanchet@50227
   260
          val (g_sum_prod_Ts, g_prod_Tss, g_Tsss, pg_Tss) = mk_types fp_iter_fun_Ts;
blanchet@50227
   261
          val (h_sum_prod_Ts, h_prod_Tss, h_Tsss, ph_Tss) = mk_types fp_rec_fun_Ts;
blanchet@50226
   262
blanchet@50248
   263
          val ((((Free (z, _), cs), pss), gsss), _) =
blanchet@50225
   264
            lthy
blanchet@50248
   265
            |> yield_singleton (mk_Frees "z") dummyT
blanchet@50248
   266
            ||>> mk_Frees "a" Cs
blanchet@50226
   267
            ||>> mk_Freess "p" p_Tss
blanchet@50225
   268
            ||>> mk_Freesss "g" g_Tsss;
blanchet@50225
   269
blanchet@50226
   270
          val hsss = map2 (map2 (map2 retype_free)) gsss h_Tsss;
blanchet@50226
   271
blanchet@50227
   272
          val cpss = map2 (fn c => map (fn p => p $ c)) cs pss;
blanchet@50227
   273
blanchet@50227
   274
          fun mk_terms fsss =
blanchet@50227
   275
            let
blanchet@50269
   276
              val pfss = map2 zip_preds_getters pss fsss;
blanchet@50227
   277
              val cfsss = map2 (fn c => map (map (fn f => f $ c))) cs fsss
blanchet@50227
   278
            in (pfss, cfsss) end;
blanchet@50225
   279
        in
blanchet@50227
   280
          ((([], [], []), ([], [], [])),
blanchet@50248
   281
           ([z], cs, cpss, p_Tss, (mk_terms gsss, g_sum_prod_Ts, g_prod_Tss, pg_Tss),
blanchet@50227
   282
            (mk_terms hsss, h_sum_prod_Ts, h_prod_Tss, ph_Tss)))
blanchet@50225
   283
        end;
blanchet@50225
   284
blanchet@50227
   285
    fun pour_some_sugar_on_type (((((((((((((((((b, fpT), C), fld), unf), fp_iter), fp_rec),
blanchet@50227
   286
          fld_unf), unf_fld), fld_inject), n), ks), ms), ctr_binders), ctr_mixfixes), ctr_Tss),
blanchet@50227
   287
        disc_binders), sel_binderss) no_defs_lthy =
blanchet@50191
   288
      let
blanchet@50216
   289
        val unfT = domain_type (fastype_of fld);
blanchet@50225
   290
        val ctr_prod_Ts = map HOLogic.mk_tupleT ctr_Tss;
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@50136
   301
          map2 (fn k => fn xs =>
blanchet@50225
   302
            fold_rev Term.lambda xs (fld $ mk_InN ctr_prod_Ts (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@50191
   307
          fold_rev Term.lambda (fs @ [v]) (mk_sum_caseN (map2 mk_uncurried_fun fs xss) $ (unf $ v));
blanchet@50144
   308
blanchet@50216
   309
        val ((raw_case :: raw_ctrs, raw_case_def :: raw_ctr_defs), (lthy', lthy)) = no_defs_lthy
blanchet@50184
   310
          |> apfst split_list o fold_map3 (fn b => fn mx => fn rhs =>
blanchet@50184
   311
               Local_Theory.define ((b, mx), ((Thm.def_binding b, []), rhs)) #>> apsnd snd)
blanchet@50216
   312
             (case_binder :: ctr_binders) (NoSyn :: ctr_mixfixes) (case_rhs :: ctr_rhss)
blanchet@50136
   313
          ||> `Local_Theory.restore;
blanchet@50136
   314
blanchet@50136
   315
        (*transforms defined frees into consts (and more)*)
blanchet@50136
   316
        val phi = Proof_Context.export_morphism lthy lthy';
blanchet@50136
   317
blanchet@50136
   318
        val ctr_defs = map (Morphism.thm phi) raw_ctr_defs;
blanchet@50145
   319
        val case_def = Morphism.thm phi raw_case_def;
blanchet@50145
   320
blanchet@50218
   321
        val ctrs0 = map (Morphism.term phi) raw_ctrs;
blanchet@50218
   322
        val casex0 = Morphism.term phi raw_case;
blanchet@50218
   323
blanchet@50218
   324
        val ctrs = map (mk_ctr As) ctrs0;
blanchet@50136
   325
blanchet@50150
   326
        fun exhaust_tac {context = ctxt, ...} =
blanchet@50138
   327
          let
blanchet@50150
   328
            val fld_iff_unf_thm =
blanchet@50150
   329
              let
blanchet@50150
   330
                val goal =
blanchet@50150
   331
                  fold_rev Logic.all [u, v]
blanchet@50150
   332
                    (mk_Trueprop_eq (HOLogic.mk_eq (v, fld $ u), HOLogic.mk_eq (unf $ v, u)));
blanchet@50150
   333
              in
blanchet@50150
   334
                Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
blanchet@50216
   335
                  mk_fld_iff_unf_tac ctxt (map (SOME o certifyT lthy) [unfT, fpT])
blanchet@50191
   336
                    (certify lthy fld) (certify lthy unf) fld_unf unf_fld)
blanchet@50150
   337
                |> Thm.close_derivation
blanchet@50150
   338
                |> Morphism.thm phi
blanchet@50150
   339
              end;
blanchet@50150
   340
blanchet@50150
   341
            val sumEN_thm' =
blanchet@50150
   342
              Local_Defs.unfold lthy @{thms all_unit_eq}
blanchet@50225
   343
                (Drule.instantiate' (map (SOME o certifyT lthy) ctr_prod_Ts) [] (mk_sumEN n))
blanchet@50150
   344
              |> Morphism.thm phi;
blanchet@50138
   345
          in
blanchet@50176
   346
            mk_exhaust_tac ctxt n ctr_defs fld_iff_unf_thm sumEN_thm'
blanchet@50138
   347
          end;
blanchet@50136
   348
blanchet@50141
   349
        val inject_tacss =
blanchet@50220
   350
          map2 (fn 0 => K [] | _ => fn ctr_def => [fn {context = ctxt, ...} =>
blanchet@50220
   351
              mk_inject_tac ctxt ctr_def fld_inject]) ms ctr_defs;
blanchet@50141
   352
blanchet@50142
   353
        val half_distinct_tacss =
blanchet@50142
   354
          map (map (fn (def, def') => fn {context = ctxt, ...} =>
blanchet@50142
   355
            mk_half_distinct_tac ctxt fld_inject [def, def'])) (mk_half_pairss ctr_defs);
blanchet@50142
   356
blanchet@50145
   357
        val case_tacs =
blanchet@50145
   358
          map3 (fn k => fn m => fn ctr_def => fn {context = ctxt, ...} =>
blanchet@50145
   359
            mk_case_tac ctxt n k m case_def ctr_def unf_fld) ks ms ctr_defs;
blanchet@50136
   360
blanchet@50136
   361
        val tacss = [exhaust_tac] :: inject_tacss @ half_distinct_tacss @ [case_tacs];
blanchet@50149
   362
blanchet@50225
   363
        fun some_lfp_sugar no_defs_lthy =
blanchet@50149
   364
          let
blanchet@50223
   365
            val fpT_to_C = fpT --> C;
blanchet@50214
   366
blanchet@50230
   367
            fun generate_iter_like (suf, fp_iter_like, (fss, f_Tss, xssss)) =
blanchet@50230
   368
              let
blanchet@50230
   369
                val res_T = fold_rev (curry (op --->)) f_Tss fpT_to_C;
blanchet@50214
   370
blanchet@50230
   371
                val binder = Binding.suffix_name ("_" ^ suf) b;
blanchet@50214
   372
blanchet@50230
   373
                val spec =
blanchet@50230
   374
                  mk_Trueprop_eq (lists_bmoc fss (Free (Binding.name_of binder, res_T)),
blanchet@50230
   375
                    Term.list_comb (fp_iter_like,
blanchet@50230
   376
                      map2 (mk_sum_caseN oo map2 mk_uncurried2_fun) fss xssss));
blanchet@50230
   377
              in (binder, spec) end;
blanchet@50230
   378
blanchet@50230
   379
            val iter_likes =
blanchet@50230
   380
              [(iterN, fp_iter, iter_only),
blanchet@50230
   381
               (recN, fp_rec, rec_only)];
blanchet@50230
   382
blanchet@50230
   383
            val (binders, specs) = map generate_iter_like iter_likes |> split_list;
blanchet@50230
   384
blanchet@50230
   385
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
blanchet@50216
   386
              |> apfst split_list o fold_map2 (fn b => fn spec =>
blanchet@50214
   387
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
blanchet@50230
   388
                #>> apsnd snd) binders specs
blanchet@50214
   389
              ||> `Local_Theory.restore;
blanchet@50216
   390
blanchet@50216
   391
            (*transforms defined frees into consts (and more)*)
blanchet@50216
   392
            val phi = Proof_Context.export_morphism lthy lthy';
blanchet@50216
   393
blanchet@50230
   394
            val [iter_def, rec_def] = map (Morphism.thm phi) defs;
blanchet@50216
   395
blanchet@50230
   396
            val [iter, recx] = map (mk_iter_like As Cs o Morphism.term phi) csts;
blanchet@50149
   397
          in
blanchet@50229
   398
            ((ctrs, iter, recx, v, xss, ctr_defs, iter_def, rec_def), lthy)
blanchet@50149
   399
          end;
blanchet@50149
   400
blanchet@50225
   401
        fun some_gfp_sugar no_defs_lthy =
blanchet@50225
   402
          let
blanchet@50225
   403
            val B_to_fpT = C --> fpT;
blanchet@50225
   404
blanchet@50227
   405
            fun generate_coiter_like (suf, fp_iter_like, ((pfss, cfsss), f_sum_prod_Ts, f_prod_Tss,
blanchet@50227
   406
                pf_Tss)) =
blanchet@50226
   407
              let
blanchet@50226
   408
                val res_T = fold_rev (curry (op --->)) pf_Tss B_to_fpT;
blanchet@50225
   409
blanchet@50226
   410
                val binder = Binding.suffix_name ("_" ^ suf) b;
blanchet@50225
   411
blanchet@50269
   412
                fun mk_preds_getters_join c n cps sum_prod_T prod_Ts cfss =
blanchet@50226
   413
                  Term.lambda c (mk_IfN sum_prod_T cps
blanchet@50226
   414
                    (map2 (mk_InN prod_Ts) (map HOLogic.mk_tuple cfss) (1 upto n)));
blanchet@50225
   415
blanchet@50226
   416
                val spec =
blanchet@50227
   417
                  mk_Trueprop_eq (lists_bmoc pfss (Free (Binding.name_of binder, res_T)),
blanchet@50226
   418
                    Term.list_comb (fp_iter_like,
blanchet@50269
   419
                      map6 mk_preds_getters_join cs ns cpss f_sum_prod_Ts f_prod_Tss cfsss));
blanchet@50226
   420
              in (binder, spec) end;
blanchet@50225
   421
blanchet@50227
   422
            val coiter_likes =
blanchet@50230
   423
              [(coiterN, fp_iter, coiter_only),
blanchet@50230
   424
               (corecN, fp_rec, corec_only)];
blanchet@50227
   425
blanchet@50226
   426
            val (binders, specs) = map generate_coiter_like coiter_likes |> split_list;
blanchet@50226
   427
blanchet@50226
   428
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
blanchet@50225
   429
              |> apfst split_list o fold_map2 (fn b => fn spec =>
blanchet@50225
   430
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
blanchet@50226
   431
                #>> apsnd snd) binders specs
blanchet@50225
   432
              ||> `Local_Theory.restore;
blanchet@50225
   433
blanchet@50225
   434
            (*transforms defined frees into consts (and more)*)
blanchet@50225
   435
            val phi = Proof_Context.export_morphism lthy lthy';
blanchet@50225
   436
blanchet@50226
   437
            val [coiter_def, corec_def] = map (Morphism.thm phi) defs;
blanchet@50225
   438
blanchet@50226
   439
            val [coiter, corec] = map (mk_iter_like As Cs o Morphism.term phi) csts;
blanchet@50225
   440
          in
blanchet@50229
   441
            ((ctrs, coiter, corec, v, xss, ctr_defs, coiter_def, corec_def), lthy)
blanchet@50225
   442
          end;
blanchet@50134
   443
      in
blanchet@50218
   444
        wrap_datatype tacss ((ctrs0, casex0), (disc_binders, sel_binderss)) lthy'
blanchet@50225
   445
        |> (if lfp then some_lfp_sugar else some_gfp_sugar)
blanchet@50134
   446
      end;
blanchet@50182
   447
blanchet@50241
   448
    val pre_map_defs = map map_def_of_bnf pre_bnfs;
blanchet@50244
   449
    val map_ids = map map_id_of_bnf nested_bnfs;
blanchet@50241
   450
blanchet@50229
   451
    fun mk_map Ts Us t =
blanchet@50232
   452
      let val (Type (_, Ts0), Type (_, Us0)) = strip_map_type (fastype_of t) |>> List.last in
blanchet@50229
   453
        Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
blanchet@50229
   454
      end;
blanchet@50229
   455
blanchet@50249
   456
    fun build_map build_arg (Type (s, Ts)) (Type (_, Us)) =
blanchet@50249
   457
      let
traytel@50251
   458
        val map0 = map_of_bnf (the (bnf_of lthy s));
blanchet@50249
   459
        val mapx = mk_map Ts Us map0;
blanchet@50249
   460
        val TUs = map dest_funT (fst (split_last (fst (strip_map_type (fastype_of mapx)))));
blanchet@50249
   461
        val args = map build_arg TUs;
blanchet@50249
   462
      in Term.list_comb (mapx, args) end;
blanchet@50249
   463
blanchet@50229
   464
    fun pour_more_sugar_on_lfps ((ctrss, iters, recs, vs, xsss, ctr_defss, iter_defs, rec_defs),
blanchet@50220
   465
        lthy) =
blanchet@50217
   466
      let
blanchet@50217
   467
        val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss;
blanchet@50227
   468
        val giters = map (lists_bmoc gss) iters;
blanchet@50227
   469
        val hrecs = map (lists_bmoc hss) recs;
blanchet@50216
   470
blanchet@50217
   471
        val (iter_thmss, rec_thmss) =
blanchet@50222
   472
          let
blanchet@50227
   473
            fun mk_goal_iter_like fss fiter_like xctr f xs fxs =
blanchet@50222
   474
              fold_rev (fold_rev Logic.all) (xs :: fss)
blanchet@50227
   475
                (mk_Trueprop_eq (fiter_like $ xctr, Term.list_comb (f, fxs)));
blanchet@50216
   476
blanchet@50249
   477
            fun build_call fiter_likes maybe_tick (T, U) =
blanchet@50249
   478
              if T = U then
blanchet@50249
   479
                mk_id T
blanchet@50249
   480
              else
blanchet@50249
   481
                (case find_index (curry (op =) T) fpTs of
blanchet@50249
   482
                  ~1 => build_map (build_call fiter_likes maybe_tick) T U
blanchet@50249
   483
                | j => maybe_tick (nth vs j) (nth fiter_likes j));
blanchet@50248
   484
blanchet@50229
   485
            fun mk_U maybe_prodT =
blanchet@50229
   486
              typ_subst (map2 (fn fpT => fn C => (fpT, maybe_prodT fpT C)) fpTs Cs);
blanchet@50229
   487
blanchet@50229
   488
            fun repair_calls fiter_likes maybe_cons maybe_tick maybe_prodT (x as Free (_, T)) =
blanchet@50229
   489
              if member (op =) fpTs T then
blanchet@50248
   490
                maybe_cons x [build_call fiter_likes (K I) (T, mk_U (K I) T) $ x]
blanchet@50229
   491
              else if exists_subtype (member (op =) fpTs) T then
blanchet@50248
   492
                [build_call fiter_likes maybe_tick (T, mk_U maybe_prodT T) $ x]
blanchet@50229
   493
              else
blanchet@50229
   494
                [x];
blanchet@50229
   495
blanchet@50229
   496
            val gxsss = map (map (maps (repair_calls giters (K I) (K I) (K I)))) xsss;
blanchet@50229
   497
            val hxsss =
blanchet@50229
   498
              map (map (maps (repair_calls hrecs cons tick (curry HOLogic.mk_prodT)))) xsss;
blanchet@50219
   499
blanchet@50227
   500
            val goal_iterss = map5 (map4 o mk_goal_iter_like gss) giters xctrss gss xsss gxsss;
blanchet@50227
   501
            val goal_recss = map5 (map4 o mk_goal_iter_like hss) hrecs xctrss hss xsss hxsss;
blanchet@50219
   502
blanchet@50218
   503
            val iter_tacss =
blanchet@50244
   504
              map2 (map o mk_iter_like_tac pre_map_defs map_ids iter_defs) fp_iter_thms ctr_defss;
blanchet@50218
   505
            val rec_tacss =
blanchet@50244
   506
              map2 (map o mk_iter_like_tac pre_map_defs map_ids rec_defs) fp_rec_thms ctr_defss;
blanchet@50217
   507
          in
blanchet@50220
   508
            (map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
blanchet@50220
   509
               goal_iterss iter_tacss,
blanchet@50220
   510
             map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
blanchet@50220
   511
               goal_recss rec_tacss)
blanchet@50217
   512
          end;
blanchet@50216
   513
blanchet@50241
   514
        val notes =
blanchet@50217
   515
          [(itersN, iter_thmss),
blanchet@50217
   516
           (recsN, rec_thmss)]
blanchet@50217
   517
          |> maps (fn (thmN, thmss) =>
blanchet@50217
   518
            map2 (fn b => fn thms =>
blanchet@50217
   519
                ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), []), [(thms, [])]))
blanchet@50217
   520
              bs thmss);
blanchet@50217
   521
      in
blanchet@50217
   522
        lthy |> Local_Theory.notes notes |> snd
blanchet@50217
   523
      end;
blanchet@50217
   524
blanchet@50229
   525
    fun pour_more_sugar_on_gfps ((ctrss, coiters, corecs, vs, xsss, ctr_defss, coiter_defs,
blanchet@50229
   526
        corec_defs), lthy) =
blanchet@50227
   527
      let
blanchet@50248
   528
        val z = the_single zs;
blanchet@50248
   529
blanchet@50227
   530
        val gcoiters = map (lists_bmoc pgss) coiters;
blanchet@50227
   531
        val hcorecs = map (lists_bmoc phss) corecs;
blanchet@50227
   532
blanchet@50227
   533
        val (coiter_thmss, corec_thmss) =
blanchet@50227
   534
          let
blanchet@50247
   535
            fun mk_goal_cond pos = HOLogic.mk_Trueprop o (not pos ? HOLogic.mk_not);
blanchet@50227
   536
blanchet@50250
   537
            fun mk_goal_coiter_like pfss c cps fcoiter_like n k ctr m cfs' =
blanchet@50227
   538
              fold_rev (fold_rev Logic.all) ([c] :: pfss)
blanchet@50247
   539
                (Logic.list_implies (seq_conds mk_goal_cond n k cps,
blanchet@50250
   540
                   mk_Trueprop_eq (fcoiter_like $ c, Term.list_comb (ctr, take m cfs'))));
blanchet@50227
   541
blanchet@50249
   542
            fun build_call fiter_likes maybe_tack (T, U) =
blanchet@50249
   543
              if T = U then
blanchet@50249
   544
                mk_id T
blanchet@50249
   545
              else
blanchet@50249
   546
                (case find_index (curry (op =) U) fpTs of
blanchet@50249
   547
                  ~1 => build_map (build_call fiter_likes maybe_tack) T U
blanchet@50249
   548
                | j => maybe_tack (nth cs j, nth vs j) (nth fiter_likes j));
blanchet@50248
   549
blanchet@50247
   550
            fun mk_U maybe_sumT =
blanchet@50248
   551
              typ_subst (map2 (fn C => fn fpT => (maybe_sumT fpT C, fpT)) Cs fpTs);
blanchet@50227
   552
blanchet@50247
   553
            fun repair_calls fiter_likes maybe_sumT maybe_tack
blanchet@50247
   554
                (cf as Free (_, Type (_, [_, T])) $ _) =
blanchet@50247
   555
              if exists_subtype (member (op =) Cs) T then
blanchet@50248
   556
                build_call fiter_likes maybe_tack (T, mk_U maybe_sumT T) $ cf
blanchet@50247
   557
              else
blanchet@50247
   558
                cf;
blanchet@50247
   559
blanchet@50250
   560
            val cgsss' = map (map (map (repair_calls gcoiters (K I) (K I)))) cgsss;
blanchet@50250
   561
            val chsss' = map (map (map (repair_calls hcorecs (curry mk_sumT) (tack z)))) chsss;
blanchet@50227
   562
blanchet@50227
   563
            val goal_coiterss =
blanchet@50250
   564
              map8 (map4 oooo mk_goal_coiter_like pgss) cs cpss gcoiters ns kss ctrss mss cgsss';
blanchet@50248
   565
            val goal_corecss =
blanchet@50250
   566
              map8 (map4 oooo mk_goal_coiter_like phss) cs cpss hcorecs ns kss ctrss mss chsss';
blanchet@50228
   567
blanchet@50228
   568
            val coiter_tacss =
blanchet@50244
   569
              map3 (map oo mk_coiter_like_tac coiter_defs map_ids) fp_iter_thms pre_map_defs
blanchet@50241
   570
                ctr_defss;
blanchet@50248
   571
            val corec_tacss =
blanchet@50248
   572
              map3 (map oo mk_coiter_like_tac corec_defs map_ids) fp_rec_thms pre_map_defs
blanchet@50248
   573
                ctr_defss;
blanchet@50227
   574
          in
blanchet@50228
   575
            (map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
blanchet@50228
   576
               goal_coiterss coiter_tacss,
blanchet@50248
   577
             map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
blanchet@50248
   578
               goal_corecss corec_tacss)
blanchet@50227
   579
          end;
blanchet@50227
   580
blanchet@50227
   581
        val notes =
blanchet@50248
   582
          [(coitersN, coiter_thmss),
blanchet@50248
   583
           (corecsN, corec_thmss)]
blanchet@50227
   584
          |> maps (fn (thmN, thmss) =>
blanchet@50227
   585
            map2 (fn b => fn thms =>
blanchet@50227
   586
                ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), []), [(thms, [])]))
blanchet@50227
   587
              bs thmss);
blanchet@50227
   588
      in
blanchet@50245
   589
        lthy |> Local_Theory.notes notes |> snd
blanchet@50227
   590
      end;
blanchet@50227
   591
blanchet@50219
   592
    val lthy' = lthy
blanchet@50225
   593
      |> fold_map pour_some_sugar_on_type (bs ~~ fpTs ~~ Cs ~~ flds ~~ unfs ~~ fp_iters ~~
blanchet@50227
   594
        fp_recs ~~ fld_unfs ~~ unf_flds ~~ fld_injects ~~ ns ~~ kss ~~ mss ~~ ctr_binderss ~~
blanchet@50227
   595
        ctr_mixfixess ~~ ctr_Tsss ~~ disc_binderss ~~ sel_bindersss)
blanchet@50229
   596
      |>> split_list8
blanchet@50227
   597
      |> (if lfp then pour_more_sugar_on_lfps else pour_more_sugar_on_gfps);
blanchet@50182
   598
blanchet@50182
   599
    val timer = time (timer ("Constructors, discriminators, selectors, etc., for the new " ^
blanchet@50223
   600
      (if lfp then "" else "co") ^ "datatype"));
blanchet@50127
   601
  in
blanchet@50219
   602
    (timer; lthy')
blanchet@50127
   603
  end;
blanchet@50127
   604
blanchet@50214
   605
fun datatype_cmd info specs lthy =
blanchet@50136
   606
  let
blanchet@50224
   607
    (* TODO: cleaner handling of fake contexts, without "background_theory" *)
blanchet@50199
   608
    (*the "perhaps o try" below helps gracefully handles the case where the new type is defined in a
blanchet@50199
   609
      locale and shadows an existing global type*)
blanchet@50194
   610
    val fake_thy = Theory.copy
blanchet@50199
   611
      #> fold (fn spec => perhaps (try (Sign.add_type lthy
blanchet@50199
   612
        (type_binder_of spec, length (type_args_constrained_of spec), mixfix_of spec)))) specs;
blanchet@50194
   613
    val fake_lthy = Proof_Context.background_theory fake_thy lthy;
blanchet@50136
   614
  in
blanchet@50214
   615
    prepare_datatype Syntax.read_typ info specs fake_lthy lthy
blanchet@50136
   616
  end;
blanchet@50134
   617
blanchet@50144
   618
val parse_opt_binding_colon = Scan.optional (Parse.binding --| Parse.$$$ ":") no_binder
blanchet@50134
   619
blanchet@50127
   620
val parse_ctr_arg =
blanchet@50134
   621
  Parse.$$$ "(" |-- parse_opt_binding_colon -- Parse.typ --| Parse.$$$ ")" ||
blanchet@50144
   622
  (Parse.typ >> pair no_binder);
blanchet@50127
   623
blanchet@50127
   624
val parse_single_spec =
blanchet@50127
   625
  Parse.type_args_constrained -- Parse.binding -- Parse.opt_mixfix --
blanchet@50134
   626
  (@{keyword "="} |-- Parse.enum1 "|" (parse_opt_binding_colon -- Parse.binding --
blanchet@50134
   627
    Scan.repeat parse_ctr_arg -- Parse.opt_mixfix));
blanchet@50127
   628
blanchet@50127
   629
val _ =
blanchet@50127
   630
  Outer_Syntax.local_theory @{command_spec "data"} "define BNF-based inductive datatypes"
blanchet@50223
   631
    (Parse.and_list1 parse_single_spec >> datatype_cmd true);
blanchet@50127
   632
blanchet@50127
   633
val _ =
blanchet@50127
   634
  Outer_Syntax.local_theory @{command_spec "codata"} "define BNF-based coinductive datatypes"
blanchet@50223
   635
    (Parse.and_list1 parse_single_spec >> datatype_cmd false);
blanchet@50127
   636
blanchet@50127
   637
end;