src/HOL/Codatatype/Tools/bnf_fp_sugar.ML
author blanchet
Wed, 12 Sep 2012 00:55:11 +0200
changeset 49302 f5bd87aac224
parent 49300 c707df2e2083
child 49308 6190b701e4f4
permissions -rw-r--r--
added optional qualifiers for constructors and destructors, similarly to the old package
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     1
(*  Title:      HOL/Codatatype/Tools/bnf_fp_sugar.ML
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     3
    Copyright   2012
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     4
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     5
Sugar for constructing LFPs and GFPs.
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     6
*)
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     7
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     8
signature BNF_FP_SUGAR =
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
     9
sig
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
    10
  val datatyp: bool ->
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    11
    bool * ((((typ * sort) list * binding) * mixfix) * ((((binding * binding) *
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
    12
      (binding * typ) list) * (binding * term) list) * mixfix) list) list ->
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
    13
    local_theory -> local_theory
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    14
end;
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    15
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    16
structure BNF_FP_Sugar : BNF_FP_SUGAR =
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    17
struct
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    18
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    19
open BNF_Util
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    20
open BNF_Wrap
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    21
open BNF_Def
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    22
open BNF_FP_Util
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    23
open BNF_LFP
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    24
open BNF_GFP
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
    25
open BNF_FP_Sugar_Tactics
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    26
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
    27
val caseN = "case";
49213
975ccb0130cb some work on coiter tactic
blanchet
parents: 49212
diff changeset
    28
val coitersN = "coiters";
975ccb0130cb some work on coiter tactic
blanchet
parents: 49212
diff changeset
    29
val corecsN = "corecs";
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
    30
val disc_coitersN = "disc_coiters";
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
    31
val disc_corecsN = "disc_corecs";
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
    32
val itersN = "iters";
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
    33
val recsN = "recs";
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
    34
val sel_coitersN = "sel_coiters";
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
    35
val sel_corecsN = "sel_corecs";
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
    36
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
    37
val simp_attrs = @{attributes [simp]};
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
    38
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
    39
fun split_list11 xs =
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
    40
  (map #1 xs, map #2 xs, map #3 xs, map #4 xs, map #5 xs, map #6 xs, map #7 xs, map #8 xs,
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
    41
   map #9 xs, map #10 xs, map #11 xs);
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    42
49217
0c9546fc789f fixed handling of map of "fun"
blanchet
parents: 49216
diff changeset
    43
fun strip_map_type (Type (@{type_name fun}, [T as Type _, T'])) = strip_map_type T' |>> cons T
0c9546fc789f fixed handling of map of "fun"
blanchet
parents: 49216
diff changeset
    44
  | strip_map_type T = ([], T);
0c9546fc789f fixed handling of map of "fun"
blanchet
parents: 49216
diff changeset
    45
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    46
fun typ_subst inst (T as Type (s, Ts)) =
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    47
    (case AList.lookup (op =) inst T of
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    48
      NONE => Type (s, map (typ_subst inst) Ts)
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    49
    | SOME T' => T')
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    50
  | typ_subst inst T = the_default T (AList.lookup (op =) inst T);
49205
674f04c737e0 implemented "mk_iter_or_rec_tac"
blanchet
parents: 49204
diff changeset
    51
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    52
fun resort_tfree S (TFree (s, _)) = TFree (s, S);
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    53
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    54
fun retype_free T (Free (s, _)) = Free (s, T);
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
    55
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
    56
val lists_bmoc = fold (fn xs => fn t => Term.list_comb (t, xs));
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
    57
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
    58
fun mk_predT T = T --> HOLogic.boolT;
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
    59
49234
blanchet
parents: 49233
diff changeset
    60
fun mk_id T = Const (@{const_name id}, T --> T);
blanchet
parents: 49233
diff changeset
    61
49200
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49199
diff changeset
    62
fun mk_tupled_fun x f xs = HOLogic.tupled_lambda x (Term.list_comb (f, xs));
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49199
diff changeset
    63
fun mk_uncurried_fun f xs = mk_tupled_fun (HOLogic.mk_tuple xs) f xs;
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
    64
fun mk_uncurried2_fun f xss =
49200
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49199
diff changeset
    65
  mk_tupled_fun (HOLogic.mk_tuple (map HOLogic.mk_tuple xss)) f (flat xss);
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49199
diff changeset
    66
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
    67
fun tick v f = Term.lambda v (HOLogic.mk_prod (v, f $ v));
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
    68
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
    69
fun tack z_name (c, v) f =
49273
f839ce127a2e reverted "id" change: The problem is rather that the "%c. f c" argument sometimes gets eta-reduced
blanchet
parents: 49268
diff changeset
    70
  let val z = Free (z_name, mk_sumT (fastype_of v, fastype_of c)) in
f839ce127a2e reverted "id" change: The problem is rather that the "%c. f c" argument sometimes gets eta-reduced
blanchet
parents: 49268
diff changeset
    71
    Term.lambda z (mk_sum_case (Term.lambda v v, Term.lambda c (f $ c)) $ z)
f839ce127a2e reverted "id" change: The problem is rather that the "%c. f c" argument sometimes gets eta-reduced
blanchet
parents: 49268
diff changeset
    72
  end;
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    73
49124
968e1b7de057 more work on FP sugar
blanchet
parents: 49123
diff changeset
    74
fun cannot_merge_types () = error "Mutually recursive types must have the same type parameters";
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    75
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    76
fun merge_type_arg T T' = if T = T' then T else cannot_merge_types ();
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    77
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    78
fun merge_type_args (As, As') =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    79
  if length As = length As' then map2 merge_type_arg As As' else cannot_merge_types ();
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    80
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
    81
fun type_args_constrained_of (((cAs, _), _), _) = cAs;
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
    82
val type_args_of = map fst o type_args_constrained_of;
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
    83
fun type_binder_of (((_, b), _), _) = b;
49181
blanchet
parents: 49180
diff changeset
    84
fun mixfix_of ((_, mx), _) = mx;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
    85
fun ctr_specs_of (_, ctr_specs) = ctr_specs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    86
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
    87
fun disc_of ((((disc, _), _), _), _) = disc;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
    88
fun ctr_of ((((_, ctr), _), _), _) = ctr;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
    89
fun args_of (((_, args), _), _) = args;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
    90
fun defaults_of ((_, ds), _) = ds;
49181
blanchet
parents: 49180
diff changeset
    91
fun ctr_mixfix_of (_, mx) = mx;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    92
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    93
fun define_datatype prepare_constraint prepare_typ prepare_term lfp (no_dests, specs)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    94
    no_defs_lthy0 =
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    95
  let
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    96
    (* TODO: sanity checks on arguments *)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    97
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
    98
    val _ = if not lfp andalso no_dests then error "Cannot define destructor-less codatatypes"
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
    99
      else ();
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   100
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   101
    val N = length specs;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   102
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   103
    fun prepare_type_arg (ty, c) =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   104
      let val TFree (s, _) = prepare_typ no_defs_lthy0 ty in
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   105
        TFree (s, prepare_constraint no_defs_lthy0 c)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   106
      end;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   107
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   108
    val Ass0 = map (map prepare_type_arg o type_args_constrained_of) specs;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   109
    val unsorted_Ass0 = map (map (resort_tfree HOLogic.typeS)) Ass0;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   110
    val unsorted_As = Library.foldr1 merge_type_args unsorted_Ass0;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   111
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   112
    val ((Bs, Cs), no_defs_lthy) =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   113
      no_defs_lthy0
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   114
      |> fold (Variable.declare_typ o resort_tfree dummyS) unsorted_As
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   115
      |> mk_TFrees N
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   116
      ||>> mk_TFrees N;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   117
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   118
    (* TODO: cleaner handling of fake contexts, without "background_theory" *)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   119
    (*the "perhaps o try" below helps gracefully handles the case where the new type is defined in a
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   120
      locale and shadows an existing global type*)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   121
    val fake_thy =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   122
      Theory.copy #> fold (fn spec => perhaps (try (Sign.add_type no_defs_lthy
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   123
        (type_binder_of spec, length (type_args_constrained_of spec), mixfix_of spec)))) specs;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   124
    val fake_lthy = Proof_Context.background_theory fake_thy no_defs_lthy;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   125
49182
b8517107ffc5 read the real types off the constant types, rather than using the fake parser types (second step of sugar localization)
blanchet
parents: 49181
diff changeset
   126
    fun mk_fake_T b =
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   127
      Type (fst (Term.dest_Type (Proof_Context.read_type_name fake_lthy true (Binding.name_of b))),
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   128
        unsorted_As);
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   129
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   130
    val fp_bs = map type_binder_of specs;
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   131
    val fake_Ts = map mk_fake_T fp_bs;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   132
49181
blanchet
parents: 49180
diff changeset
   133
    val mixfixes = map mixfix_of specs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   134
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   135
    val _ = (case duplicates Binding.eq_name fp_bs of [] => ()
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   136
      | b :: _ => error ("Duplicate type name declaration " ^ quote (Binding.name_of b)));
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   137
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   138
    val ctr_specss = map ctr_specs_of specs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   139
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   140
    val disc_binderss = map (map disc_of) ctr_specss;
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   141
    val ctr_binderss =
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   142
      map2 (fn fp_b => map (Binding.qualify false (Binding.name_of fp_b) o ctr_of))
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   143
        fp_bs ctr_specss;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   144
    val ctr_argsss = map (map args_of) ctr_specss;
49181
blanchet
parents: 49180
diff changeset
   145
    val ctr_mixfixess = map (map ctr_mixfix_of) ctr_specss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   146
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   147
    val sel_bindersss = map (map (map fst)) ctr_argsss;
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   148
    val fake_ctr_Tsss0 = map (map (map (prepare_typ fake_lthy o snd))) ctr_argsss;
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   149
    val raw_sel_defaultsss = map (map defaults_of) ctr_specss;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   150
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   151
    val (Ass as As :: _) :: fake_ctr_Tsss =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   152
      burrow (burrow (Syntax.check_typs fake_lthy)) (Ass0 :: fake_ctr_Tsss0);
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   153
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   154
    val _ = (case duplicates (op =) unsorted_As of [] => ()
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   155
      | A :: _ => error ("Duplicate type parameter " ^
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   156
          quote (Syntax.string_of_typ no_defs_lthy A)));
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   157
49183
0cc46e2dee7e careful about constructor types w.r.t. fake context (third step of localization)
blanchet
parents: 49182
diff changeset
   158
    val rhs_As' = fold (fold (fold Term.add_tfreesT)) fake_ctr_Tsss [];
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   159
    val _ = (case subtract (op =) (map dest_TFree As) rhs_As' of
49165
c6ccaf6df93c check type variables on rhs
blanchet
parents: 49161
diff changeset
   160
        [] => ()
c6ccaf6df93c check type variables on rhs
blanchet
parents: 49161
diff changeset
   161
      | A' :: _ => error ("Extra type variables on rhs: " ^
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   162
          quote (Syntax.string_of_typ no_defs_lthy (TFree A'))));
49165
c6ccaf6df93c check type variables on rhs
blanchet
parents: 49161
diff changeset
   163
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   164
    fun eq_fpT (T as Type (s, Us)) (Type (s', Us')) =
49146
e32b1f748854 added a check
blanchet
parents: 49135
diff changeset
   165
        s = s' andalso (Us = Us' orelse error ("Illegal occurrence of recursive type " ^
e32b1f748854 added a check
blanchet
parents: 49135
diff changeset
   166
          quote (Syntax.string_of_typ fake_lthy T)))
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   167
      | eq_fpT _ _ = false;
49146
e32b1f748854 added a check
blanchet
parents: 49135
diff changeset
   168
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   169
    fun freeze_fp (T as Type (s, Us)) =
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   170
        (case find_index (eq_fpT T) fake_Ts of ~1 => Type (s, map freeze_fp Us) | j => nth Bs j)
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   171
      | freeze_fp T = T;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   172
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
   173
    val ctr_TsssBs = map (map (map freeze_fp)) fake_ctr_Tsss;
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
   174
    val ctr_sum_prod_TsBs = map (mk_sumTN_balanced o map HOLogic.mk_tupleT) ctr_TsssBs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   175
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   176
    val fp_eqs =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   177
      map dest_TFree Bs ~~ map (Term.typ_subst_atomic (As ~~ unsorted_As)) ctr_sum_prod_TsBs;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   178
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   179
    val (pre_bnfs, ((unfs0, flds0, fp_iters0, fp_recs0, unf_flds, fld_unfs, fld_injects,
49207
4634c217b77b completed iter/rec proofs
blanchet
parents: 49205
diff changeset
   180
        fp_iter_thms, fp_rec_thms), lthy)) =
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   181
      fp_bnf (if lfp then bnf_lfp else bnf_gfp) fp_bs mixfixes (map dest_TFree unsorted_As) fp_eqs
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   182
        no_defs_lthy0;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   183
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   184
    val add_nested_bnf_names =
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   185
      let
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   186
        fun add (Type (s, Ts)) ss =
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   187
            let val (needs, ss') = fold_map add Ts ss in
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   188
              if exists I needs then (true, insert (op =) s ss') else (false, ss')
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   189
            end
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   190
          | add T ss = (member (op =) As T, ss);
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   191
      in snd oo add end;
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   192
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   193
    val nested_bnfs =
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
   194
      map_filter (bnf_of lthy) (fold (fold (fold add_nested_bnf_names)) ctr_TsssBs []);
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   195
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   196
    val timer = time (Timer.startRealTimer ());
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   197
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   198
    fun mk_unf_or_fld get_T Ts t =
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   199
      let val Type (_, Ts0) = get_T (fastype_of t) in
49124
968e1b7de057 more work on FP sugar
blanchet
parents: 49123
diff changeset
   200
        Term.subst_atomic_types (Ts0 ~~ Ts) t
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   201
      end;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   202
49126
1bbd7a37fc29 implemented "mk_inject_tac"
blanchet
parents: 49125
diff changeset
   203
    val mk_unf = mk_unf_or_fld domain_type;
1bbd7a37fc29 implemented "mk_inject_tac"
blanchet
parents: 49125
diff changeset
   204
    val mk_fld = mk_unf_or_fld range_type;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   205
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   206
    val unfs = map (mk_unf As) unfs0;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   207
    val flds = map (mk_fld As) flds0;
49124
968e1b7de057 more work on FP sugar
blanchet
parents: 49123
diff changeset
   208
49201
blanchet
parents: 49200
diff changeset
   209
    val fpTs = map (domain_type o fastype_of) unfs;
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   210
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
   211
    val ctr_Tsss = map (map (map (Term.typ_subst_atomic (Bs ~~ fpTs)))) ctr_TsssBs;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   212
    val ns = map length ctr_Tsss;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   213
    val kss = map (fn n => 1 upto n) ns;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   214
    val mss = map (map length) ctr_Tsss;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   215
    val Css = map2 replicate ns Cs;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   216
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   217
    fun mk_iter_like Ts Us t =
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   218
      let
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   219
        val (binders, body) = strip_type (fastype_of t);
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   220
        val (f_Us, prebody) = split_last binders;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   221
        val Type (_, Ts0) = if lfp then prebody else body;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   222
        val Us0 = distinct (op =) (map (if lfp then body_type else domain_type) f_Us);
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   223
      in
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   224
        Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   225
      end;
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   226
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   227
    val fp_iters as fp_iter1 :: _ = map (mk_iter_like As Cs) fp_iters0;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   228
    val fp_recs as fp_rec1 :: _ = map (mk_iter_like As Cs) fp_recs0;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   229
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   230
    val fp_iter_fun_Ts = fst (split_last (binder_types (fastype_of fp_iter1)));
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   231
    val fp_rec_fun_Ts = fst (split_last (binder_types (fastype_of fp_rec1)));
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   232
49256
df98aeb80a19 avoid type inference + tuning
blanchet
parents: 49255
diff changeset
   233
    val ((iter_only as (gss, _, _), rec_only as (hss, _, _)),
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   234
         (zs, cs, cpss, coiter_only as ((pgss, crgsss), _), corec_only as ((phss, cshsss), _))) =
49208
blanchet
parents: 49207
diff changeset
   235
      if lfp then
blanchet
parents: 49207
diff changeset
   236
        let
blanchet
parents: 49207
diff changeset
   237
          val y_Tsss =
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   238
            map3 (fn n => fn ms => map2 dest_tupleT ms o dest_sumTN_balanced n o domain_type)
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   239
              ns mss fp_iter_fun_Ts;
49208
blanchet
parents: 49207
diff changeset
   240
          val g_Tss = map2 (map2 (curry (op --->))) y_Tsss Css;
blanchet
parents: 49207
diff changeset
   241
blanchet
parents: 49207
diff changeset
   242
          val ((gss, ysss), _) =
blanchet
parents: 49207
diff changeset
   243
            lthy
blanchet
parents: 49207
diff changeset
   244
            |> mk_Freess "f" g_Tss
blanchet
parents: 49207
diff changeset
   245
            ||>> mk_Freesss "x" y_Tsss;
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   246
          val yssss = map (map (map single)) ysss;
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   247
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   248
          fun dest_rec_prodT (T as Type (@{type_name prod}, Us as [_, U])) =
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   249
              if member (op =) Cs U then Us else [T]
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   250
            | dest_rec_prodT T = [T];
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   251
49208
blanchet
parents: 49207
diff changeset
   252
          val z_Tssss =
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   253
            map3 (fn n => fn ms => map2 (map dest_rec_prodT oo dest_tupleT) ms o
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   254
              dest_sumTN_balanced n o domain_type) ns mss fp_rec_fun_Ts;
49208
blanchet
parents: 49207
diff changeset
   255
          val h_Tss = map2 (map2 (fold_rev (curry (op --->)))) z_Tssss Css;
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   256
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   257
          val hss = map2 (map2 retype_free) h_Tss gss;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   258
          val zssss_hd = map2 (map2 (map2 (retype_free o hd))) z_Tssss ysss;
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   259
          val (zssss_tl, _) =
49208
blanchet
parents: 49207
diff changeset
   260
            lthy
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   261
            |> mk_Freessss "y" (map (map (map tl)) z_Tssss);
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   262
          val zssss = map2 (map2 (map2 cons)) zssss_hd zssss_tl;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   263
        in
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   264
          (((gss, g_Tss, yssss), (hss, h_Tss, zssss)),
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   265
           ([], [], [], (([], []), ([], [])), (([], []), ([], []))))
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   266
        end
49208
blanchet
parents: 49207
diff changeset
   267
      else
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   268
        let
49221
6d8d5fe9f3a2 fixed bug with one-value types with phantom type arguments
blanchet
parents: 49220
diff changeset
   269
          (*avoid "'a itself" arguments in coiterators and corecursors*)
6d8d5fe9f3a2 fixed bug with one-value types with phantom type arguments
blanchet
parents: 49220
diff changeset
   270
          val mss' =  map (fn [0] => [1] | ms => ms) mss;
6d8d5fe9f3a2 fixed bug with one-value types with phantom type arguments
blanchet
parents: 49220
diff changeset
   271
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   272
          val p_Tss = map2 (fn n => replicate (Int.max (0, n - 1)) o mk_predT) ns Cs;
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   273
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   274
          fun zip_predss_getterss qss fss = maps (op @) (qss ~~ fss);
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   275
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   276
          fun zip_preds_predsss_gettersss [] [qss] [fss] = zip_predss_getterss qss fss
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   277
            | zip_preds_predsss_gettersss (p :: ps) (qss :: qsss) (fss :: fsss) =
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   278
              p :: zip_predss_getterss qss fss @ zip_preds_predsss_gettersss ps qsss fsss;
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   279
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   280
          fun mk_types maybe_dest_sumT fun_Ts =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   281
            let
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   282
              val f_sum_prod_Ts = map range_type fun_Ts;
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   283
              val f_prod_Tss = map2 dest_sumTN_balanced ns f_sum_prod_Ts;
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   284
              val f_Tssss =
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   285
                map3 (fn C => map2 (map (map (curry (op -->) C) o maybe_dest_sumT) oo dest_tupleT))
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   286
                  Cs mss' f_prod_Tss;
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   287
              val q_Tssss =
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   288
                map (map (map (fn [_] => [] | [_, C] => [mk_predT (domain_type C)]))) f_Tssss;
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   289
              val pf_Tss = map3 zip_preds_predsss_gettersss p_Tss q_Tssss f_Tssss;
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   290
            in (q_Tssss, f_sum_prod_Ts, f_Tssss, pf_Tss) end;
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   291
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   292
          val (r_Tssss, g_sum_prod_Ts, g_Tssss, pg_Tss) = mk_types single fp_iter_fun_Ts;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   293
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   294
          val ((((Free (z, _), cs), pss), gssss), _) =
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   295
            lthy
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   296
            |> yield_singleton (mk_Frees "z") dummyT
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   297
            ||>> mk_Frees "a" Cs
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   298
            ||>> mk_Freess "p" p_Tss
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   299
            ||>> mk_Freessss "g" g_Tssss;
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   300
          val rssss = map (map (map (fn [] => []))) r_Tssss;
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   301
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   302
          fun dest_corec_sumT (T as Type (@{type_name sum}, Us as [_, U])) =
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   303
              if member (op =) Cs U then Us else [T]
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   304
            | dest_corec_sumT T = [T];
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   305
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   306
          val (s_Tssss, h_sum_prod_Ts, h_Tssss, ph_Tss) = mk_types dest_corec_sumT fp_rec_fun_Ts;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   307
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   308
          val hssss_hd = map2 (map2 (map2 (fn T :: _ => fn [g] => retype_free T g))) h_Tssss gssss;
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   309
          val ((sssss, hssss_tl), _) =
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   310
            lthy
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   311
            |> mk_Freessss "q" s_Tssss
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   312
            ||>> mk_Freessss "h" (map (map (map tl)) h_Tssss);
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   313
          val hssss = map2 (map2 (map2 cons)) hssss_hd hssss_tl;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   314
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   315
          val cpss = map2 (fn c => map (fn p => p $ c)) cs pss;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   316
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   317
          fun mk_preds_getters_join [] [cf] = cf
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   318
            | mk_preds_getters_join [cq] [cf, cf'] =
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   319
              mk_If cq (mk_Inl (fastype_of cf') cf) (mk_Inr (fastype_of cf) cf');
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   320
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   321
          fun mk_terms qssss fssss =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   322
            let
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   323
              val pfss = map3 zip_preds_predsss_gettersss pss qssss fssss;
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   324
              val cqssss = map2 (fn c => map (map (map (fn f => f $ c)))) cs qssss;
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   325
              val cfssss = map2 (fn c => map (map (map (fn f => f $ c)))) cs fssss;
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   326
              val cqfsss = map2 (map2 (map2 mk_preds_getters_join)) cqssss cfssss;
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   327
            in (pfss, cqfsss) end;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   328
        in
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   329
          ((([], [], []), ([], [], [])),
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   330
           ([z], cs, cpss, (mk_terms rssss gssss, (g_sum_prod_Ts, pg_Tss)),
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   331
            (mk_terms sssss hssss, (h_sum_prod_Ts, ph_Tss))))
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   332
        end;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   333
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   334
    fun define_ctrs_case_for_type ((((((((((((((((((fp_b, fpT), C), fld), unf), fp_iter), fp_rec),
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   335
          fld_unf), unf_fld), fld_inject), n), ks), ms), ctr_binders), ctr_mixfixes), ctr_Tss),
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   336
        disc_binders), sel_binderss), raw_sel_defaultss) no_defs_lthy =
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   337
      let
49201
blanchet
parents: 49200
diff changeset
   338
        val unfT = domain_type (fastype_of fld);
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   339
        val ctr_prod_Ts = map HOLogic.mk_tupleT ctr_Tss;
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   340
        val ctr_sum_prod_T = mk_sumTN_balanced ctr_prod_Ts;
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   341
        val case_Ts = map (fn Ts => Ts ---> C) ctr_Tss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   342
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   343
        val ((((u, v), fs), xss), _) =
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   344
          no_defs_lthy
49201
blanchet
parents: 49200
diff changeset
   345
          |> yield_singleton (mk_Frees "u") unfT
blanchet
parents: 49200
diff changeset
   346
          ||>> yield_singleton (mk_Frees "v") fpT
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   347
          ||>> mk_Frees "f" case_Ts
49124
968e1b7de057 more work on FP sugar
blanchet
parents: 49123
diff changeset
   348
          ||>> mk_Freess "x" ctr_Tss;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   349
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   350
        val ctr_rhss =
49256
df98aeb80a19 avoid type inference + tuning
blanchet
parents: 49255
diff changeset
   351
          map2 (fn k => fn xs => fold_rev Term.lambda xs (fld $
df98aeb80a19 avoid type inference + tuning
blanchet
parents: 49255
diff changeset
   352
            mk_InN_balanced ctr_sum_prod_T n (HOLogic.mk_tuple xs) k)) ks xss;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   353
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   354
        val case_binder = Binding.suffix_name ("_" ^ caseN) fp_b;
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   355
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   356
        val case_rhs =
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   357
          fold_rev Term.lambda (fs @ [v])
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   358
            (mk_sum_caseN_balanced (map2 mk_uncurried_fun fs xss) $ (unf $ v));
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   359
49201
blanchet
parents: 49200
diff changeset
   360
        val ((raw_case :: raw_ctrs, raw_case_def :: raw_ctr_defs), (lthy', lthy)) = no_defs_lthy
49169
937a0fadddfb honor mixfix specifications
blanchet
parents: 49167
diff changeset
   361
          |> apfst split_list o fold_map3 (fn b => fn mx => fn rhs =>
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   362
              Local_Theory.define ((b, mx), ((Thm.def_binding b, []), rhs)) #>> apsnd snd)
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   363
            (case_binder :: ctr_binders) (NoSyn :: ctr_mixfixes) (case_rhs :: ctr_rhss)
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   364
          ||> `Local_Theory.restore;
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   365
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   366
        (*transforms defined frees into consts (and more)*)
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   367
        val phi = Proof_Context.export_morphism lthy lthy';
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   368
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   369
        val ctr_defs = map (Morphism.thm phi) raw_ctr_defs;
49130
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
   370
        val case_def = Morphism.thm phi raw_case_def;
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
   371
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   372
        val ctrs0 = map (Morphism.term phi) raw_ctrs;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   373
        val casex0 = Morphism.term phi raw_case;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   374
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   375
        val ctrs = map (mk_ctr As) ctrs0;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   376
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   377
        fun exhaust_tac {context = ctxt, ...} =
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
   378
          let
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   379
            val fld_iff_unf_thm =
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   380
              let
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   381
                val goal =
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   382
                  fold_rev Logic.all [u, v]
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   383
                    (mk_Trueprop_eq (HOLogic.mk_eq (v, fld $ u), HOLogic.mk_eq (unf $ v, u)));
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   384
              in
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   385
                Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
49201
blanchet
parents: 49200
diff changeset
   386
                  mk_fld_iff_unf_tac ctxt (map (SOME o certifyT lthy) [unfT, fpT])
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   387
                    (certify lthy fld) (certify lthy unf) fld_unf unf_fld)
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   388
                |> Thm.close_derivation
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   389
                |> Morphism.thm phi
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   390
              end;
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   391
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   392
            val sumEN_thm' =
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   393
              Local_Defs.unfold lthy @{thms all_unit_eq}
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   394
                (Drule.instantiate' (map (SOME o certifyT lthy) ctr_prod_Ts) []
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   395
                   (mk_sumEN_balanced n))
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   396
              |> Morphism.thm phi;
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
   397
          in
49161
a8e74375d971 fixed (n + 1)st bug in "mk_exhaust_tac" -- arose with uncurried constructors
blanchet
parents: 49157
diff changeset
   398
            mk_exhaust_tac ctxt n ctr_defs fld_iff_unf_thm sumEN_thm'
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
   399
          end;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   400
49126
1bbd7a37fc29 implemented "mk_inject_tac"
blanchet
parents: 49125
diff changeset
   401
        val inject_tacss =
49205
674f04c737e0 implemented "mk_iter_or_rec_tac"
blanchet
parents: 49204
diff changeset
   402
          map2 (fn 0 => K [] | _ => fn ctr_def => [fn {context = ctxt, ...} =>
674f04c737e0 implemented "mk_iter_or_rec_tac"
blanchet
parents: 49204
diff changeset
   403
              mk_inject_tac ctxt ctr_def fld_inject]) ms ctr_defs;
49126
1bbd7a37fc29 implemented "mk_inject_tac"
blanchet
parents: 49125
diff changeset
   404
49127
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
   405
        val half_distinct_tacss =
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
   406
          map (map (fn (def, def') => fn {context = ctxt, ...} =>
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
   407
            mk_half_distinct_tac ctxt fld_inject [def, def'])) (mk_half_pairss ctr_defs);
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
   408
49130
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
   409
        val case_tacs =
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
   410
          map3 (fn k => fn m => fn ctr_def => fn {context = ctxt, ...} =>
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
   411
            mk_case_tac ctxt n k m case_def ctr_def unf_fld) ks ms ctr_defs;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   412
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   413
        val tacss = [exhaust_tac] :: inject_tacss @ half_distinct_tacss @ [case_tacs];
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   414
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   415
        fun define_iter_rec ((selss0, discIs, sel_thmss), no_defs_lthy) =
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   416
          let
49208
blanchet
parents: 49207
diff changeset
   417
            val fpT_to_C = fpT --> C;
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   418
49215
blanchet
parents: 49214
diff changeset
   419
            fun generate_iter_like (suf, fp_iter_like, (fss, f_Tss, xssss)) =
blanchet
parents: 49214
diff changeset
   420
              let
blanchet
parents: 49214
diff changeset
   421
                val res_T = fold_rev (curry (op --->)) f_Tss fpT_to_C;
blanchet
parents: 49214
diff changeset
   422
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   423
                val binder = Binding.suffix_name ("_" ^ suf) fp_b;
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   424
49215
blanchet
parents: 49214
diff changeset
   425
                val spec =
blanchet
parents: 49214
diff changeset
   426
                  mk_Trueprop_eq (lists_bmoc fss (Free (Binding.name_of binder, res_T)),
blanchet
parents: 49214
diff changeset
   427
                    Term.list_comb (fp_iter_like,
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   428
                      map2 (mk_sum_caseN_balanced oo map2 mk_uncurried2_fun) fss xssss));
49215
blanchet
parents: 49214
diff changeset
   429
              in (binder, spec) end;
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   430
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   431
            val iter_like_infos =
49215
blanchet
parents: 49214
diff changeset
   432
              [(iterN, fp_iter, iter_only),
blanchet
parents: 49214
diff changeset
   433
               (recN, fp_rec, rec_only)];
blanchet
parents: 49214
diff changeset
   434
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   435
            val (binders, specs) = map generate_iter_like iter_like_infos |> split_list;
49215
blanchet
parents: 49214
diff changeset
   436
blanchet
parents: 49214
diff changeset
   437
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
49201
blanchet
parents: 49200
diff changeset
   438
              |> apfst split_list o fold_map2 (fn b => fn spec =>
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   439
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
49215
blanchet
parents: 49214
diff changeset
   440
                #>> apsnd snd) binders specs
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   441
              ||> `Local_Theory.restore;
49201
blanchet
parents: 49200
diff changeset
   442
blanchet
parents: 49200
diff changeset
   443
            (*transforms defined frees into consts (and more)*)
blanchet
parents: 49200
diff changeset
   444
            val phi = Proof_Context.export_morphism lthy lthy';
blanchet
parents: 49200
diff changeset
   445
49215
blanchet
parents: 49214
diff changeset
   446
            val [iter_def, rec_def] = map (Morphism.thm phi) defs;
49201
blanchet
parents: 49200
diff changeset
   447
49215
blanchet
parents: 49214
diff changeset
   448
            val [iter, recx] = map (mk_iter_like As Cs o Morphism.term phi) csts;
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   449
          in
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   450
            ((ctrs, selss0, iter, recx, v, xss, ctr_defs, discIs, sel_thmss, iter_def, rec_def),
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   451
             lthy)
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   452
          end;
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   453
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   454
        fun define_coiter_corec ((selss0, discIs, sel_thmss), no_defs_lthy) =
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   455
          let
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   456
            val B_to_fpT = C --> fpT;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   457
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   458
            fun mk_preds_getterss_join c n cps sum_prod_T cqfss =
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   459
              Term.lambda c (mk_IfN sum_prod_T cps
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   460
                (map2 (mk_InN_balanced sum_prod_T n) (map HOLogic.mk_tuple cqfss) (1 upto n)));
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   461
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   462
            fun generate_coiter_like (suf, fp_iter_like, ((pfss, cqfsss), (f_sum_prod_Ts,
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   463
                pf_Tss))) =
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   464
              let
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   465
                val res_T = fold_rev (curry (op --->)) pf_Tss B_to_fpT;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   466
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   467
                val binder = Binding.suffix_name ("_" ^ suf) fp_b;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   468
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   469
                val spec =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   470
                  mk_Trueprop_eq (lists_bmoc pfss (Free (Binding.name_of binder, res_T)),
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   471
                    Term.list_comb (fp_iter_like,
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   472
                      map5 mk_preds_getterss_join cs ns cpss f_sum_prod_Ts cqfsss));
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   473
              in (binder, spec) end;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   474
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   475
            val coiter_like_infos =
49215
blanchet
parents: 49214
diff changeset
   476
              [(coiterN, fp_iter, coiter_only),
blanchet
parents: 49214
diff changeset
   477
               (corecN, fp_rec, corec_only)];
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   478
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   479
            val (binders, specs) = map generate_coiter_like coiter_like_infos |> split_list;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   480
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   481
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   482
              |> apfst split_list o fold_map2 (fn b => fn spec =>
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   483
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   484
                #>> apsnd snd) binders specs
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   485
              ||> `Local_Theory.restore;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   486
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   487
            (*transforms defined frees into consts (and more)*)
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   488
            val phi = Proof_Context.export_morphism lthy lthy';
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   489
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   490
            val [coiter_def, corec_def] = map (Morphism.thm phi) defs;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   491
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   492
            val [coiter, corec] = map (mk_iter_like As Cs o Morphism.term phi) csts;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   493
          in
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   494
            ((ctrs, selss0, coiter, corec, v, xss, ctr_defs, discIs, sel_thmss, coiter_def,
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   495
              corec_def), lthy)
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   496
          end;
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   497
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   498
        fun wrap lthy =
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   499
          let val sel_defaultss = map (map (apsnd (prepare_term lthy))) raw_sel_defaultss in
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   500
            wrap_datatype tacss (((no_dests, ctrs0), casex0), (disc_binders, (sel_binderss,
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   501
              sel_defaultss))) lthy
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   502
          end;
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   503
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   504
        val define_iter_likes = if lfp then define_iter_rec else define_coiter_corec;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   505
      in
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   506
        ((wrap, define_iter_likes), lthy')
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   507
      end;
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   508
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   509
    val pre_map_defs = map map_def_of_bnf pre_bnfs;
49229
d5717b5e2217 use map_id, not map_id', to allow better composition
blanchet
parents: 49226
diff changeset
   510
    val map_ids = map map_id_of_bnf nested_bnfs;
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   511
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   512
    fun mk_map Ts Us t =
49217
0c9546fc789f fixed handling of map of "fun"
blanchet
parents: 49216
diff changeset
   513
      let val (Type (_, Ts0), Type (_, Us0)) = strip_map_type (fastype_of t) |>> List.last in
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   514
        Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   515
      end;
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   516
49234
blanchet
parents: 49233
diff changeset
   517
    fun build_map build_arg (Type (s, Ts)) (Type (_, Us)) =
blanchet
parents: 49233
diff changeset
   518
      let
49236
632f68beff2a full name of a type as key in bnf table
traytel
parents: 49235
diff changeset
   519
        val map0 = map_of_bnf (the (bnf_of lthy s));
49234
blanchet
parents: 49233
diff changeset
   520
        val mapx = mk_map Ts Us map0;
blanchet
parents: 49233
diff changeset
   521
        val TUs = map dest_funT (fst (split_last (fst (strip_map_type (fastype_of mapx)))));
blanchet
parents: 49233
diff changeset
   522
        val args = map build_arg TUs;
blanchet
parents: 49233
diff changeset
   523
      in Term.list_comb (mapx, args) end;
blanchet
parents: 49233
diff changeset
   524
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   525
    fun derive_iter_rec_thms_for_types ((ctrss, _, iters, recs, vs, xsss, ctr_defss, _, _, iter_defs,
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   526
        rec_defs), lthy) =
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   527
      let
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   528
        val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   529
        val giters = map (lists_bmoc gss) iters;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   530
        val hrecs = map (lists_bmoc hss) recs;
49201
blanchet
parents: 49200
diff changeset
   531
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   532
        val (iter_thmss, rec_thmss) =
49207
4634c217b77b completed iter/rec proofs
blanchet
parents: 49205
diff changeset
   533
          let
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   534
            fun mk_goal_iter_like fss fiter_like xctr f xs fxs =
49207
4634c217b77b completed iter/rec proofs
blanchet
parents: 49205
diff changeset
   535
              fold_rev (fold_rev Logic.all) (xs :: fss)
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   536
                (mk_Trueprop_eq (fiter_like $ xctr, Term.list_comb (f, fxs)));
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   537
49234
blanchet
parents: 49233
diff changeset
   538
            fun build_call fiter_likes maybe_tick (T, U) =
blanchet
parents: 49233
diff changeset
   539
              if T = U then
blanchet
parents: 49233
diff changeset
   540
                mk_id T
blanchet
parents: 49233
diff changeset
   541
              else
blanchet
parents: 49233
diff changeset
   542
                (case find_index (curry (op =) T) fpTs of
blanchet
parents: 49233
diff changeset
   543
                  ~1 => build_map (build_call fiter_likes maybe_tick) T U
blanchet
parents: 49233
diff changeset
   544
                | j => maybe_tick (nth vs j) (nth fiter_likes j));
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   545
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   546
            fun mk_U maybe_mk_prodT =
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   547
              typ_subst (map2 (fn fpT => fn C => (fpT, maybe_mk_prodT fpT C)) fpTs Cs);
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   548
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   549
            fun repair_calls fiter_likes maybe_cons maybe_tick maybe_mk_prodT (x as Free (_, T)) =
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   550
              if member (op =) fpTs T then
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   551
                maybe_cons x [build_call fiter_likes (K I) (T, mk_U (K I) T) $ x]
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   552
              else if exists_subtype (member (op =) fpTs) T then
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   553
                [build_call fiter_likes maybe_tick (T, mk_U maybe_mk_prodT T) $ x]
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   554
              else
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   555
                [x];
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   556
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   557
            val gxsss = map (map (maps (repair_calls giters (K I) (K I) (K I)))) xsss;
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   558
            val hxsss =
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   559
              map (map (maps (repair_calls hrecs cons tick (curry HOLogic.mk_prodT)))) xsss;
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   560
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   561
            val goal_iterss = map5 (map4 o mk_goal_iter_like gss) giters xctrss gss xsss gxsss;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   562
            val goal_recss = map5 (map4 o mk_goal_iter_like hss) hrecs xctrss hss xsss hxsss;
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   563
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   564
            val iter_tacss =
49229
d5717b5e2217 use map_id, not map_id', to allow better composition
blanchet
parents: 49226
diff changeset
   565
              map2 (map o mk_iter_like_tac pre_map_defs map_ids iter_defs) fp_iter_thms ctr_defss;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   566
            val rec_tacss =
49229
d5717b5e2217 use map_id, not map_id', to allow better composition
blanchet
parents: 49226
diff changeset
   567
              map2 (map o mk_iter_like_tac pre_map_defs map_ids rec_defs) fp_rec_thms ctr_defss;
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   568
          in
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   569
            (map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
49205
674f04c737e0 implemented "mk_iter_or_rec_tac"
blanchet
parents: 49204
diff changeset
   570
               goal_iterss iter_tacss,
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   571
             map2 (map2 (fn goal => fn tac => Skip_Proof.prove lthy [] [] goal (tac o #context)))
49205
674f04c737e0 implemented "mk_iter_or_rec_tac"
blanchet
parents: 49204
diff changeset
   572
               goal_recss rec_tacss)
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   573
          end;
49201
blanchet
parents: 49200
diff changeset
   574
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   575
        val notes =
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   576
          [(itersN, iter_thmss, simp_attrs),
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   577
           (recsN, rec_thmss, Code.add_default_eqn_attrib :: simp_attrs)]
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   578
          |> maps (fn (thmN, thmss, attrs) =>
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   579
            map2 (fn b => fn thms =>
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   580
              ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs),
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   581
                [(thms, [])])) fp_bs thmss);
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   582
      in
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   583
        lthy |> Local_Theory.notes notes |> snd
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   584
      end;
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   585
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   586
    fun derive_coiter_corec_thms_for_types ((ctrss, selsss, coiters, corecs, vs, _, ctr_defss,
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   587
        discIss, sel_thmsss, coiter_defs, corec_defs), lthy) =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   588
      let
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   589
        val z = the_single zs;
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   590
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   591
        val gcoiters = map (lists_bmoc pgss) coiters;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   592
        val hcorecs = map (lists_bmoc phss) corecs;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   593
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   594
        val (coiter_thmss, corec_thmss) =
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   595
          let
49232
9ea11f0c53e4 fixed and enabled generation of "coiters" theorems, including the recursive case
blanchet
parents: 49230
diff changeset
   596
            fun mk_goal_cond pos = HOLogic.mk_Trueprop o (not pos ? HOLogic.mk_not);
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   597
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   598
            fun mk_goal_coiter_like pfss c cps fcoiter_like n k ctr m cfs' =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   599
              fold_rev (fold_rev Logic.all) ([c] :: pfss)
49232
9ea11f0c53e4 fixed and enabled generation of "coiters" theorems, including the recursive case
blanchet
parents: 49230
diff changeset
   600
                (Logic.list_implies (seq_conds mk_goal_cond n k cps,
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   601
                   mk_Trueprop_eq (fcoiter_like $ c, Term.list_comb (ctr, take m cfs'))));
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   602
49234
blanchet
parents: 49233
diff changeset
   603
            fun build_call fiter_likes maybe_tack (T, U) =
blanchet
parents: 49233
diff changeset
   604
              if T = U then
blanchet
parents: 49233
diff changeset
   605
                mk_id T
blanchet
parents: 49233
diff changeset
   606
              else
blanchet
parents: 49233
diff changeset
   607
                (case find_index (curry (op =) U) fpTs of
blanchet
parents: 49233
diff changeset
   608
                  ~1 => build_map (build_call fiter_likes maybe_tack) T U
blanchet
parents: 49233
diff changeset
   609
                | j => maybe_tack (nth cs j, nth vs j) (nth fiter_likes j));
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   610
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   611
            fun mk_U maybe_mk_sumT =
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   612
              typ_subst (map2 (fn C => fn fpT => (maybe_mk_sumT fpT C, fpT)) Cs fpTs);
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   613
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   614
            fun repair_calls fiter_likes maybe_mk_sumT maybe_tack cqf =
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   615
              let val T = fastype_of cqf in
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   616
                if exists_subtype (member (op =) Cs) T then
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   617
                  build_call fiter_likes maybe_tack (T, mk_U maybe_mk_sumT T) $ cqf
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   618
                else
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   619
                  cqf
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   620
              end;
49232
9ea11f0c53e4 fixed and enabled generation of "coiters" theorems, including the recursive case
blanchet
parents: 49230
diff changeset
   621
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   622
            val crgsss' = map (map (map (repair_calls gcoiters (K I) (K I)))) crgsss;
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   623
            val cshsss' = map (map (map (repair_calls hcorecs (curry mk_sumT) (tack z)))) cshsss;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   624
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   625
            val goal_coiterss =
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   626
              map8 (map4 oooo mk_goal_coiter_like pgss) cs cpss gcoiters ns kss ctrss mss crgsss';
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   627
            val goal_corecss =
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   628
              map8 (map4 oooo mk_goal_coiter_like phss) cs cpss hcorecs ns kss ctrss mss cshsss';
49213
975ccb0130cb some work on coiter tactic
blanchet
parents: 49212
diff changeset
   629
975ccb0130cb some work on coiter tactic
blanchet
parents: 49212
diff changeset
   630
            val coiter_tacss =
49229
d5717b5e2217 use map_id, not map_id', to allow better composition
blanchet
parents: 49226
diff changeset
   631
              map3 (map oo mk_coiter_like_tac coiter_defs map_ids) fp_iter_thms pre_map_defs
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   632
                ctr_defss;
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   633
            val corec_tacss =
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   634
              map3 (map oo mk_coiter_like_tac corec_defs map_ids) fp_rec_thms pre_map_defs
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   635
                ctr_defss;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   636
          in
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   637
            (map2 (map2 (fn goal => fn tac =>
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   638
                 Skip_Proof.prove lthy [] [] goal (tac o #context) |> Thm.close_derivation))
49213
975ccb0130cb some work on coiter tactic
blanchet
parents: 49212
diff changeset
   639
               goal_coiterss coiter_tacss,
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   640
             map2 (map2 (fn goal => fn tac =>
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   641
                 Skip_Proof.prove lthy [] [] goal (tac o #context)
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   642
                 |> Local_Defs.unfold lthy @{thms sum_case_if} |> Thm.close_derivation))
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   643
               goal_corecss corec_tacss)
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   644
          end;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   645
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   646
        fun mk_disc_coiter_like_thms [_] = K []
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   647
          | mk_disc_coiter_like_thms thms = map2 (curry (op RS)) thms;
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   648
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   649
        val disc_coiter_thmss = map2 mk_disc_coiter_like_thms coiter_thmss discIss;
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   650
        val disc_corec_thmss = map2 mk_disc_coiter_like_thms corec_thmss discIss;
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   651
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   652
        fun mk_sel_coiter_like_thm coiter_like_thm sel0 sel_thm =
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   653
          let
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   654
            val (domT, ranT) = dest_funT (fastype_of sel0);
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   655
            val arg_cong' =
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   656
              Drule.instantiate' (map (SOME o certifyT lthy) [domT, ranT])
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   657
                [NONE, NONE, SOME (certify lthy sel0)] arg_cong
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   658
              |> Thm.varifyT_global;
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   659
            val sel_thm' = sel_thm RSN (2, trans);
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   660
          in
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   661
            coiter_like_thm RS arg_cong' RS sel_thm'
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   662
          end;
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   663
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   664
        val sel_coiter_thmsss =
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   665
          map3 (map3 (map2 o mk_sel_coiter_like_thm)) coiter_thmss selsss sel_thmsss;
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   666
        val sel_corec_thmsss =
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   667
          map3 (map3 (map2 o mk_sel_coiter_like_thm)) corec_thmss selsss sel_thmsss;
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   668
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   669
        val notes =
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   670
          [(coitersN, coiter_thmss, []),
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   671
           (disc_coitersN, disc_coiter_thmss, []),
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   672
           (sel_coitersN, map flat sel_coiter_thmsss, []),
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   673
           (corecsN, corec_thmss, []),
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   674
           (disc_corecsN, disc_corec_thmss, []),
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   675
           (sel_corecsN, map flat sel_corec_thmsss, [])]
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   676
          |> maps (fn (thmN, thmss, attrs) =>
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   677
            map_filter (fn (_, []) => NONE | (b, thms) =>
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   678
              SOME ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs),
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   679
                [(thms, [])])) (fp_bs ~~ thmss));
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   680
      in
49230
0e551c2d5d8b reactivated generation of "coiters" theorems
blanchet
parents: 49229
diff changeset
   681
        lthy |> Local_Theory.notes notes |> snd
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   682
      end;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   683
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   684
    fun wrap_types_and_define_iter_likes ((wraps, define_iter_likess), lthy) =
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   685
      fold_map2 (curry (op o)) define_iter_likess wraps lthy |>> split_list11
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   686
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   687
    val lthy' = lthy
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   688
      |> fold_map define_ctrs_case_for_type (fp_bs ~~ fpTs ~~ Cs ~~ flds ~~ unfs ~~ fp_iters ~~
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   689
        fp_recs ~~ fld_unfs ~~ unf_flds ~~ fld_injects ~~ ns ~~ kss ~~ mss ~~ ctr_binderss ~~
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   690
        ctr_mixfixess ~~ ctr_Tsss ~~ disc_binderss ~~ sel_bindersss ~~ raw_sel_defaultsss)
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   691
      |>> split_list |> wrap_types_and_define_iter_likes
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   692
      |> (if lfp then derive_iter_rec_thms_for_types else derive_coiter_corec_thms_for_types);
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   693
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   694
    val timer = time (timer ("Constructors, discriminators, selectors, etc., for the new " ^
49208
blanchet
parents: 49207
diff changeset
   695
      (if lfp then "" else "co") ^ "datatype"));
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   696
  in
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   697
    (timer; lthy')
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   698
  end;
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   699
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   700
val datatyp = define_datatype (K I) (K I) (K I);
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
   701
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   702
val datatype_cmd = define_datatype Typedecl.read_constraint Syntax.parse_typ Syntax.read_term;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   703
49277
blanchet
parents: 49276
diff changeset
   704
val parse_opt_binding_colon = Scan.optional (Parse.binding --| @{keyword ":"}) no_binder
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   705
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   706
val parse_ctr_arg =
49277
blanchet
parents: 49276
diff changeset
   707
  @{keyword "("} |-- parse_opt_binding_colon -- Parse.typ --| @{keyword ")"} ||
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   708
  (Parse.typ >> pair no_binder);
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   709
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   710
val parse_defaults =
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   711
  @{keyword "("} |-- @{keyword "defaults"} |-- Scan.repeat parse_bound_term --| @{keyword ")"};
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   712
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   713
val parse_single_spec =
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   714
  Parse.type_args_constrained -- Parse.binding -- Parse.opt_mixfix --
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   715
  (@{keyword "="} |-- Parse.enum1 "|" (parse_opt_binding_colon -- Parse.binding --
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   716
    Scan.repeat parse_ctr_arg -- Scan.optional parse_defaults [] -- Parse.opt_mixfix));
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   717
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   718
val parse_datatype = parse_wrap_options -- Parse.and_list1 parse_single_spec;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   719
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   720
val _ =
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   721
  Outer_Syntax.local_theory @{command_spec "data"} "define BNF-based inductive datatypes"
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   722
    (parse_datatype >> datatype_cmd true);
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   723
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   724
val _ =
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   725
  Outer_Syntax.local_theory @{command_spec "codata"} "define BNF-based coinductive datatypes"
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   726
    (parse_datatype >> datatype_cmd false);
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   727
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   728
end;