src/HOL/Codatatype/Tools/bnf_wrap.ML
author blanchet
Tue, 04 Sep 2012 13:02:32 +0200
changeset 49120 7f8e69fc6ac9
parent 49119 1f605c36869c
child 49121 9e0acaa470ab
permissions -rw-r--r--
smarter "*" syntax -- fallback on "_" if "*" is impossible
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
     1
(*  Title:      HOL/Codatatype/Tools/bnf_wrap.ML
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     2
    Author:     Jasmin Blanchette, TU Muenchen
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     3
    Copyright   2012
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     4
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
     5
Wrapping existing datatypes.
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     6
*)
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     7
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
     8
signature BNF_WRAP =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     9
sig
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49118
diff changeset
    10
  val no_name: binding
49111
9d511132394e export "wrap" function
blanchet
parents: 49075
diff changeset
    11
  val wrap: ({prems: thm list, context: Proof.context} -> tactic) list list ->
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49118
diff changeset
    12
    (term list * term) * (binding list * binding list list) -> local_theory -> local_theory
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    13
end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    14
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
    15
structure BNF_Wrap : BNF_WRAP =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    16
struct
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    17
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    18
open BNF_Util
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
    19
open BNF_Wrap_Tactics
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    20
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    21
val is_N = "is_";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    22
val un_N = "un_";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    23
fun mk_un_N 1 1 suf = un_N ^ suf
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    24
  | mk_un_N _ l suf = un_N ^ suf ^ string_of_int l;
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    25
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    26
val case_congN = "case_cong";
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
    27
val case_eqN = "case_eq";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    28
val casesN = "cases";
49118
b815fa776b91 renamed theorem
blanchet
parents: 49117
diff changeset
    29
val collapseN = "collapse";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    30
val disc_exclusN = "disc_exclus";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    31
val disc_exhaustN = "disc_exhaust";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    32
val discsN = "discs";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    33
val distinctN = "distinct";
49075
ed769978dc8d rearrange dependencies
blanchet
parents: 49074
diff changeset
    34
val exhaustN = "exhaust";
ed769978dc8d rearrange dependencies
blanchet
parents: 49074
diff changeset
    35
val injectN = "inject";
ed769978dc8d rearrange dependencies
blanchet
parents: 49074
diff changeset
    36
val nchotomyN = "nchotomy";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    37
val selsN = "sels";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    38
val splitN = "split";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    39
val split_asmN = "split_asm";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    40
val weak_case_cong_thmsN = "weak_case_cong";
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
    41
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
    42
val no_name = @{binding "*"};
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49118
diff changeset
    43
val fallback_name = @{binding _};
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    44
49056
blanchet
parents: 49055
diff changeset
    45
fun pad_list x n xs = xs @ replicate (n - length xs) x;
blanchet
parents: 49055
diff changeset
    46
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
    47
fun mk_half_pairss' _ [] = []
49056
blanchet
parents: 49055
diff changeset
    48
  | mk_half_pairss' indent (y :: ys) =
blanchet
parents: 49055
diff changeset
    49
    indent @ fold_rev (cons o single o pair y) ys (mk_half_pairss' ([] :: indent) ys);
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
    50
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
    51
fun mk_half_pairss ys = mk_half_pairss' [[]] ys;
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
    52
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
    53
val mk_Trueprop_eq = HOLogic.mk_Trueprop o HOLogic.mk_eq;
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
    54
49055
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    55
fun mk_undef T Ts = Const (@{const_name undefined}, Ts ---> T);
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    56
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
    57
fun eta_expand_caseof_arg xs f_xs = fold_rev Term.lambda xs f_xs;
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
    58
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    59
fun name_of_ctr t =
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    60
  case head_of t of
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    61
    Const (s, _) => s
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    62
  | Free (s, _) => s
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    63
  | _ => error "Cannot extract name of constructor";
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    64
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
    65
fun prepare_wrap prep_term ((raw_ctrs, raw_caseof), (raw_disc_names, raw_sel_namess))
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    66
  no_defs_lthy =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    67
  let
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
    68
    (* TODO: sanity checks on arguments *)
49113
ef3eea7ae251 tuned TODOs
blanchet
parents: 49111
diff changeset
    69
    (* TODO: attributes (simp, case_names, etc.) *)
ef3eea7ae251 tuned TODOs
blanchet
parents: 49111
diff changeset
    70
    (* TODO: case syntax *)
ef3eea7ae251 tuned TODOs
blanchet
parents: 49111
diff changeset
    71
    (* TODO: integration with function package ("size") *)
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    72
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    73
    val ctrs0 = map (prep_term no_defs_lthy) raw_ctrs;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    74
    val caseof0 = prep_term no_defs_lthy raw_caseof;
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    75
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    76
    val n = length ctrs0;
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    77
    val ks = 1 upto n;
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    78
49055
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    79
    val (T_name, As0) = dest_Type (body_type (fastype_of (hd ctrs0)));
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    80
    val b = Binding.qualified_name T_name;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    81
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    82
    val (As, B) =
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    83
      no_defs_lthy
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    84
      |> mk_TFrees (length As0)
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    85
      ||> the_single o fst o mk_TFrees 1;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    86
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    87
    fun mk_ctr Ts ctr =
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    88
      let val Ts0 = snd (dest_Type (body_type (fastype_of ctr))) in
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    89
        Term.subst_atomic_types (Ts0 ~~ Ts) ctr
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    90
      end;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    91
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    92
    val T = Type (T_name, As);
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    93
    val ctrs = map (mk_ctr As) ctrs0;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    94
    val ctr_Tss = map (binder_types o fastype_of) ctrs;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    95
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    96
    val ms = map length ctr_Tss;
631512830082 pad the selectors' list with default names
blanchet
parents: 49054
diff changeset
    97
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
    98
    val raw_disc_names' = pad_list no_name n raw_disc_names;
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
    99
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   100
    fun can_rely_on_disc i =
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   101
      not (Binding.eq_name (nth raw_disc_names' i, no_name)) orelse nth ms i = 0;
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   102
    fun can_omit_disc_name k m =
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   103
      n = 1 orelse m = 0 orelse (n = 2 andalso can_rely_on_disc (2 - k))
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   104
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   105
    val fallback_disc_name = Binding.name o prefix is_N o Long_Name.base_name o name_of_ctr;
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   106
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
   107
    val disc_names =
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   108
      raw_disc_names'
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   109
      |> map4 (fn k => fn m => fn ctr => fn disc =>
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   110
        if Binding.eq_name (disc, no_name) then
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   111
          if can_omit_disc_name k m then NONE else SOME (fallback_disc_name ctr)
49119
1f605c36869c more work on FP sugar
blanchet
parents: 49118
diff changeset
   112
        else if Binding.eq_name (disc, fallback_name) then
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   113
          SOME (fallback_disc_name ctr)
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
   114
        else
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   115
          SOME disc) ks ms ctrs0;
49056
blanchet
parents: 49055
diff changeset
   116
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   117
    val no_discs = map is_none disc_names;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   118
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   119
    fun fallback_sel_name m l = Binding.name o mk_un_N m l o Long_Name.base_name o name_of_ctr;
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   120
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
   121
    val sel_namess =
49056
blanchet
parents: 49055
diff changeset
   122
      pad_list [] n raw_sel_namess
blanchet
parents: 49055
diff changeset
   123
      |> map3 (fn ctr => fn m => map2 (fn l => fn sel =>
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   124
        if Binding.eq_name (sel, no_name) orelse Binding.eq_name (sel, fallback_name) then
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   125
          fallback_sel_name m l ctr
49056
blanchet
parents: 49055
diff changeset
   126
        else
49120
7f8e69fc6ac9 smarter "*" syntax -- fallback on "_" if "*" is impossible
blanchet
parents: 49119
diff changeset
   127
          sel) (1 upto m) o pad_list no_name m) ctrs0 ms;
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   128
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   129
    fun mk_caseof Ts T =
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   130
      let val (binders, body) = strip_type (fastype_of caseof0) in
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   131
        Term.subst_atomic_types ((body, T) :: (snd (dest_Type (List.last binders)) ~~ Ts)) caseof0
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   132
      end;
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   133
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   134
    val caseofB = mk_caseof As B;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   135
    val caseofB_Ts = map (fn Ts => Ts ---> B) ctr_Tss;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   136
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   137
    fun mk_caseofB_term eta_fs = Term.list_comb (caseofB, eta_fs);
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   138
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   139
    val (((((((xss, yss), fs), gs), (v, v')), w), (p, p')), names_lthy) = no_defs_lthy |>
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   140
      mk_Freess "x" ctr_Tss
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   141
      ||>> mk_Freess "y" ctr_Tss
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   142
      ||>> mk_Frees "f" caseofB_Ts
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   143
      ||>> mk_Frees "g" caseofB_Ts
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   144
      ||>> yield_singleton (apfst (op ~~) oo mk_Frees' "v") T
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   145
      ||>> yield_singleton (mk_Frees "w") T
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   146
      ||>> yield_singleton (apfst (op ~~) oo mk_Frees' "P") HOLogic.boolT;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   147
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   148
    val q = Free (fst p', B --> HOLogic.boolT);
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   149
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   150
    val xctrs = map2 (curry Term.list_comb) ctrs xss;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   151
    val yctrs = map2 (curry Term.list_comb) ctrs yss;
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   152
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   153
    val xfs = map2 (curry Term.list_comb) fs xss;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   154
    val xgs = map2 (curry Term.list_comb) gs xss;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   155
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   156
    val eta_fs = map2 eta_expand_caseof_arg xss xfs;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   157
    val eta_gs = map2 eta_expand_caseof_arg xss xgs;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   158
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   159
    val caseofB_fs = Term.list_comb (caseofB, eta_fs);
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   160
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   161
    val exist_xs_v_eq_ctrs =
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   162
      map2 (fn xctr => fn xs => list_exists_free xs (HOLogic.mk_eq (v, xctr))) xctrs xss;
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   163
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   164
    fun mk_sel_caseof_args k xs x T =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   165
      map2 (fn Ts => fn i => if i = k then fold_rev Term.lambda xs x else mk_undef T Ts) ctr_Tss ks;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   166
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   167
    fun disc_free b = Free (Binding.name_of b, T --> HOLogic.boolT);
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   168
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   169
    fun disc_spec b exist_xs_v_eq_ctr = mk_Trueprop_eq (disc_free b $ v, exist_xs_v_eq_ctr);
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   170
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   171
    fun not_other_disc_lhs i =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   172
      HOLogic.mk_not
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   173
        (case nth disc_names i of NONE => nth exist_xs_v_eq_ctrs i | SOME b => disc_free b $ v);
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   174
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   175
    fun not_other_disc k =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   176
      if n = 2 then Term.lambda v (not_other_disc_lhs (2 - k)) else error "Cannot use \"*\" here"
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   177
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   178
    fun sel_spec b x xs k =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   179
      let val T' = fastype_of x in
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   180
        mk_Trueprop_eq (Free (Binding.name_of b, T --> T') $ v,
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   181
          Term.list_comb (mk_caseof As T', mk_sel_caseof_args k xs x T') $ v)
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   182
      end;
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   183
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   184
    val missing_disc_def = TrueI; (* marker *)
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   185
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   186
    val (((raw_discs, raw_disc_defs), (raw_selss, raw_sel_defss)), (lthy', lthy)) =
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   187
      no_defs_lthy
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   188
      |> apfst split_list o fold_map4 (fn k => fn m => fn exist_xs_v_eq_ctr =>
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   189
        fn NONE =>
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   190
           if m = 0 then pair (Term.lambda v exist_xs_v_eq_ctr, refl)
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   191
           else pair (not_other_disc k, missing_disc_def)
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   192
         | SOME b => Specification.definition (SOME (b, NONE, NoSyn),
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   193
             ((Thm.def_binding b, []), disc_spec b exist_xs_v_eq_ctr)) #>> apsnd snd)
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   194
        ks ms exist_xs_v_eq_ctrs disc_names
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   195
      ||>> apfst split_list o fold_map3 (fn bs => fn xs => fn k => apfst split_list o
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   196
          fold_map2 (fn b => fn x => Specification.definition (SOME (b, NONE, NoSyn),
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   197
            ((Thm.def_binding b, []), sel_spec b x xs k)) #>> apsnd snd) bs xs) sel_namess xss ks
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   198
      ||> `Local_Theory.restore;
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   199
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   200
    (*transforms defined frees into consts (and more)*)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   201
    val phi = Proof_Context.export_morphism lthy lthy';
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   202
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   203
    val disc_defs = map (Morphism.thm phi) raw_disc_defs;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   204
    val sel_defss = map (map (Morphism.thm phi)) raw_sel_defss;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   205
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   206
    val discs0 = map (Morphism.term phi) raw_discs;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   207
    val selss0 = map (map (Morphism.term phi)) raw_selss;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   208
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   209
    fun mk_disc_or_sel Ts t =
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   210
      Term.subst_atomic_types (snd (dest_Type (domain_type (fastype_of t))) ~~ Ts) t;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   211
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   212
    val discs = map (mk_disc_or_sel As) discs0;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   213
    val selss = map (map (mk_disc_or_sel As)) selss0;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   214
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   215
    fun mk_imp_p Qs = Logic.list_implies (Qs, HOLogic.mk_Trueprop p);
49029
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   216
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   217
    val goal_exhaust =
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   218
      let fun mk_prem xctr xs = fold_rev Logic.all xs (mk_imp_p [mk_Trueprop_eq (v, xctr)]) in
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   219
        mk_imp_p (map2 mk_prem xctrs xss)
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   220
      end;
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   221
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   222
    val goal_injectss =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   223
      let
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   224
        fun mk_goal _ _ [] [] = []
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   225
          | mk_goal xctr yctr xs ys =
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   226
            [mk_Trueprop_eq (HOLogic.mk_eq (xctr, yctr),
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   227
              Library.foldr1 HOLogic.mk_conj (map2 (curry HOLogic.mk_eq) xs ys))];
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   228
      in
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   229
        map4 mk_goal xctrs yctrs xss yss
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   230
      end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   231
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   232
    val goal_half_distinctss =
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   233
      map (map (HOLogic.mk_Trueprop o HOLogic.mk_not o HOLogic.mk_eq)) (mk_half_pairss xctrs);
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   234
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   235
    val goal_cases = map2 (fn xctr => fn xf => mk_Trueprop_eq (caseofB_fs $ xctr, xf)) xctrs xfs;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   236
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   237
    val goals = [goal_exhaust] :: goal_injectss @ goal_half_distinctss @ [goal_cases];
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   238
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   239
    fun after_qed thmss lthy =
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   240
      let
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   241
        val ([exhaust_thm], (inject_thmss, (half_distinct_thmss, [case_thms]))) =
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   242
          (hd thmss, apsnd (chop (n * n)) (chop n (tl thmss)));
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   243
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   244
        val exhaust_thm' =
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   245
          let val Tinst = map (pairself (certifyT lthy)) (map Logic.varifyT_global As ~~ As) in
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   246
            Drule.instantiate' [] [SOME (certify lthy v)]
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   247
              (Thm.instantiate (Tinst, []) (Drule.zero_var_indexes exhaust_thm))
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   248
          end;
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   249
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   250
        val other_half_distinct_thmss = map (map (fn thm => thm RS not_sym)) half_distinct_thmss;
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   251
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   252
        val (distinct_thmsss', distinct_thmsss) =
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   253
          map2 (map2 append) (Library.chop_groups n half_distinct_thmss)
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   254
            (transpose (Library.chop_groups n other_half_distinct_thmss))
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   255
          |> `transpose;
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   256
        val distinct_thms = interleave (flat half_distinct_thmss) (flat other_half_distinct_thmss);
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   257
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   258
        val nchotomy_thm =
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   259
          let
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   260
            val goal =
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   261
              HOLogic.mk_Trueprop (HOLogic.mk_all (fst v', snd v',
49029
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   262
                Library.foldr1 HOLogic.mk_disj exist_xs_v_eq_ctrs));
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   263
          in
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   264
            Skip_Proof.prove lthy [] [] goal (fn _ => mk_nchotomy_tac n exhaust_thm)
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   265
          end;
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   266
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   267
        val sel_thmss =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   268
          let
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   269
            fun mk_thm k xs goal_case case_thm x sel_def =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   270
              let
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   271
                val T = fastype_of x;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   272
                val cTs =
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   273
                  map ((fn T' => certifyT lthy (if T' = B then T else T')) o TFree)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   274
                    (rev (Term.add_tfrees goal_case []));
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   275
                val cxs = map (certify lthy) (mk_sel_caseof_args k xs x T);
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   276
              in
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   277
                Local_Defs.fold lthy [sel_def]
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   278
                  (Drule.instantiate' (map SOME cTs) (map SOME cxs) case_thm)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   279
              end;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   280
            fun mk_thms k xs goal_case case_thm sel_defs =
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   281
              map2 (mk_thm k xs goal_case case_thm) xs sel_defs;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   282
          in
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   283
            map5 mk_thms ks xss goal_cases case_thms sel_defss
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   284
          end;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   285
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   286
        fun not_other_disc_def k =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   287
          let
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   288
            val goal =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   289
              mk_Trueprop_eq (Morphism.term phi (not_other_disc_lhs (2 - k)),
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   290
                nth exist_xs_v_eq_ctrs (k - 1));
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   291
          in
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   292
            Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   293
              mk_not_other_disc_def_tac ctxt (nth disc_defs (2 - k)) (nth distinct_thms (2 - k))
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   294
                exhaust_thm')
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   295
            |> singleton (Proof_Context.export names_lthy lthy)
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   296
          end;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   297
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   298
        val has_not_other_disc_def =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   299
          exists (fn def => Thm.eq_thm_prop (def, missing_disc_def)) disc_defs;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   300
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   301
        val disc_defs' =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   302
          map2 (fn k => fn def =>
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   303
            if Thm.eq_thm_prop (def, missing_disc_def) then not_other_disc_def k else def)
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   304
          ks disc_defs;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   305
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   306
        val discD_thms = map (fn def => def RS iffD1) disc_defs';
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   307
        val discI_thms =
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   308
          map2 (fn m => fn def => funpow m (fn thm => exI RS thm) (def RS iffD2)) ms disc_defs';
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   309
        val not_disc_thms =
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   310
          map2 (fn m => fn def => funpow m (fn thm => allI RS thm)
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   311
            (Local_Defs.unfold lthy @{thms not_ex} (def RS @{thm ssubst[of _ _ Not]})))
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   312
          ms disc_defs';
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   313
49050
9f4a7ed344b4 optimized "mk_case_disc_tac"
blanchet
parents: 49049
diff changeset
   314
        val (disc_thmss', disc_thmss) =
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   315
          let
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   316
            fun mk_thm discI _ [] = refl RS discI
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   317
              | mk_thm _ not_disc [distinct] = distinct RS not_disc;
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   318
            fun mk_thms discI not_disc distinctss = map (mk_thm discI not_disc) distinctss;
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   319
          in
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   320
            map3 mk_thms discI_thms not_disc_thms distinct_thmsss' |> `transpose
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   321
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   322
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   323
        val disc_thms = flat (map2 (fn true => K [] | false => I) no_discs disc_thmss);
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   324
49053
a6df36ecc2a8 renamed "disc_disjoint" property "disj_exclus"
blanchet
parents: 49052
diff changeset
   325
        val disc_exclus_thms =
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   326
          if has_not_other_disc_def then
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   327
            []
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   328
          else
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   329
            let
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   330
              fun mk_goal [] = []
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   331
                | mk_goal [((_, true), (_, true))] = []
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   332
                | mk_goal [(((_, disc), _), ((_, disc'), _))] =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   333
                  [Logic.all v (Logic.mk_implies (HOLogic.mk_Trueprop (betapply (disc, v)),
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   334
                     HOLogic.mk_Trueprop (HOLogic.mk_not (betapply (disc', v)))))];
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   335
              fun prove tac goal = Skip_Proof.prove lthy [] [] goal (K tac);
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   336
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   337
              val bundles = ms ~~ discD_thms ~~ discs ~~ no_discs;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   338
              val half_pairss = mk_half_pairss bundles;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   339
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   340
              val goal_halvess = map mk_goal half_pairss;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   341
              val half_thmss =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   342
                map3 (fn [] => K (K []) | [goal] => fn [((((m, discD), _), _), _)] => fn disc_thm =>
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   343
                  [prove (mk_half_disc_exclus_tac m discD disc_thm) goal])
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   344
                goal_halvess half_pairss (flat disc_thmss');
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   345
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   346
              val goal_other_halvess = map (mk_goal o map swap) half_pairss;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   347
              val other_half_thmss =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   348
                map2 (map2 (prove o mk_other_half_disc_exclus_tac)) half_thmss goal_other_halvess;
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   349
            in
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   350
              interleave (flat half_thmss) (flat other_half_thmss)
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   351
            end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   352
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   353
        val disc_exhaust_thms =
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   354
          if has_not_other_disc_def orelse forall I no_discs then
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   355
            []
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   356
          else
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   357
            let
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   358
              fun mk_prem disc = mk_imp_p [HOLogic.mk_Trueprop (betapply (disc, v))];
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   359
              val goal = fold Logic.all [p, v] (mk_imp_p (map mk_prem discs));
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   360
            in
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   361
              [Skip_Proof.prove lthy [] [] goal (fn _ =>
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   362
                 mk_disc_exhaust_tac n exhaust_thm discI_thms)]
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   363
            end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   364
49118
b815fa776b91 renamed theorem
blanchet
parents: 49117
diff changeset
   365
        val collapse_thms =
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   366
          let
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   367
            fun mk_goal ctr disc sels =
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   368
              let
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   369
                val prem = HOLogic.mk_Trueprop (betapply (disc, v));
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   370
                val concl =
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   371
                  mk_Trueprop_eq ((null sels ? swap)
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   372
                    (Term.list_comb (ctr, map (fn sel => sel $ v) sels), v));
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   373
              in
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   374
                if prem aconv concl then NONE
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   375
                else SOME (Logic.all v (Logic.mk_implies (prem, concl)))
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   376
              end;
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   377
            val goals = map3 mk_goal ctrs discs selss;
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   378
          in
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   379
            map4 (fn m => fn discD => fn sel_thms => Option.map (fn goal =>
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   380
              Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
49118
b815fa776b91 renamed theorem
blanchet
parents: 49117
diff changeset
   381
                mk_collapse_tac ctxt m discD sel_thms))) ms discD_thms sel_thmss goals
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   382
            |> map_filter I
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   383
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   384
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   385
        val case_eq_thm =
49031
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   386
          let
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   387
            fun mk_core f sels = Term.list_comb (f, map (fn sel => sel $ v) sels);
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   388
            fun mk_rhs _ [f] [sels] = mk_core f sels
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   389
              | mk_rhs (disc :: discs) (f :: fs) (sels :: selss) =
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   390
                Const (@{const_name If}, HOLogic.boolT --> B --> B --> B) $
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   391
                  betapply (disc, v) $ mk_core f sels $ mk_rhs discs fs selss;
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   392
            val goal = mk_Trueprop_eq (caseofB_fs $ v, mk_rhs discs fs selss);
49031
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   393
          in
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   394
            Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   395
              mk_case_eq_tac ctxt exhaust_thm' case_thms disc_thmss' sel_thmss)
49031
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   396
            |> singleton (Proof_Context.export names_lthy lthy)
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   397
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   398
49033
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   399
        val (case_cong_thm, weak_case_cong_thm) =
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   400
          let
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   401
            fun mk_prem xctr xs f g =
49045
7d9631754bba minor fixes (for compatibility with existing datatype package)
blanchet
parents: 49044
diff changeset
   402
              fold_rev Logic.all xs (Logic.mk_implies (mk_Trueprop_eq (w, xctr),
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   403
                mk_Trueprop_eq (f, g)));
49033
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   404
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   405
            val v_eq_w = mk_Trueprop_eq (v, w);
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   406
            val caseof_fs = mk_caseofB_term eta_fs;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   407
            val caseof_gs = mk_caseofB_term eta_gs;
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   408
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   409
            val goal =
49033
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   410
              Logic.list_implies (v_eq_w :: map4 mk_prem xctrs xss fs gs,
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   411
                 mk_Trueprop_eq (caseof_fs $ v, caseof_gs $ w));
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   412
            val goal_weak =
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   413
              Logic.mk_implies (v_eq_w, mk_Trueprop_eq (caseof_fs $ v, caseof_fs $ w));
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   414
          in
49049
blanchet
parents: 49048
diff changeset
   415
            (Skip_Proof.prove lthy [] [] goal (fn _ => mk_case_cong_tac exhaust_thm' case_thms),
49033
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   416
             Skip_Proof.prove lthy [] [] goal_weak (K (etac arg_cong 1)))
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   417
            |> pairself (singleton (Proof_Context.export names_lthy lthy))
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   418
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   419
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   420
        val (split_thm, split_asm_thm) =
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   421
          let
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   422
            fun mk_conjunct xctr xs f_xs =
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   423
              list_all_free xs (HOLogic.mk_imp (HOLogic.mk_eq (v, xctr), q $ f_xs));
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   424
            fun mk_disjunct xctr xs f_xs =
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   425
              list_exists_free xs (HOLogic.mk_conj (HOLogic.mk_eq (v, xctr),
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   426
                HOLogic.mk_not (q $ f_xs)));
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   427
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   428
            val lhs = q $ (mk_caseofB_term eta_fs $ v);
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   429
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   430
            val goal =
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   431
              mk_Trueprop_eq (lhs, Library.foldr1 HOLogic.mk_conj (map3 mk_conjunct xctrs xss xfs));
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   432
            val goal_asm =
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   433
              mk_Trueprop_eq (lhs, HOLogic.mk_not (Library.foldr1 HOLogic.mk_disj
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   434
                (map3 mk_disjunct xctrs xss xfs)));
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   435
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   436
            val split_thm =
49049
blanchet
parents: 49048
diff changeset
   437
              Skip_Proof.prove lthy [] [] goal
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   438
                (fn _ => mk_split_tac exhaust_thm' case_thms inject_thmss distinct_thmsss)
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   439
              |> singleton (Proof_Context.export names_lthy lthy)
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   440
            val split_asm_thm =
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   441
              Skip_Proof.prove lthy [] [] goal_asm (fn {context = ctxt, ...} =>
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   442
                mk_split_asm_tac ctxt split_thm)
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   443
              |> singleton (Proof_Context.export names_lthy lthy)
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   444
          in
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   445
            (split_thm, split_asm_thm)
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   446
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   447
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   448
        val notes =
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   449
          [(case_congN, [case_cong_thm]),
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   450
           (case_eqN, [case_eq_thm]),
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   451
           (casesN, case_thms),
49118
b815fa776b91 renamed theorem
blanchet
parents: 49117
diff changeset
   452
           (collapseN, collapse_thms),
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   453
           (discsN, disc_thms),
49053
a6df36ecc2a8 renamed "disc_disjoint" property "disj_exclus"
blanchet
parents: 49052
diff changeset
   454
           (disc_exclusN, disc_exclus_thms),
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   455
           (disc_exhaustN, disc_exhaust_thms),
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   456
           (distinctN, distinct_thms),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   457
           (exhaustN, [exhaust_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   458
           (injectN, (flat inject_thmss)),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   459
           (nchotomyN, [nchotomy_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   460
           (selsN, (flat sel_thmss)),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   461
           (splitN, [split_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   462
           (split_asmN, [split_asm_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   463
           (weak_case_cong_thmsN, [weak_case_cong_thm])]
49116
3d520eec2746 allow pseudo-definition of is_Cons in terms of is_Nil (and similarly for other two-constructor datatypes)
blanchet
parents: 49114
diff changeset
   464
          |> filter_out (null o snd)
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   465
          |> map (fn (thmN, thms) =>
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   466
            ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), []), [(thms, [])]));
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   467
      in
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   468
        lthy |> Local_Theory.notes notes |> snd
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   469
      end;
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   470
  in
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   471
    (goals, after_qed, lthy')
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   472
  end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   473
49111
9d511132394e export "wrap" function
blanchet
parents: 49075
diff changeset
   474
fun wrap tacss = (fn (goalss, after_qed, lthy) =>
9d511132394e export "wrap" function
blanchet
parents: 49075
diff changeset
   475
  map2 (map2 (Skip_Proof.prove lthy [] [])) goalss tacss
9d511132394e export "wrap" function
blanchet
parents: 49075
diff changeset
   476
  |> (fn thms => after_qed thms lthy)) oo
9d511132394e export "wrap" function
blanchet
parents: 49075
diff changeset
   477
  prepare_wrap (singleton o Type_Infer_Context.infer_types)
9d511132394e export "wrap" function
blanchet
parents: 49075
diff changeset
   478
49114
c0d77c85e0b8 allow "*" to indicate no discriminator
blanchet
parents: 49113
diff changeset
   479
val parse_bindings = Parse.$$$ "[" |-- Parse.list Parse.binding --| Parse.$$$ "]";
49057
1a7b9e4c3153 made parser a bit more flexible
blanchet
parents: 49056
diff changeset
   480
val parse_bindingss = Parse.$$$ "[" |-- Parse.list parse_bindings --| Parse.$$$ "]";
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   481
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
   482
val wrap_data_cmd = (fn (goalss, after_qed, lthy) =>
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   483
  Proof.theorem NONE after_qed (map (map (rpair [])) goalss) lthy) oo
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
   484
  prepare_wrap Syntax.read_term;
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   485
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   486
val _ =
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
   487
  Outer_Syntax.local_theory_to_proof @{command_spec "wrap_data"} "wraps an existing datatype"
49023
5afe918dd476 changed order of arguments to "bnf_sugar"
blanchet
parents: 49022
diff changeset
   488
    (((Parse.$$$ "[" |-- Parse.list Parse.term --| Parse.$$$ "]") -- Parse.term --
49057
1a7b9e4c3153 made parser a bit more flexible
blanchet
parents: 49056
diff changeset
   489
      Scan.optional (parse_bindings -- Scan.optional parse_bindingss []) ([], []))
49074
d8af889dcbe3 renamed three BNF/(co)datatype-related commands
blanchet
parents: 49057
diff changeset
   490
     >> wrap_data_cmd);
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   491
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   492
end;