src/HOL/Codatatype/Tools/bnf_sugar.ML
author blanchet
Fri, 31 Aug 2012 16:07:06 +0200
changeset 49054 ee0a1d449f89
parent 49053 a6df36ecc2a8
child 49055 631512830082
permissions -rw-r--r--
generate default names for selectors
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     1
(*  Title:      HOL/Codatatype/Tools/bnf_sugar.ML
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
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     5
Sugar on top of a BNF.
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     6
*)
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     7
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     8
signature BNF_SUGAR =
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
     9
sig
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    10
end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    11
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    12
structure BNF_Sugar : BNF_SUGAR =
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    13
struct
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    14
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    15
open BNF_Util
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
    16
open BNF_FP_Util
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
    17
open BNF_Sugar_Tactics
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    18
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    19
val is_N = "is_";
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    20
val un_N = "un_";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    21
fun mk_un_N 1 1 suf = un_N ^ suf
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    22
  | 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
    23
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    24
val case_congN = "case_cong";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    25
val case_discsN = "case_discs";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    26
val casesN = "cases";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    27
val ctr_selsN = "ctr_sels";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    28
val disc_exclusN = "disc_exclus";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    29
val disc_exhaustN = "disc_exhaust";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    30
val discsN = "discs";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    31
val distinctN = "distinct";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    32
val selsN = "sels";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    33
val splitN = "split";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    34
val split_asmN = "split_asm";
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    35
val weak_case_cong_thmsN = "weak_case_cong";
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
    36
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    37
val default_name = @{binding _};
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    38
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
    39
fun mk_half_pairss' _ [] = []
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
    40
  | mk_half_pairss' pad (y :: ys) =
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
    41
    pad @ fold_rev (cons o single o pair y) ys (mk_half_pairss' ([] :: pad) ys);
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
    42
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
    43
fun mk_half_pairss ys = mk_half_pairss' [[]] ys;
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
    44
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
    45
val mk_Trueprop_eq = HOLogic.mk_Trueprop o HOLogic.mk_eq;
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
    46
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
    47
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
    48
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    49
fun name_of_ctr t =
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    50
  case head_of t of
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    51
    Const (s, _) => s
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    52
  | Free (s, _) => s
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    53
  | _ => error "Cannot extract name of constructor";
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    54
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    55
fun prepare_sugar prep_term (((raw_ctrs, raw_caseof), raw_disc_names), raw_sel_namess)
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    56
  no_defs_lthy =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    57
  let
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
    58
    (* TODO: sanity checks on arguments *)
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    59
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    60
    (* TODO: normalize types of constructors w.r.t. each other *)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    61
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    62
    val ctrs0 = map (prep_term no_defs_lthy) raw_ctrs;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    63
    val caseof0 = prep_term no_defs_lthy raw_caseof;
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
    64
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    65
    val n = length ctrs0;
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    66
    val ks = 1 upto n;
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    67
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    68
    val raw_disc_names' =
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    69
      raw_disc_names @ replicate (length ctrs0 - length raw_disc_names) default_name;
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    70
49046
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    71
    val disc_names =
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    72
      map2 (fn ctr => fn disc =>
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    73
        if Binding.eq_name (disc, default_name) then
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    74
          Binding.name (prefix is_N (Long_Name.base_name (name_of_ctr ctr)))
3c5eba97d93a allow default names for selectors via wildcard (_) + fix wrong index (k)
blanchet
parents: 49045
diff changeset
    75
        else
49054
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    76
          disc) ctrs0 raw_disc_names';
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    77
    val sel_namess =
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    78
      map2 (fn ctr => fn sels =>
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    79
        let val m = length sels in
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    80
          map2 (fn l => fn sel =>
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    81
            if Binding.eq_name (sel, default_name) then
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    82
              Binding.name (mk_un_N m l (Long_Name.base_name (name_of_ctr ctr)))
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    83
            else
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    84
              sel) (1 upto m) sels
ee0a1d449f89 generate default names for selectors
blanchet
parents: 49053
diff changeset
    85
        end) ctrs0 raw_sel_namess;
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
    86
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    87
    val (T_name, As0) = dest_Type (body_type (fastype_of (hd ctrs0)));
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
    88
    val b = Binding.qualified_name T_name;
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
    89
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    90
    val (As, B) =
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    91
      no_defs_lthy
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    92
      |> mk_TFrees (length As0)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    93
      ||> the_single o fst o mk_TFrees 1;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    94
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    95
    fun mk_undef T Ts = Const (@{const_name undefined}, Ts ---> T);
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    96
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    97
    fun mk_ctr Ts ctr =
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
    98
      let val Ts0 = snd (dest_Type (body_type (fastype_of ctr))) in
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
    99
        Term.subst_atomic_types (Ts0 ~~ Ts) ctr
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   100
      end;
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   101
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   102
    fun mk_caseof Ts T =
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   103
      let val (binders, body) = strip_type (fastype_of caseof0) in
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   104
        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
   105
      end;
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   106
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   107
    val T = Type (T_name, As);
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   108
    val ctrs = map (mk_ctr As) ctrs0;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   109
    val ctr_Tss = map (binder_types o fastype_of) ctrs;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   110
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   111
    val ms = map length ctr_Tss;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   112
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   113
    val caseofB = mk_caseof As B;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   114
    val caseofB_Ts = map (fn Ts => Ts ---> B) ctr_Tss;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   115
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   116
    fun mk_caseofB_term eta_fs = Term.list_comb (caseofB, eta_fs);
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   117
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   118
    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
   119
      mk_Freess "x" ctr_Tss
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   120
      ||>> mk_Freess "y" ctr_Tss
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   121
      ||>> mk_Frees "f" caseofB_Ts
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   122
      ||>> mk_Frees "g" caseofB_Ts
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   123
      ||>> yield_singleton (apfst (op ~~) oo mk_Frees' "v") T
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   124
      ||>> yield_singleton (mk_Frees "w") T
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   125
      ||>> yield_singleton (apfst (op ~~) oo mk_Frees' "P") HOLogic.boolT;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   126
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   127
    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
   128
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   129
    val xctrs = map2 (curry Term.list_comb) ctrs xss;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   130
    val yctrs = map2 (curry Term.list_comb) ctrs yss;
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   131
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   132
    val xfs = map2 (curry Term.list_comb) fs xss;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   133
    val xgs = map2 (curry Term.list_comb) gs xss;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   134
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   135
    val eta_fs = map2 eta_expand_caseof_arg xss xfs;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   136
    val eta_gs = map2 eta_expand_caseof_arg xss xgs;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   137
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   138
    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
   139
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   140
    val exist_xs_v_eq_ctrs =
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   141
      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
   142
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   143
    fun mk_sel_caseof_args k xs x T =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   144
      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
   145
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   146
    fun disc_spec b exist_xs_v_eq_ctr =
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   147
      mk_Trueprop_eq (Free (Binding.name_of b, T --> HOLogic.boolT) $ v, exist_xs_v_eq_ctr);
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   148
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   149
    fun sel_spec b x xs k =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   150
      let val T' = fastype_of x in
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   151
        mk_Trueprop_eq (Free (Binding.name_of b, T --> T') $ v,
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   152
          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
   153
      end;
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   154
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   155
    val (((raw_discs, (_, raw_disc_defs)), (raw_selss, (_, raw_sel_defss))), (lthy', lthy)) =
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   156
      no_defs_lthy
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   157
      |> apfst (apsnd split_list o split_list) o fold_map2 (fn b => fn exist_xs_v_eq_ctr =>
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   158
        Specification.definition (SOME (b, NONE, NoSyn),
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   159
          ((Thm.def_binding b, []), disc_spec b exist_xs_v_eq_ctr))) disc_names exist_xs_v_eq_ctrs
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   160
      ||>> apfst (apsnd split_list o split_list) o fold_map3 (fn bs => fn xs => fn k =>
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   161
        apfst (apsnd split_list o split_list) o fold_map2 (fn b => fn x =>
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   162
          Specification.definition (SOME (b, NONE, NoSyn),
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   163
            ((Thm.def_binding b, []), sel_spec b x xs k))) bs xs) sel_namess xss ks
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   164
      ||> `Local_Theory.restore;
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   165
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   166
    (*transforms defined frees into consts (and more)*)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   167
    val phi = Proof_Context.export_morphism lthy lthy';
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   168
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   169
    val disc_defs = map (Morphism.thm phi) raw_disc_defs;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   170
    val sel_defss = map (map (Morphism.thm phi)) raw_sel_defss;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   171
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   172
    val discs0 = map (Morphism.term phi) raw_discs;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   173
    val selss0 = map (map (Morphism.term phi)) raw_selss;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   174
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   175
    fun mk_disc_or_sel Ts t =
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   176
      Term.subst_atomic_types (snd (dest_Type (domain_type (fastype_of t))) ~~ Ts) t;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   177
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   178
    val discs = map (mk_disc_or_sel As) discs0;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   179
    val selss = map (map (mk_disc_or_sel As)) selss0;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   180
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   181
    fun mk_imp_p Qs = Logic.list_implies (Qs, HOLogic.mk_Trueprop p);
49029
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   182
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   183
    val goal_exhaust =
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   184
      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
   185
        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
   186
      end;
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   187
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   188
    val goal_injectss =
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   189
      let
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   190
        fun mk_goal _ _ [] [] = []
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   191
          | mk_goal xctr yctr xs ys =
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   192
            [mk_Trueprop_eq (HOLogic.mk_eq (xctr, yctr),
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   193
              Library.foldr1 HOLogic.mk_conj (map2 (curry HOLogic.mk_eq) xs ys))];
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   194
      in
49034
b77e1910af8a make parallel list indexing possible for inject theorems
blanchet
parents: 49033
diff changeset
   195
        map4 mk_goal xctrs yctrs xss yss
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   196
      end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   197
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   198
    val goal_half_distinctss =
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   199
      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
   200
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   201
    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
   202
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   203
    val goals = [goal_exhaust] :: goal_injectss @ goal_half_distinctss @ [goal_cases];
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   204
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   205
    fun after_qed thmss lthy =
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   206
      let
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   207
        val ([exhaust_thm], (inject_thmss, (half_distinct_thmss, [case_thms]))) =
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   208
          (hd thmss, apsnd (chop (n * n)) (chop n (tl thmss)));
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   209
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   210
        val exhaust_thm' =
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   211
          let val Tinst = map (pairself (certifyT lthy)) (map Logic.varifyT_global As ~~ As) in
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   212
            Drule.instantiate' [] [SOME (certify lthy v)]
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   213
              (Thm.instantiate (Tinst, []) (Drule.zero_var_indexes exhaust_thm))
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   214
          end;
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   215
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   216
        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
   217
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   218
        val (distinct_thmsss', distinct_thmsss) =
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   219
          map2 (map2 append) (Library.chop_groups n half_distinct_thmss)
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   220
            (transpose (Library.chop_groups n other_half_distinct_thmss))
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   221
          |> `transpose;
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   222
        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
   223
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   224
        val nchotomy_thm =
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   225
          let
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   226
            val goal =
49022
005ce926a932 define selectors and discriminators
blanchet
parents: 49020
diff changeset
   227
              HOLogic.mk_Trueprop (HOLogic.mk_all (fst v', snd v',
49029
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   228
                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
   229
          in
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   230
            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
   231
          end;
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   232
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   233
        val sel_thmss =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   234
          let
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   235
            fun mk_thm k xs goal_case case_thm x sel_def =
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   236
              let
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   237
                val T = fastype_of x;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   238
                val cTs =
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   239
                  map ((fn T' => certifyT lthy (if T' = B then T else T')) o TFree)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   240
                    (rev (Term.add_tfrees goal_case []));
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   241
                val cxs = map (certify lthy) (mk_sel_caseof_args k xs x T);
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   242
              in
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   243
                Local_Defs.fold lthy [sel_def]
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   244
                  (Drule.instantiate' (map SOME cTs) (map SOME cxs) case_thm)
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   245
              end;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   246
            fun mk_thms k xs goal_case case_thm sel_defs =
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   247
              map2 (mk_thm k xs goal_case case_thm) xs sel_defs;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   248
          in
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   249
            map5 mk_thms ks xss goal_cases case_thms sel_defss
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   250
          end;
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   251
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   252
        val discD_thms = map (fn def => def RS iffD1) disc_defs;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   253
        val discI_thms =
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   254
          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
   255
        val not_disc_thms =
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   256
          map2 (fn m => fn def => funpow m (fn thm => allI RS thm)
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   257
                  (Local_Defs.unfold lthy @{thms not_ex} (def RS @{thm ssubst[of _ _ Not]})))
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   258
            ms disc_defs;
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   259
49050
9f4a7ed344b4 optimized "mk_case_disc_tac"
blanchet
parents: 49049
diff changeset
   260
        val (disc_thmss', disc_thmss) =
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   261
          let
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   262
            fun mk_thm discI _ [] = refl RS discI
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   263
              | mk_thm _ not_disc [distinct] = distinct RS not_disc;
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   264
            fun mk_thms discI not_disc distinctss = map (mk_thm discI not_disc) distinctss;
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   265
          in
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   266
            map3 mk_thms discI_thms not_disc_thms distinct_thmsss'
49050
9f4a7ed344b4 optimized "mk_case_disc_tac"
blanchet
parents: 49049
diff changeset
   267
            |> `transpose
49027
fc3b9b49c92d added discriminator theorems
blanchet
parents: 49025
diff changeset
   268
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   269
49053
a6df36ecc2a8 renamed "disc_disjoint" property "disj_exclus"
blanchet
parents: 49052
diff changeset
   270
        val disc_exclus_thms =
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   271
          let
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   272
            fun mk_goal ((_, disc), (_, disc')) =
49029
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   273
              Logic.all v (Logic.mk_implies (HOLogic.mk_Trueprop (disc $ v),
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   274
                HOLogic.mk_Trueprop (HOLogic.mk_not (disc' $ v))));
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   275
            fun prove tac goal = Skip_Proof.prove lthy [] [] goal (K tac);
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   276
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   277
            val bundles = ms ~~ discD_thms ~~ discs;
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   278
            val half_pairss = mk_half_pairss bundles;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   279
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   280
            val goal_halvess = map (map mk_goal) half_pairss;
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   281
            val half_thmss =
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   282
              map3 (fn [] => K (K [])
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   283
                     | [(((m, discD), _), _)] => fn disc_thm => fn [goal] =>
49053
a6df36ecc2a8 renamed "disc_disjoint" property "disj_exclus"
blanchet
parents: 49052
diff changeset
   284
                [prove (mk_half_disc_exclus_tac m discD disc_thm) goal])
49050
9f4a7ed344b4 optimized "mk_case_disc_tac"
blanchet
parents: 49049
diff changeset
   285
              half_pairss (flat disc_thmss') goal_halvess;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   286
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   287
            val goal_other_halvess = map (map (mk_goal o swap)) half_pairss;
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   288
            val other_half_thmss =
49053
a6df36ecc2a8 renamed "disc_disjoint" property "disj_exclus"
blanchet
parents: 49052
diff changeset
   289
              map2 (map2 (prove o mk_other_half_disc_exclus_tac)) half_thmss goal_other_halvess;
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   290
          in
49048
4e0f0f98be02 rationalized data structure for distinctness theorems
blanchet
parents: 49046
diff changeset
   291
            interleave (flat half_thmss) (flat other_half_thmss)
49028
487427a02bee generate "disc_distinct" theorems
blanchet
parents: 49027
diff changeset
   292
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   293
49029
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   294
        val disc_exhaust_thm =
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   295
          let
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   296
            fun mk_prem disc = mk_imp_p [HOLogic.mk_Trueprop (disc $ v)];
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   297
            val goal = fold Logic.all [p, v] (mk_imp_p (map mk_prem discs));
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   298
          in
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   299
            Skip_Proof.prove lthy [] [] goal (fn _ => mk_disc_exhaust_tac n exhaust_thm discI_thms)
f0ecfa9575a9 generate "disc_exhaust" property
blanchet
parents: 49028
diff changeset
   300
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   301
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   302
        val ctr_sel_thms =
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   303
          let
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   304
            fun mk_goal ctr disc sels =
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   305
              Logic.all v (Logic.mk_implies (HOLogic.mk_Trueprop (disc $ v),
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   306
                mk_Trueprop_eq ((null sels ? swap)
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   307
                  (Term.list_comb (ctr, map (fn sel => sel $ v) sels), v))));
49030
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   308
            val goals = map3 mk_goal ctrs discs selss;
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   309
          in
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   310
            map4 (fn goal => fn m => fn discD => fn sel_thms =>
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   311
              Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   312
                mk_ctr_sel_tac ctxt m discD sel_thms))
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   313
              goals ms discD_thms sel_thmss
d0f4f113e43d generate "ctr_sels" theorems
blanchet
parents: 49029
diff changeset
   314
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   315
49031
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   316
        val case_disc_thm =
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   317
          let
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   318
            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
   319
            fun mk_rhs _ [f] [sels] = mk_core f sels
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   320
              | mk_rhs (disc :: discs) (f :: fs) (sels :: selss) =
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   321
                Const (@{const_name If}, HOLogic.boolT --> B --> B --> B) $
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   322
                  (disc $ v) $ mk_core f sels $ mk_rhs discs fs selss;
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   323
            val goal = mk_Trueprop_eq (caseofB_fs $ v, mk_rhs discs fs selss);
49031
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   324
          in
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   325
            Skip_Proof.prove lthy [] [] goal (fn {context = ctxt, ...} =>
49050
9f4a7ed344b4 optimized "mk_case_disc_tac"
blanchet
parents: 49049
diff changeset
   326
              mk_case_disc_tac ctxt exhaust_thm' case_thms disc_thmss' sel_thmss)
49031
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   327
            |> singleton (Proof_Context.export names_lthy lthy)
632ee0da3c5b generate "case_disc" property
blanchet
parents: 49030
diff changeset
   328
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   329
49033
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   330
        val (case_cong_thm, weak_case_cong_thm) =
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   331
          let
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   332
            fun mk_prem xctr xs f g =
49045
7d9631754bba minor fixes (for compatibility with existing datatype package)
blanchet
parents: 49044
diff changeset
   333
              fold_rev Logic.all xs (Logic.mk_implies (mk_Trueprop_eq (w, xctr),
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   334
                mk_Trueprop_eq (f, g)));
49033
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   335
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   336
            val v_eq_w = mk_Trueprop_eq (v, w);
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   337
            val caseof_fs = mk_caseofB_term eta_fs;
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   338
            val caseof_gs = mk_caseofB_term eta_gs;
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   339
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   340
            val goal =
49033
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   341
              Logic.list_implies (v_eq_w :: map4 mk_prem xctrs xss fs gs,
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   342
                 mk_Trueprop_eq (caseof_fs $ v, caseof_gs $ w));
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   343
            val goal_weak =
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   344
              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
   345
          in
49049
blanchet
parents: 49048
diff changeset
   346
            (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
   347
             Skip_Proof.prove lthy [] [] goal_weak (K (etac arg_cong 1)))
23ef2d429931 generate "weak_case_cong" property
blanchet
parents: 49032
diff changeset
   348
            |> pairself (singleton (Proof_Context.export names_lthy lthy))
49032
c2a7bedd57d8 generate "case_cong" property
blanchet
parents: 49031
diff changeset
   349
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   350
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   351
        val (split_thm, split_asm_thm) =
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   352
          let
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   353
            fun mk_conjunct xctr xs f_xs =
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   354
              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
   355
            fun mk_disjunct xctr xs f_xs =
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   356
              list_exists_free xs (HOLogic.mk_conj (HOLogic.mk_eq (v, xctr),
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   357
                HOLogic.mk_not (q $ f_xs)));
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   358
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   359
            val lhs = q $ (mk_caseofB_term eta_fs $ v);
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   360
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   361
            val goal =
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   362
              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
   363
            val goal_asm =
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   364
              mk_Trueprop_eq (lhs, HOLogic.mk_not (Library.foldr1 HOLogic.mk_disj
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   365
                (map3 mk_disjunct xctrs xss xfs)));
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   366
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   367
            val split_thm =
49049
blanchet
parents: 49048
diff changeset
   368
              Skip_Proof.prove lthy [] [] goal
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   369
                (fn _ => mk_split_tac exhaust_thm' case_thms inject_thmss distinct_thmsss)
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   370
              |> singleton (Proof_Context.export names_lthy lthy)
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   371
            val split_asm_thm =
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   372
              Skip_Proof.prove lthy [] [] goal_asm (fn {context = ctxt, ...} =>
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   373
                mk_split_asm_tac ctxt split_thm)
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   374
              |> singleton (Proof_Context.export names_lthy lthy)
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   375
          in
49044
c4a34ae5504d generate "split_asm" property
blanchet
parents: 49043
diff changeset
   376
            (split_thm, split_asm_thm)
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   377
          end;
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   378
49043
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   379
        (* TODO: case syntax *)
bd3e33ee762d generate "split" property
blanchet
parents: 49034
diff changeset
   380
        (* TODO: attributes (simp, case_names, etc.) *)
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   381
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   382
        val notes =
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   383
          [(case_congN, [case_cong_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   384
           (case_discsN, [case_disc_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   385
           (casesN, case_thms),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   386
           (ctr_selsN, ctr_sel_thms),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   387
           (discsN, (flat disc_thmss)),
49053
a6df36ecc2a8 renamed "disc_disjoint" property "disj_exclus"
blanchet
parents: 49052
diff changeset
   388
           (disc_exclusN, disc_exclus_thms),
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   389
           (disc_exhaustN, [disc_exhaust_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   390
           (distinctN, distinct_thms),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   391
           (exhaustN, [exhaust_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   392
           (injectN, (flat inject_thmss)),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   393
           (nchotomyN, [nchotomy_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   394
           (selsN, (flat sel_thmss)),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   395
           (splitN, [split_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   396
           (split_asmN, [split_asm_thm]),
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   397
           (weak_case_cong_thmsN, [weak_case_cong_thm])]
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   398
          |> map (fn (thmN, thms) =>
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   399
            ((Binding.qualify true (Binding.name_of b) (Binding.name thmN), []), [(thms, [])]));
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   400
      in
49052
3510b943dd5b optimized "mk_split_tac" + use "notes"
blanchet
parents: 49050
diff changeset
   401
        lthy |> Local_Theory.notes notes |> snd
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   402
      end;
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   403
  in
49025
7e89b0520e83 more work on sugar
blanchet
parents: 49023
diff changeset
   404
    (goals, after_qed, lthy')
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   405
  end;
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   406
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   407
val parse_binding_list = Parse.$$$ "[" |--  Parse.list Parse.binding --| Parse.$$$ "]";
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   408
49019
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   409
val bnf_sugar_cmd = (fn (goalss, after_qed, lthy) =>
fc4decdba5ce more work on BNF sugar
blanchet
parents: 49017
diff changeset
   410
  Proof.theorem NONE after_qed (map (map (rpair [])) goalss) lthy) oo
49020
f379cf5d71bd more work on BNF sugar -- up to derivation of nchotomy
blanchet
parents: 49019
diff changeset
   411
  prepare_sugar Syntax.read_term;
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   412
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   413
val _ =
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   414
  Outer_Syntax.local_theory_to_proof @{command_spec "bnf_sugar"} "adds sugar on top of a BNF"
49023
5afe918dd476 changed order of arguments to "bnf_sugar"
blanchet
parents: 49022
diff changeset
   415
    (((Parse.$$$ "[" |-- Parse.list Parse.term --| Parse.$$$ "]") -- Parse.term --
5afe918dd476 changed order of arguments to "bnf_sugar"
blanchet
parents: 49022
diff changeset
   416
      parse_binding_list -- (Parse.$$$ "[" |-- Parse.list parse_binding_list --| Parse.$$$ "]"))
5afe918dd476 changed order of arguments to "bnf_sugar"
blanchet
parents: 49022
diff changeset
   417
      >> bnf_sugar_cmd);
49017
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   418
66fc7fc2d49b started work on datatype sugar
blanchet
parents:
diff changeset
   419
end;