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