src/HOL/BNF/Tools/bnf_fp_sugar.ML
author blanchet
Wed, 26 Sep 2012 10:00:59 +0200
changeset 49583 7e856b6c5edc
parent 49540 b1bdbb099f99
child 49585 5c4a12550491
permissions -rw-r--r--
nicer type var names
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49509
163914705f8d renamed top-level theory from "Codatatype" to "BNF"
blanchet
parents: 49505
diff changeset
     1
(*  Title:      HOL/BNF/Tools/bnf_fp_sugar.ML
49112
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
49389
blanchet
parents: 49381
diff changeset
     5
Sugared datatype and codatatype constructions.
49112
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
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    10
  val datatypes: bool ->
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
    11
    (mixfix list -> (string * sort) list option -> binding list -> typ list * typ list list ->
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
    12
      BNF_Def.BNF list -> local_theory ->
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    13
      (term list * term list * term list *term list * term list * thm * thm list * thm list *
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    14
         thm list * thm list * thm list) * local_theory) ->
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
    15
    bool * ((((typ * sort) list * binding) * mixfix) * ((((binding * binding) *
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
    16
      (binding * typ) list) * (binding * term) list) * mixfix) list) list ->
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
    17
    local_theory -> local_theory
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
    18
  val parse_datatype_cmd: bool ->
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
    19
    (mixfix list -> (string * sort) list option -> binding list -> typ list * typ list list ->
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
    20
      BNF_Def.BNF list -> local_theory ->
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    21
      (term list * term list * term list * term list * term list * thm * thm list * thm list *
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    22
         thm list * thm list * thm list) * local_theory) ->
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
    23
    (local_theory -> local_theory) parser
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    24
end;
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    25
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    26
structure BNF_FP_Sugar : BNF_FP_SUGAR =
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    27
struct
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
    28
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    29
open BNF_Util
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    30
open BNF_Wrap
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    31
open BNF_Def
49457
1d2825673cec renamed "bnf_fp_util.ML" to "bnf_fp.ML"
blanchet
parents: 49450
diff changeset
    32
open BNF_FP
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
    33
open BNF_FP_Sugar_Tactics
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
    34
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
    35
val simp_attrs = @{attributes [simp]};
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
    36
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    37
fun split_list9 xs =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    38
  (map #1 xs, map #2 xs, map #3 xs, map #4 xs, map #5 xs, map #6 xs, map #7 xs, map #8 xs,
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    39
   map #9 xs);
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    40
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
    41
fun resort_tfree S (TFree (s, _)) = TFree (s, S);
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
    42
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    43
fun typ_subst inst (T as Type (s, Ts)) =
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    44
    (case AList.lookup (op =) inst T of
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    45
      NONE => Type (s, map (typ_subst inst) Ts)
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    46
    | SOME T' => T')
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
    47
  | 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
    48
49583
7e856b6c5edc nicer type var names
blanchet
parents: 49540
diff changeset
    49
fun variant_types ss Ss ctxt =
7e856b6c5edc nicer type var names
blanchet
parents: 49540
diff changeset
    50
  let
7e856b6c5edc nicer type var names
blanchet
parents: 49540
diff changeset
    51
    val (tfrees, _) =
7e856b6c5edc nicer type var names
blanchet
parents: 49540
diff changeset
    52
      fold_map2 (fn s => fn S => Name.variant s #> apfst (rpair S)) ss Ss (Variable.names_of ctxt);
7e856b6c5edc nicer type var names
blanchet
parents: 49540
diff changeset
    53
    val ctxt' = fold (Variable.declare_constraints o Logic.mk_type o TFree) tfrees ctxt;
7e856b6c5edc nicer type var names
blanchet
parents: 49540
diff changeset
    54
  in (tfrees, ctxt') end;
7e856b6c5edc nicer type var names
blanchet
parents: 49540
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
49200
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49199
diff changeset
    58
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
    59
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
    60
fun mk_uncurried2_fun f xss =
49200
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49199
diff changeset
    61
  mk_tupled_fun (HOLogic.mk_tuple (map HOLogic.mk_tuple xss)) f (flat xss);
73f9aede57a4 correctly curry recursor arguments
blanchet
parents: 49199
diff changeset
    62
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    63
fun mk_ctor_or_dtor get_T Ts t =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    64
  let val Type (_, Ts0) = get_T (fastype_of t) in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    65
    Term.subst_atomic_types (Ts0 ~~ Ts) t
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    66
  end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    67
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    68
val mk_ctor = mk_ctor_or_dtor range_type;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    69
val mk_dtor = mk_ctor_or_dtor domain_type;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    70
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    71
fun mk_rec_like lfp Ts Us t =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    72
  let
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    73
    val (bindings, body) = strip_type (fastype_of t);
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    74
    val (f_Us, prebody) = split_last bindings;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    75
    val Type (_, Ts0) = if lfp then prebody else body;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    76
    val Us0 = distinct (op =) (map (if lfp then body_type else domain_type) f_Us);
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    77
  in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    78
    Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    79
  end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    80
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    81
fun mk_map live Ts Us t =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    82
  let val (Type (_, Ts0), Type (_, Us0)) = strip_typeN (live + 1) (fastype_of t) |>> List.last in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    83
    Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    84
  end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    85
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    86
fun mk_rel Ts Us t =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    87
  let
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    88
    val ((Type (_, Ts0), Type (_, Us0)), body) =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    89
      strip_type (fastype_of t) |>> split_last |>> apfst List.last;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    90
  in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    91
    Term.subst_atomic_types (Ts0 @ Us0 ~~ Ts @ Us) t
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    92
  end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
    93
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
    94
fun tick u f = Term.lambda u (HOLogic.mk_prod (u, f $ u));
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
    95
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
    96
fun tack z_name (c, u) f =
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
    97
  let val z = Free (z_name, mk_sumT (fastype_of u, fastype_of c)) in
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
    98
    Term.lambda z (mk_sum_case (Term.lambda u u, Term.lambda c (f $ c)) $ z)
49273
f839ce127a2e reverted "id" change: The problem is rather that the "%c. f c" argument sometimes gets eta-reduced
blanchet
parents: 49268
diff changeset
    99
  end;
49214
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   100
49124
968e1b7de057 more work on FP sugar
blanchet
parents: 49123
diff changeset
   101
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
   102
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   103
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
   104
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   105
fun merge_type_args (As, As') =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   106
  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
   107
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   108
fun is_triv_implies thm =
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   109
  op aconv (Logic.dest_implies (Thm.prop_of thm))
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   110
  handle TERM _ => false;
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   111
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   112
fun type_args_constrained_of (((cAs, _), _), _) = cAs;
49336
blanchet
parents: 49330
diff changeset
   113
fun type_binding_of (((_, b), _), _) = b;
49181
blanchet
parents: 49180
diff changeset
   114
fun mixfix_of ((_, mx), _) = mx;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   115
fun ctr_specs_of (_, ctr_specs) = ctr_specs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   116
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   117
fun disc_of ((((disc, _), _), _), _) = disc;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   118
fun ctr_of ((((_, ctr), _), _), _) = ctr;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   119
fun args_of (((_, args), _), _) = args;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   120
fun defaults_of ((_, ds), _) = ds;
49181
blanchet
parents: 49180
diff changeset
   121
fun ctr_mixfix_of (_, mx) = mx;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   122
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   123
fun define_datatypes prepare_constraint prepare_typ prepare_term lfp construct (no_dests, specs)
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   124
    no_defs_lthy0 =
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   125
  let
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   126
    (* TODO: sanity checks on arguments *)
49478
blanchet
parents: 49463
diff changeset
   127
    (* TODO: integration with function package ("size") *)
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   128
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   129
    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
   130
      else ();
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   131
49367
blanchet
parents: 49366
diff changeset
   132
    val nn = length specs;
49361
cc1d39529dd1 derive induction via backward proof, to ensure that the premises are in the right order for constructors like "X x y x" where x and y are mutually recursive
blanchet
parents: 49342
diff changeset
   133
    val fp_bs = map type_binding_of specs;
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   134
    val fp_b_names = map Binding.name_of fp_bs;
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   135
    val fp_common_name = mk_common_name fp_b_names;
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   136
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   137
    fun prepare_type_arg (ty, c) =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   138
      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
   139
        TFree (s, prepare_constraint no_defs_lthy0 c)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   140
      end;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   141
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   142
    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
   143
    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
   144
    val unsorted_As = Library.foldr1 merge_type_args unsorted_Ass0;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   145
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   146
    val ((Xs, Cs), no_defs_lthy) =
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   147
      no_defs_lthy0
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   148
      |> fold (Variable.declare_typ o resort_tfree dummyS) unsorted_As
49583
7e856b6c5edc nicer type var names
blanchet
parents: 49540
diff changeset
   149
      |> variant_types (map (prefix "'") fp_b_names) (replicate nn HOLogic.typeS) |>> map TFree
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   150
      ||>> mk_TFrees nn;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   151
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   152
    (* TODO: cleaner handling of fake contexts, without "background_theory" *)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   153
    (*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
   154
      locale and shadows an existing global type*)
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   155
    val fake_thy =
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   156
      Theory.copy #> fold (fn spec => perhaps (try (Sign.add_type no_defs_lthy
49336
blanchet
parents: 49330
diff changeset
   157
        (type_binding_of spec, length (type_args_constrained_of spec), mixfix_of spec)))) specs;
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   158
    val fake_lthy = Proof_Context.background_theory fake_thy no_defs_lthy;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   159
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
   160
    fun mk_fake_T b =
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   161
      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
   162
        unsorted_As);
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   163
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   164
    val fake_Ts = map mk_fake_T fp_bs;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   165
49181
blanchet
parents: 49180
diff changeset
   166
    val mixfixes = map mixfix_of specs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   167
49302
f5bd87aac224 added optional qualifiers for constructors and destructors, similarly to the old package
blanchet
parents: 49300
diff changeset
   168
    val _ = (case duplicates Binding.eq_name fp_bs of [] => ()
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   169
      | b :: _ => error ("Duplicate type name declaration " ^ quote (Binding.name_of b)));
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   170
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   171
    val ctr_specss = map ctr_specs_of specs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   172
49336
blanchet
parents: 49330
diff changeset
   173
    val disc_bindingss = map (map disc_of) ctr_specss;
blanchet
parents: 49330
diff changeset
   174
    val ctr_bindingss =
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   175
      map2 (fn fp_b_name => map (Binding.qualify false fp_b_name o ctr_of)) fp_b_names ctr_specss;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   176
    val ctr_argsss = map (map args_of) ctr_specss;
49181
blanchet
parents: 49180
diff changeset
   177
    val ctr_mixfixess = map (map ctr_mixfix_of) ctr_specss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   178
49336
blanchet
parents: 49330
diff changeset
   179
    val sel_bindingsss = map (map (map fst)) ctr_argsss;
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   180
    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
   181
    val raw_sel_defaultsss = map (map defaults_of) ctr_specss;
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   182
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
   183
    val (As :: _) :: fake_ctr_Tsss =
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   184
      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
   185
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   186
    val _ = (case duplicates (op =) unsorted_As of [] => ()
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   187
      | A :: _ => error ("Duplicate type parameter " ^
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   188
          quote (Syntax.string_of_typ no_defs_lthy A)));
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   189
49183
0cc46e2dee7e careful about constructor types w.r.t. fake context (third step of localization)
blanchet
parents: 49182
diff changeset
   190
    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
   191
    val _ = (case subtract (op =) (map dest_TFree As) rhs_As' of
49165
c6ccaf6df93c check type variables on rhs
blanchet
parents: 49161
diff changeset
   192
        [] => ()
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   193
      | A' :: _ => error ("Extra type variable on right-hand side: " ^
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   194
          quote (Syntax.string_of_typ no_defs_lthy (TFree A'))));
49165
c6ccaf6df93c check type variables on rhs
blanchet
parents: 49161
diff changeset
   195
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   196
    fun eq_fpT (T as Type (s, Us)) (Type (s', Us')) =
49146
e32b1f748854 added a check
blanchet
parents: 49135
diff changeset
   197
        s = s' andalso (Us = Us' orelse error ("Illegal occurrence of recursive type " ^
e32b1f748854 added a check
blanchet
parents: 49135
diff changeset
   198
          quote (Syntax.string_of_typ fake_lthy T)))
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   199
      | eq_fpT _ _ = false;
49146
e32b1f748854 added a check
blanchet
parents: 49135
diff changeset
   200
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   201
    fun freeze_fp (T as Type (s, Us)) =
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   202
        (case find_index (eq_fpT T) fake_Ts of ~1 => Type (s, map freeze_fp Us) | j => nth Xs j)
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   203
      | freeze_fp T = T;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   204
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   205
    val ctr_TsssXs = map (map (map freeze_fp)) fake_ctr_Tsss;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   206
    val ctr_sum_prod_TsXs = map (mk_sumTN_balanced o map HOLogic.mk_tupleT) ctr_TsssXs;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   207
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   208
    val fp_eqs =
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   209
      map dest_TFree Xs ~~ map (Term.typ_subst_atomic (As ~~ unsorted_As)) ctr_sum_prod_TsXs;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   210
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   211
    val (pre_bnfs, ((dtors0, ctors0, rels0, fp_folds0, fp_recs0, fp_induct, dtor_ctors, ctor_dtors,
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   212
           ctor_injects, fp_fold_thms, fp_rec_thms), lthy)) =
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
   213
      fp_bnf construct fp_bs mixfixes (map dest_TFree unsorted_As) fp_eqs no_defs_lthy0;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   214
49363
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   215
    fun add_nesty_bnf_names Us =
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   216
      let
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   217
        fun add (Type (s, Ts)) ss =
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   218
            let val (needs, ss') = fold_map add Ts ss in
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   219
              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
   220
            end
49363
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   221
          | add T ss = (member (op =) Us T, ss);
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   222
      in snd oo add end;
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   223
49363
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   224
    fun nesty_bnfs Us =
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   225
      map_filter (bnf_of lthy) (fold (fold (fold (add_nesty_bnf_names Us))) ctr_TsssXs []);
49363
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   226
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   227
    val nesting_bnfs = nesty_bnfs As;
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   228
    val nested_bnfs = nesty_bnfs Xs;
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   229
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   230
    val timer = time (Timer.startRealTimer ());
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   231
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   232
    val ctors = map (mk_ctor As) ctors0;
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   233
    val dtors = map (mk_dtor As) dtors0;
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   234
    val rels = map (mk_rel As As) rels0; (*FIXME*)
49124
968e1b7de057 more work on FP sugar
blanchet
parents: 49123
diff changeset
   235
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   236
    val fpTs = map (domain_type o fastype_of) dtors;
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   237
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   238
    val exists_fp_subtype = exists_subtype (member (op =) fpTs);
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   239
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   240
    val ctr_Tsss = map (map (map (Term.typ_subst_atomic (Xs ~~ fpTs)))) ctr_TsssXs;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   241
    val ns = map length ctr_Tsss;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   242
    val kss = map (fn n => 1 upto n) ns;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   243
    val mss = map (map length) ctr_Tsss;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   244
    val Css = map2 replicate ns Cs;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   245
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   246
    val fp_folds as fp_fold1 :: _ = map (mk_rec_like lfp As Cs) fp_folds0;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   247
    val fp_recs as fp_rec1 :: _ = map (mk_rec_like lfp As Cs) fp_recs0;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   248
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   249
    val fp_fold_fun_Ts = fst (split_last (binder_types (fastype_of fp_fold1)));
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   250
    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
   251
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   252
    val (((fold_only as (gss, _, _), rec_only as (hss, _, _)),
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   253
          (zs, cs, cpss, unfold_only as ((pgss, crgsss), _), corec_only as ((phss, cshsss), _))),
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   254
         names_lthy) =
49208
blanchet
parents: 49207
diff changeset
   255
      if lfp then
blanchet
parents: 49207
diff changeset
   256
        let
blanchet
parents: 49207
diff changeset
   257
          val y_Tsss =
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   258
            map3 (fn n => fn ms => map2 dest_tupleT ms o dest_sumTN_balanced n o domain_type)
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   259
              ns mss fp_fold_fun_Ts;
49208
blanchet
parents: 49207
diff changeset
   260
          val g_Tss = map2 (map2 (curry (op --->))) y_Tsss Css;
blanchet
parents: 49207
diff changeset
   261
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   262
          val ((gss, ysss), lthy) =
49208
blanchet
parents: 49207
diff changeset
   263
            lthy
blanchet
parents: 49207
diff changeset
   264
            |> mk_Freess "f" g_Tss
blanchet
parents: 49207
diff changeset
   265
            ||>> mk_Freesss "x" y_Tsss;
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   266
          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
   267
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   268
          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
   269
              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
   270
            | dest_rec_prodT T = [T];
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   271
49208
blanchet
parents: 49207
diff changeset
   272
          val z_Tssss =
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   273
            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
   274
              dest_sumTN_balanced n o domain_type) ns mss fp_rec_fun_Ts;
49208
blanchet
parents: 49207
diff changeset
   275
          val h_Tss = map2 (map2 (fold_rev (curry (op --->)))) z_Tssss Css;
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   276
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   277
          val hss = map2 (map2 retype_free) h_Tss gss;
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   278
          val zssss_hd = map2 (map2 (map2 (retype_free o hd))) z_Tssss ysss;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   279
          val (zssss_tl, lthy) =
49208
blanchet
parents: 49207
diff changeset
   280
            lthy
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   281
            |> 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
   282
          val zssss = map2 (map2 (map2 cons)) zssss_hd zssss_tl;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   283
        in
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   284
          ((((gss, g_Tss, yssss), (hss, h_Tss, zssss)),
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   285
            ([], [], [], (([], []), ([], [])), (([], []), ([], [])))), lthy)
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   286
        end
49208
blanchet
parents: 49207
diff changeset
   287
      else
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   288
        let
49221
6d8d5fe9f3a2 fixed bug with one-value types with phantom type arguments
blanchet
parents: 49220
diff changeset
   289
          (*avoid "'a itself" arguments in coiterators and corecursors*)
6d8d5fe9f3a2 fixed bug with one-value types with phantom type arguments
blanchet
parents: 49220
diff changeset
   290
          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
   291
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49458
diff changeset
   292
          val p_Tss = map2 (fn n => replicate (Int.max (0, n - 1)) o mk_pred1T) ns Cs;
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   293
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   294
          fun zip_predss_getterss qss fss = maps (op @) (qss ~~ fss);
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   295
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   296
          fun zip_preds_predsss_gettersss [] [qss] [fss] = zip_predss_getterss qss fss
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   297
            | zip_preds_predsss_gettersss (p :: ps) (qss :: qsss) (fss :: fsss) =
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   298
              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
   299
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   300
          fun mk_types maybe_dest_sumT fun_Ts =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   301
            let
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   302
              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
   303
              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
   304
              val f_Tssss =
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   305
                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
   306
                  Cs mss' f_prod_Tss;
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   307
              val q_Tssss =
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49458
diff changeset
   308
                map (map (map (fn [_] => [] | [_, C] => [mk_pred1T (domain_type C)]))) f_Tssss;
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   309
              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
   310
            in (q_Tssss, f_sum_prod_Ts, f_Tssss, pf_Tss) end;
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   311
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   312
          val (r_Tssss, g_sum_prod_Ts, g_Tssss, pg_Tss) = mk_types single fp_fold_fun_Ts;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   313
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   314
          val ((((Free (z, _), cs), pss), gssss), lthy) =
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   315
            lthy
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   316
            |> yield_singleton (mk_Frees "z") dummyT
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   317
            ||>> mk_Frees "a" Cs
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   318
            ||>> mk_Freess "p" p_Tss
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   319
            ||>> mk_Freessss "g" g_Tssss;
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   320
          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
   321
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   322
          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
   323
              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
   324
            | dest_corec_sumT T = [T];
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   325
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   326
          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
   327
49298
36e551d3af3b support for sort constraints in new (co)data commands
blanchet
parents: 49297
diff changeset
   328
          val hssss_hd = map2 (map2 (map2 (fn T :: _ => fn [g] => retype_free T g))) h_Tssss gssss;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   329
          val ((sssss, hssss_tl), lthy) =
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   330
            lthy
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   331
            |> mk_Freessss "q" s_Tssss
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   332
            ||>> mk_Freessss "h" (map (map (map tl)) h_Tssss);
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   333
          val hssss = map2 (map2 (map2 cons)) hssss_hd hssss_tl;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   334
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   335
          val cpss = map2 (fn c => map (fn p => p $ c)) cs pss;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   336
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   337
          fun mk_preds_getters_join [] [cf] = cf
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   338
            | mk_preds_getters_join [cq] [cf, cf'] =
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   339
              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
   340
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   341
          fun mk_terms qssss fssss =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   342
            let
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   343
              val pfss = map3 zip_preds_predsss_gettersss pss qssss fssss;
49275
ce87d6a901eb split sum types in corecursor definition
blanchet
parents: 49274
diff changeset
   344
              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
   345
              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
   346
              val cqfsss = map2 (map2 (map2 mk_preds_getters_join)) cqssss cfssss;
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   347
            in (pfss, cqfsss) end;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   348
        in
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   349
          (((([], [], []), ([], [], [])),
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   350
            ([z], cs, cpss, (mk_terms rssss gssss, (g_sum_prod_Ts, pg_Tss)),
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   351
             (mk_terms sssss hssss, (h_sum_prod_Ts, ph_Tss)))), lthy)
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   352
        end;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   353
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   354
    fun define_ctrs_case_for_type ((((((((((((((((((fp_b, fpT), C), ctor), dtor), fp_fold), fp_rec),
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   355
          ctor_dtor), dtor_ctor), ctor_inject), n), ks), ms), ctr_bindings), ctr_mixfixes), ctr_Tss),
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   356
        disc_bindings), sel_bindingss), raw_sel_defaultss) no_defs_lthy =
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   357
      let
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   358
        val fp_b_name = Binding.name_of fp_b;
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   359
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   360
        val dtorT = domain_type (fastype_of ctor);
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   361
        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
   362
        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
   363
        val case_Ts = map (fn Ts => Ts ---> C) ctr_Tss;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   364
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   365
        val (((((w, fs), xss), yss), u'), _) =
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   366
          no_defs_lthy
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   367
          |> yield_singleton (mk_Frees "w") dtorT
49176
6d29d2db5f88 construct high-level iterator RHS
blanchet
parents: 49169
diff changeset
   368
          ||>> mk_Frees "f" case_Ts
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   369
          ||>> mk_Freess "x" ctr_Tss
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   370
          ||>> mk_Freess "y" ctr_Tss
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   371
          ||>> yield_singleton Variable.variant_fixes fp_b_name;
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   372
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   373
        val u = Free (u', fpT);
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   374
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   375
        val ctr_rhss =
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   376
          map2 (fn k => fn xs => fold_rev Term.lambda xs (ctor $
49256
df98aeb80a19 avoid type inference + tuning
blanchet
parents: 49255
diff changeset
   377
            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
   378
49336
blanchet
parents: 49330
diff changeset
   379
        val case_binding = Binding.suffix_name ("_" ^ caseN) fp_b;
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   380
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   381
        val case_rhs =
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   382
          fold_rev Term.lambda (fs @ [u])
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   383
            (mk_sum_caseN_balanced (map2 mk_uncurried_fun fs xss) $ (dtor $ u));
49129
b5413cb7d860 define "case" constant
blanchet
parents: 49127
diff changeset
   384
49201
blanchet
parents: 49200
diff changeset
   385
        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
   386
          |> 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
   387
              Local_Theory.define ((b, mx), ((Thm.def_binding b, []), rhs)) #>> apsnd snd)
49336
blanchet
parents: 49330
diff changeset
   388
            (case_binding :: ctr_bindings) (NoSyn :: ctr_mixfixes) (case_rhs :: ctr_rhss)
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   389
          ||> `Local_Theory.restore;
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   390
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   391
        val phi = Proof_Context.export_morphism lthy lthy';
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   392
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   393
        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
   394
        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
   395
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   396
        val ctrs0 = map (Morphism.term phi) raw_ctrs;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   397
        val casex0 = Morphism.term phi raw_case;
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   398
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   399
        val ctrs = map (mk_ctr As) ctrs0;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   400
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   401
        fun exhaust_tac {context = ctxt, ...} =
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
   402
          let
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   403
            val ctor_iff_dtor_thm =
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   404
              let
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   405
                val goal =
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   406
                  fold_rev Logic.all [w, u]
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   407
                    (mk_Trueprop_eq (HOLogic.mk_eq (u, ctor $ w), HOLogic.mk_eq (dtor $ u, w)));
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   408
              in
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   409
                Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   410
                  mk_ctor_iff_dtor_tac ctxt (map (SOME o certifyT lthy) [dtorT, fpT])
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   411
                    (certify lthy ctor) (certify lthy dtor) ctor_dtor dtor_ctor)
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   412
                |> Thm.close_derivation
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   413
                |> Morphism.thm phi
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   414
              end;
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   415
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   416
            val sumEN_thm' =
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   417
              unfold_thms lthy @{thms all_unit_eq}
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   418
                (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
   419
                   (mk_sumEN_balanced n))
49135
de13b454fa31 fixed some type issues in sugar "exhaust_tac"
blanchet
parents: 49134
diff changeset
   420
              |> Morphism.thm phi;
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
   421
          in
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   422
            mk_exhaust_tac ctxt n ctr_defs ctor_iff_dtor_thm sumEN_thm'
49123
263b0e330d8b more work on sugar + simplify Trueprop + eq idiom everywhere
blanchet
parents: 49121
diff changeset
   423
          end;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   424
49126
1bbd7a37fc29 implemented "mk_inject_tac"
blanchet
parents: 49125
diff changeset
   425
        val inject_tacss =
49205
674f04c737e0 implemented "mk_iter_or_rec_tac"
blanchet
parents: 49204
diff changeset
   426
          map2 (fn 0 => K [] | _ => fn ctr_def => [fn {context = ctxt, ...} =>
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   427
              mk_inject_tac ctxt ctr_def ctor_inject]) ms ctr_defs;
49126
1bbd7a37fc29 implemented "mk_inject_tac"
blanchet
parents: 49125
diff changeset
   428
49127
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
   429
        val half_distinct_tacss =
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
   430
          map (map (fn (def, def') => fn {context = ctxt, ...} =>
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   431
            mk_half_distinct_tac ctxt ctor_inject [def, def'])) (mk_half_pairss ctr_defs);
49127
f7326a0d7f19 implemented "mk_half_distinct_tac"
blanchet
parents: 49126
diff changeset
   432
49130
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
   433
        val case_tacs =
3c26e17b2849 implemented "mk_case_tac" -- and got rid of "cheat_tac"
blanchet
parents: 49129
diff changeset
   434
          map3 (fn k => fn m => fn ctr_def => fn {context = ctxt, ...} =>
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   435
            mk_case_tac ctxt n k m case_def ctr_def dtor_ctor) ks ms ctr_defs;
49121
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   436
9e0acaa470ab more work on FP sugar
blanchet
parents: 49119
diff changeset
   437
        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
   438
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   439
        fun define_fold_rec (wrap_res, no_defs_lthy) =
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   440
          let
49208
blanchet
parents: 49207
diff changeset
   441
            val fpT_to_C = fpT --> C;
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   442
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   443
            fun generate_rec_like (suf, fp_rec_like, (fss, f_Tss, xssss)) =
49215
blanchet
parents: 49214
diff changeset
   444
              let
blanchet
parents: 49214
diff changeset
   445
                val res_T = fold_rev (curry (op --->)) f_Tss fpT_to_C;
49336
blanchet
parents: 49330
diff changeset
   446
                val binding = Binding.suffix_name ("_" ^ suf) fp_b;
49215
blanchet
parents: 49214
diff changeset
   447
                val spec =
49336
blanchet
parents: 49330
diff changeset
   448
                  mk_Trueprop_eq (lists_bmoc fss (Free (Binding.name_of binding, res_T)),
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   449
                    Term.list_comb (fp_rec_like,
49255
2ecc533d6697 use balanced sums for constructors (to gracefully handle 100 constructors or more)
blanchet
parents: 49254
diff changeset
   450
                      map2 (mk_sum_caseN_balanced oo map2 mk_uncurried2_fun) fss xssss));
49336
blanchet
parents: 49330
diff changeset
   451
              in (binding, spec) end;
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   452
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   453
            val rec_like_infos =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   454
              [(foldN, fp_fold, fold_only),
49215
blanchet
parents: 49214
diff changeset
   455
               (recN, fp_rec, rec_only)];
blanchet
parents: 49214
diff changeset
   456
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   457
            val (bindings, specs) = map generate_rec_like rec_like_infos |> split_list;
49215
blanchet
parents: 49214
diff changeset
   458
blanchet
parents: 49214
diff changeset
   459
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
49201
blanchet
parents: 49200
diff changeset
   460
              |> apfst split_list o fold_map2 (fn b => fn spec =>
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   461
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
49336
blanchet
parents: 49330
diff changeset
   462
                #>> apsnd snd) bindings specs
49199
7c9a3c67c55d added high-level recursor, not yet curried
blanchet
parents: 49184
diff changeset
   463
              ||> `Local_Theory.restore;
49201
blanchet
parents: 49200
diff changeset
   464
blanchet
parents: 49200
diff changeset
   465
            val phi = Proof_Context.export_morphism lthy lthy';
blanchet
parents: 49200
diff changeset
   466
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   467
            val [fold_def, rec_def] = map (Morphism.thm phi) defs;
49201
blanchet
parents: 49200
diff changeset
   468
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   469
            val [foldx, recx] = map (mk_rec_like lfp As Cs o Morphism.term phi) csts;
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   470
          in
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   471
            ((wrap_res, ctrs, foldx, recx, xss, yss, ctr_defs, fold_def, rec_def), lthy)
49134
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   472
          end;
846264f80f16 optionally provide extra dead variables to the FP constructions
blanchet
parents: 49130
diff changeset
   473
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   474
        fun define_unfold_corec (wrap_res, no_defs_lthy) =
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   475
          let
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   476
            val B_to_fpT = C --> fpT;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   477
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   478
            fun mk_preds_getterss_join c n cps sum_prod_T cqfss =
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   479
              Term.lambda c (mk_IfN sum_prod_T cps
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   480
                (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
   481
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   482
            fun generate_corec_like (suf, fp_rec_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
   483
                pf_Tss))) =
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   484
              let
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   485
                val res_T = fold_rev (curry (op --->)) pf_Tss B_to_fpT;
49336
blanchet
parents: 49330
diff changeset
   486
                val binding = Binding.suffix_name ("_" ^ suf) fp_b;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   487
                val spec =
49336
blanchet
parents: 49330
diff changeset
   488
                  mk_Trueprop_eq (lists_bmoc pfss (Free (Binding.name_of binding, res_T)),
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   489
                    Term.list_comb (fp_rec_like,
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   490
                      map5 mk_preds_getterss_join cs ns cpss f_sum_prod_Ts cqfsss));
49336
blanchet
parents: 49330
diff changeset
   491
              in (binding, spec) end;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   492
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   493
            val corec_like_infos =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   494
              [(unfoldN, fp_fold, unfold_only),
49215
blanchet
parents: 49214
diff changeset
   495
               (corecN, fp_rec, corec_only)];
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   496
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   497
            val (bindings, specs) = map generate_corec_like corec_like_infos |> split_list;
49211
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   498
239a4fa29ddf define corecursors
blanchet
parents: 49210
diff changeset
   499
            val ((csts, defs), (lthy', lthy)) = no_defs_lthy
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   500
              |> apfst split_list o fold_map2 (fn b => fn spec =>
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   501
                Specification.definition (SOME (b, NONE, NoSyn), ((Thm.def_binding b, []), spec))
49336
blanchet
parents: 49330
diff changeset
   502
                #>> apsnd snd) bindings specs
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   503
              ||> `Local_Theory.restore;
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   504
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   505
            val phi = Proof_Context.export_morphism lthy lthy';
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   506
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   507
            val [unfold_def, corec_def] = map (Morphism.thm phi) defs;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   508
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   509
            val [unfold, corec] = map (mk_rec_like lfp As Cs o Morphism.term phi) csts;
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   510
          in
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   511
            ((wrap_res, ctrs, unfold, corec, xss, yss, ctr_defs, unfold_def, corec_def), lthy)
49210
656fb50d33f0 define coiterators
blanchet
parents: 49209
diff changeset
   512
          end;
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   513
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   514
        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
   515
          let val sel_defaultss = map (map (apsnd (prepare_term lthy))) raw_sel_defaultss in
49336
blanchet
parents: 49330
diff changeset
   516
            wrap_datatype tacss (((no_dests, ctrs0), casex0), (disc_bindings, (sel_bindingss,
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   517
              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
   518
          end;
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   519
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   520
        val define_rec_likes = if lfp then define_fold_rec else define_unfold_corec;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   521
      in
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   522
        ((wrap, define_rec_likes), lthy')
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   523
      end;
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   524
49518
b377da40244b renamed LFP low-level rel property to have ctor not dtor in its name
blanchet
parents: 49510
diff changeset
   525
    fun wrap_types_and_define_rec_likes ((wraps, define_rec_likess), lthy) =
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   526
      fold_map2 (curry (op o)) define_rec_likess wraps lthy |>> split_list9
49518
b377da40244b renamed LFP low-level rel property to have ctor not dtor in its name
blanchet
parents: 49510
diff changeset
   527
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   528
    val pre_map_defs = map map_def_of_bnf pre_bnfs;
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   529
    val pre_set_defss = map set_defs_of_bnf pre_bnfs;
49368
df359ce891ac added induct tactic
blanchet
parents: 49367
diff changeset
   530
    val nested_set_natural's = maps set_natural'_of_bnf nested_bnfs;
49363
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   531
    val nesting_map_ids = map map_id_of_bnf nesting_bnfs;
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   532
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   533
    fun build_map build_arg (Type (s, Ts)) (Type (_, Us)) =
49234
blanchet
parents: 49233
diff changeset
   534
      let
49392
e1f325ab9503 tuned code to avoid special case for "fun"
blanchet
parents: 49389
diff changeset
   535
        val bnf = the (bnf_of lthy s);
49393
blanchet
parents: 49392
diff changeset
   536
        val live = live_of_bnf bnf;
blanchet
parents: 49392
diff changeset
   537
        val mapx = mk_map live Ts Us (map_of_bnf bnf);
blanchet
parents: 49392
diff changeset
   538
        val TUs = map dest_funT (fst (strip_typeN live (fastype_of mapx)));
49234
blanchet
parents: 49233
diff changeset
   539
        val args = map build_arg TUs;
blanchet
parents: 49233
diff changeset
   540
      in Term.list_comb (mapx, args) end;
blanchet
parents: 49233
diff changeset
   541
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   542
    val mk_simp_thmss =
49505
a944eefb67e6 fixed bug introduced by fold/unfold renaming
blanchet
parents: 49504
diff changeset
   543
      map3 (fn (_, _, injects, distincts, cases, _, _, _) => fn rec_likes => fn fold_likes =>
a944eefb67e6 fixed bug introduced by fold/unfold renaming
blanchet
parents: 49504
diff changeset
   544
        injects @ distincts @ cases @ rec_likes @ fold_likes);
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   545
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   546
    fun derive_induct_fold_rec_thms_for_types ((wrap_ress, ctrss, folds, recs, xsss, _, ctr_defss,
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   547
        fold_defs, rec_defs), lthy) =
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   548
      let
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   549
        val (((phis, phis'), us'), names_lthy) =
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   550
          lthy
49463
83ac281bcdc2 provide predicator, define relator
blanchet
parents: 49458
diff changeset
   551
          |> mk_Frees' "P" (map mk_pred1T fpTs)
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   552
          ||>> Variable.variant_fixes fp_b_names;
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   553
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   554
        val us = map2 (curry Free) us' fpTs;
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   555
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   556
        fun mk_sets_nested bnf =
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   557
          let
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   558
            val Type (T_name, Us) = T_of_bnf bnf;
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   559
            val lives = lives_of_bnf bnf;
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   560
            val sets = sets_of_bnf bnf;
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   561
            fun mk_set U =
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   562
              (case find_index (curry (op =) U) lives of
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   563
                ~1 => Term.dummy
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   564
              | i => nth sets i);
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   565
          in
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   566
            (T_name, map mk_set Us)
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   567
          end;
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   568
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   569
        val setss_nested = map mk_sets_nested nested_bnfs;
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   570
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   571
        val (induct_thms, induct_thm) =
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   572
          let
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   573
            fun mk_set Ts t =
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   574
              let val Type (_, Ts0) = domain_type (fastype_of t) in
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   575
                Term.subst_atomic_types (Ts0 ~~ Ts) t
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   576
              end;
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   577
49375
993677c1cf2a tuned code before fixing "mk_induct_discharge_prem_prems_tac"
blanchet
parents: 49372
diff changeset
   578
            fun mk_raw_prem_prems names_lthy (x as Free (s, T as Type (T_name, Ts0))) =
49361
cc1d39529dd1 derive induction via backward proof, to ensure that the premises are in the right order for constructors like "X x y x" where x and y are mutually recursive
blanchet
parents: 49342
diff changeset
   579
                (case find_index (curry (op =) T) fpTs of
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   580
                  ~1 =>
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   581
                  (case AList.lookup (op =) setss_nested T_name of
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   582
                    NONE => []
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   583
                  | SOME raw_sets0 =>
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   584
                    let
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   585
                      val (Ts, raw_sets) =
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   586
                        split_list (filter (exists_fp_subtype o fst) (Ts0 ~~ raw_sets0));
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   587
                      val sets = map (mk_set Ts0) raw_sets;
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   588
                      val (ys, names_lthy') = names_lthy |> mk_Frees s Ts;
49375
993677c1cf2a tuned code before fixing "mk_induct_discharge_prem_prems_tac"
blanchet
parents: 49372
diff changeset
   589
                      val xysets = map (pair x) (ys ~~ sets);
993677c1cf2a tuned code before fixing "mk_induct_discharge_prem_prems_tac"
blanchet
parents: 49372
diff changeset
   590
                      val ppremss = map (mk_raw_prem_prems names_lthy') ys;
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   591
                    in
49375
993677c1cf2a tuned code before fixing "mk_induct_discharge_prem_prems_tac"
blanchet
parents: 49372
diff changeset
   592
                      flat (map2 (map o apfst o cons) xysets ppremss)
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   593
                    end)
49376
c6366fd0415a select the right premise in "mk_induct_discharge_prem_prems_tac" instead of relying on backtracking
blanchet
parents: 49375
diff changeset
   594
                | i => [([], (i + 1, x))])
49375
993677c1cf2a tuned code before fixing "mk_induct_discharge_prem_prems_tac"
blanchet
parents: 49372
diff changeset
   595
              | mk_raw_prem_prems _ _ = [];
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   596
49378
19237e465055 fixed issue with bound variables in prem prems + tuning
blanchet
parents: 49377
diff changeset
   597
            fun close_prem_prem xs t =
19237e465055 fixed issue with bound variables in prem prems + tuning
blanchet
parents: 49377
diff changeset
   598
              fold_rev Logic.all (map Free (drop (nn + length xs)
19237e465055 fixed issue with bound variables in prem prems + tuning
blanchet
parents: 49377
diff changeset
   599
                (rev (Term.add_frees t (map dest_Free xs @ phis'))))) t;
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   600
49378
19237e465055 fixed issue with bound variables in prem prems + tuning
blanchet
parents: 49377
diff changeset
   601
            fun mk_prem_prem xs (xysets, (j, x)) =
19237e465055 fixed issue with bound variables in prem prems + tuning
blanchet
parents: 49377
diff changeset
   602
              close_prem_prem xs (Logic.list_implies (map (fn (x', (y, set)) =>
49376
c6366fd0415a select the right premise in "mk_induct_discharge_prem_prems_tac" instead of relying on backtracking
blanchet
parents: 49375
diff changeset
   603
                  HOLogic.mk_Trueprop (HOLogic.mk_mem (y, set $ x'))) xysets,
c6366fd0415a select the right premise in "mk_induct_discharge_prem_prems_tac" instead of relying on backtracking
blanchet
parents: 49375
diff changeset
   604
                HOLogic.mk_Trueprop (nth phis (j - 1) $ x)));
49375
993677c1cf2a tuned code before fixing "mk_induct_discharge_prem_prems_tac"
blanchet
parents: 49372
diff changeset
   605
49372
c62165188971 polished the induction
blanchet
parents: 49371
diff changeset
   606
            fun mk_raw_prem phi ctr ctr_Ts =
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   607
              let
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   608
                val (xs, names_lthy') = names_lthy |> mk_Frees "x" ctr_Ts;
49376
c6366fd0415a select the right premise in "mk_induct_discharge_prem_prems_tac" instead of relying on backtracking
blanchet
parents: 49375
diff changeset
   609
                val pprems = maps (mk_raw_prem_prems names_lthy') xs;
49378
19237e465055 fixed issue with bound variables in prem prems + tuning
blanchet
parents: 49377
diff changeset
   610
              in (xs, pprems, HOLogic.mk_Trueprop (phi $ Term.list_comb (ctr, xs))) end;
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   611
49376
c6366fd0415a select the right premise in "mk_induct_discharge_prem_prems_tac" instead of relying on backtracking
blanchet
parents: 49375
diff changeset
   612
            fun mk_prem (xs, raw_pprems, concl) =
49378
19237e465055 fixed issue with bound variables in prem prems + tuning
blanchet
parents: 49377
diff changeset
   613
              fold_rev Logic.all xs (Logic.list_implies (map (mk_prem_prem xs) raw_pprems, concl));
49368
df359ce891ac added induct tactic
blanchet
parents: 49367
diff changeset
   614
49389
blanchet
parents: 49381
diff changeset
   615
            val raw_premss = map3 (map2 o mk_raw_prem) phis ctrss ctr_Tsss;
blanchet
parents: 49381
diff changeset
   616
49361
cc1d39529dd1 derive induction via backward proof, to ensure that the premises are in the right order for constructors like "X x y x" where x and y are mutually recursive
blanchet
parents: 49342
diff changeset
   617
            val goal =
49372
c62165188971 polished the induction
blanchet
parents: 49371
diff changeset
   618
              Library.foldr (Logic.list_implies o apfst (map mk_prem)) (raw_premss,
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   619
                HOLogic.mk_Trueprop (Library.foldr1 HOLogic.mk_conj (map2 (curry (op $)) phis us)));
49368
df359ce891ac added induct tactic
blanchet
parents: 49367
diff changeset
   620
49429
64ac3471005a cleaner way of dealing with the set functions of sums and products
blanchet
parents: 49427
diff changeset
   621
            val kksss = map (map (map (fst o snd) o #2)) raw_premss;
49368
df359ce891ac added induct tactic
blanchet
parents: 49367
diff changeset
   622
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   623
            val ctor_induct' = fp_induct OF (map mk_sumEN_tupled_balanced mss);
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   624
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   625
            val induct_thm =
49361
cc1d39529dd1 derive induction via backward proof, to ensure that the premises are in the right order for constructors like "X x y x" where x and y are mutually recursive
blanchet
parents: 49342
diff changeset
   626
              Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   627
                mk_induct_tac ctxt ns mss kksss (flat ctr_defss) ctor_induct'
49389
blanchet
parents: 49381
diff changeset
   628
                  nested_set_natural's pre_set_defss)
49368
df359ce891ac added induct tactic
blanchet
parents: 49367
diff changeset
   629
              |> singleton (Proof_Context.export names_lthy lthy)
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   630
          in
49367
blanchet
parents: 49366
diff changeset
   631
            `(conj_dests nn) induct_thm
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   632
          end;
49201
blanchet
parents: 49200
diff changeset
   633
49438
5bc80d96241e group "simps" together
blanchet
parents: 49437
diff changeset
   634
        (* TODO: Generate nicer names in case of clashes *)
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   635
        val induct_cases = Datatype_Prop.indexify_names (maps (map base_name_of_ctr) ctrss);
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   636
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   637
        val (fold_thmss, rec_thmss) =
49207
4634c217b77b completed iter/rec proofs
blanchet
parents: 49205
diff changeset
   638
          let
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   639
            val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss;
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   640
            val gfolds = map (lists_bmoc gss) folds;
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   641
            val hrecs = map (lists_bmoc hss) recs;
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   642
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   643
            fun mk_goal fss frec_like xctr f xs fxs =
49207
4634c217b77b completed iter/rec proofs
blanchet
parents: 49205
diff changeset
   644
              fold_rev (fold_rev Logic.all) (xs :: fss)
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   645
                (mk_Trueprop_eq (frec_like $ xctr, Term.list_comb (f, fxs)));
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   646
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   647
            fun build_call frec_likes maybe_tick (T, U) =
49234
blanchet
parents: 49233
diff changeset
   648
              if T = U then
49368
df359ce891ac added induct tactic
blanchet
parents: 49367
diff changeset
   649
                id_const T
49234
blanchet
parents: 49233
diff changeset
   650
              else
blanchet
parents: 49233
diff changeset
   651
                (case find_index (curry (op =) T) fpTs of
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   652
                  ~1 => build_map (build_call frec_likes maybe_tick) T U
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   653
                | j => maybe_tick (nth us j) (nth frec_likes j));
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   654
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   655
            fun mk_U maybe_mk_prodT =
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   656
              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
   657
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   658
            fun intr_calls frec_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
   659
              if member (op =) fpTs T then
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   660
                maybe_cons x [build_call frec_likes (K I) (T, mk_U (K I) T) $ x]
49362
1271aca16aed make tactic more robust in the case where "asm_simp_tac" already finishes the job
blanchet
parents: 49361
diff changeset
   661
              else if exists_fp_subtype T then
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   662
                [build_call frec_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
   663
              else
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   664
                [x];
2a3cb4c71b87 construct the right iterator theorem in the recursive case
blanchet
parents: 49213
diff changeset
   665
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   666
            val gxsss = map (map (maps (intr_calls gfolds (K I) (K I) (K I)))) xsss;
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   667
            val hxsss = map (map (maps (intr_calls hrecs cons tick (curry HOLogic.mk_prodT)))) xsss;
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   668
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   669
            val fold_goalss = map5 (map4 o mk_goal gss) gfolds xctrss gss xsss gxsss;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   670
            val rec_goalss = map5 (map4 o mk_goal hss) hrecs xctrss hss xsss hxsss;
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   671
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   672
            val fold_tacss =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   673
              map2 (map o mk_rec_like_tac pre_map_defs nesting_map_ids fold_defs) fp_fold_thms
49363
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   674
                ctr_defss;
49203
262ab1ac38b9 repaired constant types
blanchet
parents: 49202
diff changeset
   675
            val rec_tacss =
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   676
              map2 (map o mk_rec_like_tac pre_map_defs nesting_map_ids rec_defs) fp_rec_thms
49363
8fc53d925629 distinguish between nested and nesting BNFs
blanchet
parents: 49362
diff changeset
   677
                ctr_defss;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   678
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   679
            fun prove goal tac = Skip_Proof.prove lthy [] [] goal (tac o #context);
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   680
          in
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   681
            (map2 (map2 prove) fold_goalss fold_tacss,
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   682
             map2 (map2 prove) rec_goalss rec_tacss)
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   683
          end;
49201
blanchet
parents: 49200
diff changeset
   684
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   685
        val simp_thmss = mk_simp_thmss wrap_ress rec_thmss fold_thmss;
49438
5bc80d96241e group "simps" together
blanchet
parents: 49437
diff changeset
   686
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   687
        val induct_case_names_attr = Attrib.internal (K (Rule_Cases.case_names induct_cases));
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   688
        fun induct_type_attr T_name = Attrib.internal (K (Induct.induct_type T_name));
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   689
49450
24029cbec12a tuned ID/DEADID setup
blanchet
parents: 49438
diff changeset
   690
        (* TODO: Also note "recs", "simps", and "splits" if "nn > 1" (for compatibility with the
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   691
           old package)? And for codatatypes as well? *)
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   692
        val common_notes =
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   693
          (if nn > 1 then [(inductN, [induct_thm], [induct_case_names_attr])] else [])
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   694
          |> map (fn (thmN, thms, attrs) =>
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   695
            ((Binding.qualify true fp_common_name (Binding.name thmN), attrs), [(thms, [])]));
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   696
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   697
        val notes =
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   698
          [(inductN, map single induct_thms,
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   699
            fn T_name => [induct_case_names_attr, induct_type_attr T_name]),
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   700
           (foldsN, fold_thmss, K (Code.add_default_eqn_attrib :: simp_attrs)),
49438
5bc80d96241e group "simps" together
blanchet
parents: 49437
diff changeset
   701
           (recsN, rec_thmss, K (Code.add_default_eqn_attrib :: simp_attrs)),
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   702
           (simpsN, simp_thmss, K [])] (* TODO: Add relator simps *)
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   703
          |> maps (fn (thmN, thmss, attrs) =>
49437
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   704
            map3 (fn b => fn Type (T_name, _) => fn thms =>
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   705
              ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs T_name),
c139da00fb4a register induct attributes
blanchet
parents: 49434
diff changeset
   706
                [(thms, [])])) fp_bs fpTs thmss);
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   707
      in
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   708
        lthy |> Local_Theory.notes (common_notes @ notes) |> snd
49202
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   709
      end;
f493cd25737f some work towards iterator and recursor properties
blanchet
parents: 49201
diff changeset
   710
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   711
    fun derive_coinduct_unfold_corec_thms_for_types ((wrap_ress, ctrss, unfolds, corecs, _, _,
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   712
        ctr_defss, unfold_defs, corec_defs), lthy) =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   713
      let
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   714
        val discss = map (map (mk_disc_or_sel As) o #1) wrap_ress;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   715
        val selsss = map #2 wrap_ress;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   716
        val disc_thmsss = map #6 wrap_ress;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   717
        val discIss = map #7 wrap_ress;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   718
        val sel_thmsss = map #8 wrap_ress;
49438
5bc80d96241e group "simps" together
blanchet
parents: 49437
diff changeset
   719
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   720
        val (us', _) =
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   721
          lthy
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   722
          |> Variable.variant_fixes fp_b_names;
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   723
49498
acc583e14167 tuned variable names
blanchet
parents: 49484
diff changeset
   724
        val us = map2 (curry Free) us' fpTs;
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   725
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   726
        val (coinduct_thms, coinduct_thm) =
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   727
          let
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   728
            val coinduct_thm = fp_induct;
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   729
          in
49367
blanchet
parents: 49366
diff changeset
   730
            `(conj_dests nn) coinduct_thm
49337
538687a77075 set up things for (co)induction sugar
blanchet
parents: 49336
diff changeset
   731
          end;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   732
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   733
        fun mk_maybe_not pos = not pos ? HOLogic.mk_not;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   734
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   735
        val z = the_single zs;
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   736
        val gunfolds = map (lists_bmoc pgss) unfolds;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   737
        val hcorecs = map (lists_bmoc phss) corecs;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   738
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   739
        val (unfold_thmss, corec_thmss, safe_unfold_thmss, safe_corec_thmss) =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   740
          let
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   741
            fun mk_goal pfss c cps fcorec_like n k ctr m cfs' =
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   742
              fold_rev (fold_rev Logic.all) ([c] :: pfss)
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   743
                (Logic.list_implies (seq_conds (HOLogic.mk_Trueprop oo mk_maybe_not) n k cps,
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   744
                   mk_Trueprop_eq (fcorec_like $ c, Term.list_comb (ctr, take m cfs'))));
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   745
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   746
            fun build_call frec_likes maybe_tack (T, U) =
49234
blanchet
parents: 49233
diff changeset
   747
              if T = U then
49368
df359ce891ac added induct tactic
blanchet
parents: 49367
diff changeset
   748
                id_const T
49234
blanchet
parents: 49233
diff changeset
   749
              else
blanchet
parents: 49233
diff changeset
   750
                (case find_index (curry (op =) U) fpTs of
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   751
                  ~1 => build_map (build_call frec_likes maybe_tack) T U
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   752
                | j => maybe_tack (nth cs j, nth us j) (nth frec_likes j));
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   753
49274
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   754
            fun mk_U maybe_mk_sumT =
ddd606ec45b9 first step towards splitting corecursor function arguments into (p, g, h) triples
blanchet
parents: 49273
diff changeset
   755
              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
   756
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   757
            fun intr_calls frec_likes maybe_mk_sumT maybe_tack cqf =
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   758
              let val T = fastype_of cqf in
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   759
                if exists_subtype (member (op =) Cs) T then
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   760
                  build_call frec_likes maybe_tack (T, mk_U maybe_mk_sumT T) $ cqf
49276
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   761
                else
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   762
                  cqf
59fa53ed7507 finished splitting sum types for corecursors
blanchet
parents: 49275
diff changeset
   763
              end;
49232
9ea11f0c53e4 fixed and enabled generation of "coiters" theorems, including the recursive case
blanchet
parents: 49230
diff changeset
   764
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   765
            val crgsss' = map (map (map (intr_calls gunfolds (K I) (K I)))) crgsss;
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   766
            val cshsss' = map (map (map (intr_calls hcorecs (curry mk_sumT) (tack z)))) cshsss;
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   767
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   768
            val unfold_goalss =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   769
              map8 (map4 oooo mk_goal pgss) cs cpss gunfolds ns kss ctrss mss crgsss';
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   770
            val corec_goalss =
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   771
              map8 (map4 oooo mk_goal phss) cs cpss hcorecs ns kss ctrss mss cshsss';
49213
975ccb0130cb some work on coiter tactic
blanchet
parents: 49212
diff changeset
   772
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   773
            val unfold_tacss =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   774
              map3 (map oo mk_corec_like_tac unfold_defs nesting_map_ids) fp_fold_thms pre_map_defs
49226
510c6d4a73ec fixed and enabled iterator/recursor theorems
blanchet
parents: 49224
diff changeset
   775
                ctr_defss;
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   776
            val corec_tacss =
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   777
              map3 (map oo mk_corec_like_tac corec_defs nesting_map_ids) fp_rec_thms pre_map_defs
49233
7f412734fbb3 fixed and reenabled "corecs" theorems
blanchet
parents: 49232
diff changeset
   778
                ctr_defss;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   779
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   780
            fun prove goal tac =
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   781
              Skip_Proof.prove lthy [] [] goal (tac o #context) |> Thm.close_derivation;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   782
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   783
            val unfold_thmss = map2 (map2 prove) unfold_goalss unfold_tacss;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   784
            val corec_thmss =
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   785
              map2 (map2 prove) corec_goalss corec_tacss
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   786
              |> map (map (unfold_thms lthy @{thms sum_case_if}));
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   787
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   788
            val unfold_safesss = map2 (map2 (map2 (curry (op =)))) crgsss' crgsss;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   789
            val corec_safesss = map2 (map2 (map2 (curry (op =)))) cshsss' cshsss;
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   790
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   791
            val filter_safesss =
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   792
              map2 (map_filter (fn (safes, thm) => if forall I safes then SOME thm else NONE) oo
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   793
                curry (op ~~));
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   794
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   795
            val safe_unfold_thmss = filter_safesss unfold_safesss unfold_thmss;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   796
            val safe_corec_thmss = filter_safesss corec_safesss corec_thmss;
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   797
          in
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   798
            (unfold_thmss, corec_thmss, safe_unfold_thmss, safe_corec_thmss)
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   799
          end;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   800
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   801
        val (disc_unfold_iff_thmss, disc_corec_iff_thmss) =
49482
e6d6869eed08 generate coiter_iff and corec_iff theorems
blanchet
parents: 49479
diff changeset
   802
          let
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   803
            fun mk_goal c cps fcorec_like n k disc =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   804
              mk_Trueprop_eq (disc $ (fcorec_like $ c),
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   805
                if n = 1 then @{const True}
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   806
                else Library.foldr1 HOLogic.mk_conj (seq_conds mk_maybe_not n k cps));
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   807
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   808
            val unfold_goalss = map6 (map2 oooo mk_goal) cs cpss gunfolds ns kss discss;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   809
            val corec_goalss = map6 (map2 oooo mk_goal) cs cpss hcorecs ns kss discss;
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   810
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   811
            fun mk_case_split' cp =
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   812
              Drule.instantiate' [] [SOME (certify lthy cp)] @{thm case_split};
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   813
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   814
            val case_splitss' = map (map mk_case_split') cpss;
49482
e6d6869eed08 generate coiter_iff and corec_iff theorems
blanchet
parents: 49479
diff changeset
   815
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   816
            val unfold_tacss =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   817
              map3 (map oo mk_disc_corec_like_iff_tac) case_splitss' unfold_thmss disc_thmsss;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   818
            val corec_tacss =
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   819
              map3 (map oo mk_disc_corec_like_iff_tac) case_splitss' corec_thmss disc_thmsss;
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   820
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   821
            fun prove goal tac =
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   822
              Skip_Proof.prove lthy [] [] goal (tac o #context)
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   823
              |> Thm.close_derivation
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   824
              |> singleton (Proof_Context.export names_lthy no_defs_lthy);
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   825
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   826
            fun proves [_] [_] = []
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   827
              | proves goals tacs = map2 prove goals tacs;
49482
e6d6869eed08 generate coiter_iff and corec_iff theorems
blanchet
parents: 49479
diff changeset
   828
          in
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   829
            (map2 proves unfold_goalss unfold_tacss,
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   830
             map2 proves corec_goalss corec_tacss)
49482
e6d6869eed08 generate coiter_iff and corec_iff theorems
blanchet
parents: 49479
diff changeset
   831
          end;
e6d6869eed08 generate coiter_iff and corec_iff theorems
blanchet
parents: 49479
diff changeset
   832
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   833
        fun mk_disc_corec_like_thms corec_likes discIs =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   834
          map (op RS) (filter_out (is_triv_implies o snd) (corec_likes ~~ discIs));
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   835
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   836
        val disc_unfold_thmss = map2 mk_disc_corec_like_thms unfold_thmss discIss;
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   837
        val disc_corec_thmss = map2 mk_disc_corec_like_thms corec_thmss discIss;
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   838
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   839
        fun mk_sel_corec_like_thm corec_like_thm sel sel_thm =
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   840
          let
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   841
            val (domT, ranT) = dest_funT (fastype_of sel);
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   842
            val arg_cong' =
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   843
              Drule.instantiate' (map (SOME o certifyT lthy) [domT, ranT])
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   844
                [NONE, NONE, SOME (certify lthy sel)] arg_cong
49267
c96a07255e10 correctly generate sel_coiter and sel_corec theorems
blanchet
parents: 49266
diff changeset
   845
              |> Thm.varifyT_global;
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   846
            val sel_thm' = sel_thm RSN (2, trans);
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   847
          in
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   848
            corec_like_thm RS arg_cong' RS sel_thm'
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   849
          end;
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   850
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   851
        fun mk_sel_corec_like_thms corec_likess =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   852
          map3 (map3 (map2 o mk_sel_corec_like_thm)) corec_likess selsss sel_thmsss |> map flat;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   853
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   854
        val sel_unfold_thmss = mk_sel_corec_like_thms unfold_thmss;
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   855
        val sel_corec_thmss = mk_sel_corec_like_thms corec_thmss;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   856
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   857
        fun zip_corec_like_thms corec_likes disc_corec_likes sel_corec_likes =
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   858
          corec_likes @ disc_corec_likes @ sel_corec_likes;
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   859
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   860
        val simp_thmss =
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   861
          mk_simp_thmss wrap_ress
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   862
            (map3 zip_corec_like_thms safe_corec_thmss disc_corec_thmss sel_corec_thmss)
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   863
            (map3 zip_corec_like_thms safe_unfold_thmss disc_unfold_thmss sel_unfold_thmss);
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   864
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   865
        val anonymous_notes =
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   866
          [(flat safe_unfold_thmss @ flat safe_corec_thmss, simp_attrs)]
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   867
          |> map (fn (thms, attrs) => ((Binding.empty, attrs), [(thms, [])]));
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   868
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   869
        val common_notes =
49367
blanchet
parents: 49366
diff changeset
   870
          (if nn > 1 then [(coinductN, [coinduct_thm], [])] (* FIXME: attribs *) else [])
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   871
          |> map (fn (thmN, thms, attrs) =>
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   872
            ((Binding.qualify true fp_common_name (Binding.name thmN), attrs), [(thms, [])]));
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   873
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   874
        val notes =
49342
8ea4bad49ed5 rough and ready induction
blanchet
parents: 49338
diff changeset
   875
          [(coinductN, map single coinduct_thms, []), (* FIXME: attribs *)
49482
e6d6869eed08 generate coiter_iff and corec_iff theorems
blanchet
parents: 49479
diff changeset
   876
           (corecsN, corec_thmss, []),
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   877
           (disc_unfold_iffN, disc_unfold_iff_thmss, simp_attrs),
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   878
           (disc_unfoldsN, disc_unfold_thmss, simp_attrs),
49484
0194a18f80cf finished "disc_coiter_iff" etc. generation
blanchet
parents: 49482
diff changeset
   879
           (disc_corec_iffN, disc_corec_iff_thmss, simp_attrs),
49482
e6d6869eed08 generate coiter_iff and corec_iff theorems
blanchet
parents: 49479
diff changeset
   880
           (disc_corecsN, disc_corec_thmss, simp_attrs),
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   881
           (sel_unfoldsN, sel_unfold_thmss, simp_attrs),
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   882
           (sel_corecsN, sel_corec_thmss, simp_attrs),
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   883
           (simpsN, simp_thmss, []), (* TODO: Add relator simps *)
49518
b377da40244b renamed LFP low-level rel property to have ctor not dtor in its name
blanchet
parents: 49510
diff changeset
   884
           (unfoldsN, unfold_thmss, [])]
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   885
          |> maps (fn (thmN, thmss, attrs) =>
49266
70ffce5b65a4 generate "sel_coiters" and friends
blanchet
parents: 49264
diff changeset
   886
            map_filter (fn (_, []) => NONE | (b, thms) =>
49300
c707df2e2083 added attributes to theorems
blanchet
parents: 49298
diff changeset
   887
              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
   888
                [(thms, [])])) (fp_bs ~~ thmss));
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   889
      in
49479
504f0a38f608 added "simp"s to coiter/corec theorems + export under "simps" name
blanchet
parents: 49478
diff changeset
   890
        lthy |> Local_Theory.notes (anonymous_notes @ common_notes @ notes) |> snd
49212
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   891
      end;
ca59649170b0 more sugar on codatatypes
blanchet
parents: 49211
diff changeset
   892
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   893
    fun derive_rel_thms_for_types ((wrap_ress, ctrss, unfolds, corecs, xsss, ysss, ctr_defss,
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   894
        unfold_defs, corec_defs), lthy) =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   895
      let
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   896
        val selsss = map #2 wrap_ress;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   897
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   898
        val theta_Ts =  [] (*###*)
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   899
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   900
        val (thetas, _) =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   901
          lthy
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   902
          |> mk_Frees "Q" (map mk_pred1T theta_Ts);
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   903
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   904
        val (rel_thmss, rel_thmsss) =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   905
          let
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   906
            val xctrss = map2 (map2 (curry Term.list_comb)) ctrss xsss;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   907
            val yctrss = map2 (map2 (curry Term.list_comb)) ctrss ysss;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   908
            val threls = map (fold_rev rapp thetas) rels;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   909
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   910
            fun mk_goal threl (xctr, xs) (yctr, ys) =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   911
              let
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   912
                val lhs = threl $ xctr $ yctr;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   913
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   914
                (* ### fixme: lift rel *)
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   915
                fun mk_conjunct x y = HOLogic.mk_eq (x, y);
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   916
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   917
                fun mk_rhs () =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   918
                  Library.foldr1 HOLogic.mk_conj (map2 mk_conjunct xs ys);
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   919
              in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   920
                HOLogic.mk_Trueprop
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   921
                  (if Term.head_of xctr = Term.head_of yctr then
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   922
                     if null xs then
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   923
                       lhs
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   924
                     else
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   925
                       HOLogic.mk_eq (lhs, mk_rhs ())
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   926
                   else
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   927
                     HOLogic.mk_not lhs)
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   928
              end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   929
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   930
(*###*)
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   931
          (* TODO: Prove and exploit symmetry of relators to halve the number of goals. *)
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   932
          fun mk_goals threl xctrs xss yctrs yss =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   933
            map_product (mk_goal threl) (xctrs ~~ xss) (yctrs ~~ yss);
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   934
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   935
          val goalsss = map5 mk_goals threls xctrss xsss yctrss ysss;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   936
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   937
(*###
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   938
            val goalsss = map6 (fn threl =>
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   939
              map5 (fn xctr => fn xs => fn sels =>
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   940
                map2 (mk_goal threl xctr xs sels))) threls xctrss xsss selsss yctrss ysss;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   941
*)
49540
b1bdbb099f99 took out accidentally submitted "tracing" calls
blanchet
parents: 49536
diff changeset
   942
(* val _ = tracing ("goalsss: " ^ PolyML.makestring goalsss) (*###*) *)
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   943
          in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   944
            ([], [])
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   945
          end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   946
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   947
        val (sel_rel_thmss, sel_rel_thmsss) =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   948
          let
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   949
          in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   950
            ([], [])
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   951
          end;
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   952
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   953
        val notes =
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   954
          [(* (relsN, rel_thmss, []),
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   955
           (sel_relsN, sel_rel_thmss, []) *)]
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   956
          |> maps (fn (thmN, thmss, attrs) =>
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   957
            map2 (fn b => fn thms =>
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   958
                ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), attrs),
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   959
              [(thms, [])])) fp_bs thmss);
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   960
      in
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   961
        lthy |> Local_Theory.notes notes |> snd
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   962
      end;
49287
ebe2a5cec4bf allow defaults for one datatype to involve the constructor of another one in the mutually recursive case
blanchet
parents: 49286
diff changeset
   963
49204
0b735fb2602e generate iter/rec goals
blanchet
parents: 49203
diff changeset
   964
    val lthy' = lthy
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   965
      |> fold_map define_ctrs_case_for_type (fp_bs ~~ fpTs ~~ Cs ~~ ctors ~~ dtors ~~ fp_folds ~~
49501
acc9635a644a renamed "fld"/"unf" to "ctor"/"dtor"
blanchet
parents: 49498
diff changeset
   966
        fp_recs ~~ ctor_dtors ~~ dtor_ctors ~~ ctor_injects ~~ ns ~~ kss ~~ mss ~~ ctr_bindingss ~~
49370
be6e749fd003 fixed variable exporting problem
blanchet
parents: 49368
diff changeset
   967
        ctr_mixfixess ~~ ctr_Tsss ~~ disc_bindingss ~~ sel_bindingsss ~~ raw_sel_defaultsss)
49504
df9b897fb254 renamed "iter"/"coiter" to "fold"/"unfold" (cf. Wadler)
blanchet
parents: 49502
diff changeset
   968
      |>> split_list |> wrap_types_and_define_rec_likes
49518
b377da40244b renamed LFP low-level rel property to have ctor not dtor in its name
blanchet
parents: 49510
diff changeset
   969
      |> `(if lfp then derive_induct_fold_rec_thms_for_types
b377da40244b renamed LFP low-level rel property to have ctor not dtor in its name
blanchet
parents: 49510
diff changeset
   970
           else derive_coinduct_unfold_corec_thms_for_types)
b377da40244b renamed LFP low-level rel property to have ctor not dtor in its name
blanchet
parents: 49510
diff changeset
   971
      |> swap |>> fst
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   972
      |> (if null rels then snd else derive_rel_thms_for_types);
49167
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   973
68623861e0f2 print timing information
blanchet
parents: 49165
diff changeset
   974
    val timer = time (timer ("Constructors, discriminators, selectors, etc., for the new " ^
49208
blanchet
parents: 49207
diff changeset
   975
      (if lfp then "" else "co") ^ "datatype"));
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   976
  in
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
   977
    timer; lthy'
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   978
  end;
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   979
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   980
val datatypes = define_datatypes (K I) (K I) (K I);
49297
47fbf2e3e89c provide a programmatic interface for FP sugar
blanchet
parents: 49287
diff changeset
   981
49536
898aea2e7a94 started work on generation of "rel" theorems
blanchet
parents: 49518
diff changeset
   982
val datatype_cmd = define_datatypes Typedecl.read_constraint Syntax.parse_typ Syntax.read_term;
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   983
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   984
val parse_ctr_arg =
49329
82452dc63ed5 desambiguate grammar (e.g. for Nil's mixfix ("[]"))
blanchet
parents: 49311
diff changeset
   985
  @{keyword "("} |-- parse_binding_colon -- Parse.typ --| @{keyword ")"} ||
49434
433dc7e028c8 separated registration of BNFs from bnf_def (BNFs are now stored only for bnf_def and (co)data commands)
traytel
parents: 49429
diff changeset
   986
  (Parse.typ >> pair Binding.empty);
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   987
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   988
val parse_defaults =
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   989
  @{keyword "("} |-- @{keyword "defaults"} |-- Scan.repeat parse_bound_term --| @{keyword ")"};
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   990
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   991
val parse_single_spec =
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   992
  Parse.type_args_constrained -- Parse.binding -- Parse.opt_mixfix --
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49112
diff changeset
   993
  (@{keyword "="} |-- Parse.enum1 "|" (parse_opt_binding_colon -- Parse.binding --
49286
dde4967c9233 added "defaults" option
blanchet
parents: 49280
diff changeset
   994
    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
   995
49278
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   996
val parse_datatype = parse_wrap_options -- Parse.and_list1 parse_single_spec;
718e4ad1517e added no_dests option
blanchet
parents: 49277
diff changeset
   997
49308
6190b701e4f4 reorganized dependencies so that the sugar does not depend on GFP -- this will be essential for bootstrapping
blanchet
parents: 49302
diff changeset
   998
fun parse_datatype_cmd lfp construct = parse_datatype >> datatype_cmd lfp construct;
49112
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
   999
4de4635d8f93 started work on sugared "(co)data" commands
blanchet
parents:
diff changeset
  1000
end;