src/HOL/Tools/Datatype/datatype_prop.ML
author wenzelm
Thu, 29 Oct 2009 17:58:26 +0100
changeset 33317 b4534348b8fd
parent 33244 db230399f890
child 33338 de76079f973a
permissions -rw-r--r--
standardized filter/filter_out;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     1
(*  Title:      HOL/Tools/datatype_prop.ML
11539
0f17da240450 tuned headers;
wenzelm
parents: 10911
diff changeset
     2
    Author:     Stefan Berghofer, TU Muenchen
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     3
11539
0f17da240450 tuned headers;
wenzelm
parents: 10911
diff changeset
     4
Characteristic properties of datatypes.
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     5
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     6
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     7
signature DATATYPE_PROP =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     8
sig
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
     9
  val indexify_names: string list -> string list
13465
08e3fe248ba9 Exported function make_tnames.
berghofe
parents: 13340
diff changeset
    10
  val make_tnames: typ list -> string list
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    11
  val make_injs : DatatypeAux.descr list -> (string * sort) list -> term list list
26969
cf3f998d0631 moved case distinction over number of constructors for distinctness rules from DatatypeProp to DatatypeRepProofs
haftmann
parents: 25154
diff changeset
    12
  val make_distincts : DatatypeAux.descr list ->
27300
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    13
    (string * sort) list -> (int * term list) list (*no symmetric inequalities*)
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    14
  val make_ind : DatatypeAux.descr list -> (string * sort) list -> term
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    15
  val make_casedists : DatatypeAux.descr list -> (string * sort) list -> term list
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
    16
  val make_primrec_Ts : DatatypeAux.descr list -> (string * sort) list ->
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
    17
    string list -> typ list * typ list
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    18
  val make_primrecs : string list -> DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    19
    (string * sort) list -> theory -> term list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    20
  val make_cases : string list -> DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    21
    (string * sort) list -> theory -> term list list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    22
  val make_splits : string list -> DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    23
    (string * sort) list -> theory -> (term * term) list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    24
  val make_weak_case_congs : string list -> DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    25
    (string * sort) list -> theory -> term list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    26
  val make_case_congs : string list -> DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    27
    (string * sort) list -> theory -> term list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    28
  val make_nchotomys : DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    29
    (string * sort) list -> term list
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    30
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    31
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    32
structure DatatypeProp : DATATYPE_PROP =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    33
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    34
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    35
open DatatypeAux;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    36
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    37
fun indexify_names names =
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    38
  let
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    39
    fun index (x :: xs) tab =
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 15574
diff changeset
    40
      (case AList.lookup (op =) tab x of
25154
haftmann
parents: 24699
diff changeset
    41
        NONE => if member (op =) xs x then (x ^ "1") :: index xs ((x, 2) :: tab) else x :: index xs tab
haftmann
parents: 24699
diff changeset
    42
      | SOME i => (x ^ string_of_int i) :: index xs ((x, i + 1) :: tab))
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    43
    | index [] _ = [];
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    44
  in index names [] end;
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    45
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    46
fun make_tnames Ts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    47
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    48
    fun type_name (TFree (name, _)) = implode (tl (explode name))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    49
      | type_name (Type (name, _)) = 
30364
577edc39b501 moved basic algebra of long names from structure NameSpace to Long_Name;
wenzelm
parents: 30280
diff changeset
    50
          let val name' = Long_Name.base_name name
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    51
          in if Syntax.is_identifier name' then name' else "x" end;
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    52
  in indexify_names (map type_name Ts) end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    53
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    54
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    55
(************************* injectivity of constructors ************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    56
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    57
fun make_injs descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    58
  let
21078
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    59
    val descr' = flat descr;
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    60
    fun make_inj T (cname, cargs) =
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    61
      if null cargs then I else
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    62
        let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    63
          val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    64
          val constr_t = Const (cname, Ts ---> T);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    65
          val tnames = make_tnames Ts;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    66
          val frees = map Free (tnames ~~ Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    67
          val frees' = map Free ((map ((op ^) o (rpair "'")) tnames) ~~ Ts);
21078
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    68
        in cons (HOLogic.mk_Trueprop (HOLogic.mk_eq
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    69
          (HOLogic.mk_eq (list_comb (constr_t, frees), list_comb (constr_t, frees')),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    70
           foldr1 (HOLogic.mk_binop "op &")
21078
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    71
             (map HOLogic.mk_eq (frees ~~ frees')))))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    72
        end;
21078
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    73
  in
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    74
    map2 (fn d => fn T => fold_rev (make_inj T) (#3 (snd d)) [])
101aefd61aac slight cleanup
haftmann
parents: 20071
diff changeset
    75
      (hd descr) (Library.take (length (hd descr), get_rec_types descr' sorts))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    76
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    77
27300
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    78
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    79
(************************* distinctness of constructors ***********************)
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    80
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    81
fun make_distincts descr sorts =
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    82
  let
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    83
    val descr' = flat descr;
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    84
    val recTs = get_rec_types descr' sorts;
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    85
    val newTs = Library.take (length (hd descr), recTs);
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    86
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    87
    fun prep_constr (cname, cargs) = (cname, map (typ_of_dtyp descr' sorts) cargs);
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    88
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    89
    fun make_distincts' _ [] = []
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    90
      | make_distincts' T ((cname, cargs)::constrs) =
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    91
          let
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    92
            val frees = map Free ((make_tnames cargs) ~~ cargs);
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    93
            val t = list_comb (Const (cname, cargs ---> T), frees);
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    94
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    95
            fun make_distincts'' (cname', cargs') =
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    96
              let
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    97
                val frees' = map Free ((map ((op ^) o (rpair "'"))
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    98
                  (make_tnames cargs')) ~~ cargs');
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
    99
                val t' = list_comb (Const (cname', cargs' ---> T), frees')
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   100
              in
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   101
                HOLogic.mk_Trueprop (HOLogic.Not $ HOLogic.mk_eq (t, t'))
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   102
              end
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   103
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   104
          in map make_distincts'' constrs @ make_distincts' T constrs end;
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   105
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   106
  in
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   107
    map2 (fn ((_, (_, _, constrs))) => fn T =>
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   108
      (length constrs, make_distincts' T (map prep_constr constrs))) (hd descr) newTs
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   109
  end;
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   110
4cb3101d2bf7 DatatypeProp.make_distincts: only one half of each symmetric pair is constructed
haftmann
parents: 27002
diff changeset
   111
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   112
(********************************* induction **********************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   113
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   114
fun make_ind descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   115
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   116
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   117
    val recTs = get_rec_types descr' sorts;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   118
    val pnames = if length descr' = 1 then ["P"]
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   119
      else map (fn i => "P" ^ string_of_int i) (1 upto length descr');
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   120
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   121
    fun make_pred i T =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   122
      let val T' = T --> HOLogic.boolT
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   123
      in Free (List.nth (pnames, i), T') end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   124
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   125
    fun make_ind_prem k T (cname, cargs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   126
      let
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   127
        fun mk_prem ((dt, s), T) =
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   128
          let val (Us, U) = strip_type T
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   129
          in list_all (map (pair "x") Us, HOLogic.mk_Trueprop
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   130
            (make_pred (body_index dt) U $ app_bnds (Free (s, T)) (length Us)))
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   131
          end;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   132
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33244
diff changeset
   133
        val recs = filter is_rec_type cargs;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   134
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   135
        val recTs' = map (typ_of_dtyp descr' sorts) recs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   136
        val tnames = Name.variant_list pnames (make_tnames Ts);
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33244
diff changeset
   137
        val rec_tnames = map fst (filter (is_rec_type o snd) (tnames ~~ cargs));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   138
        val frees = tnames ~~ Ts;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   139
        val prems = map mk_prem (recs ~~ rec_tnames ~~ recTs');
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   140
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   141
      in list_all_free (frees, Logic.list_implies (prems,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   142
        HOLogic.mk_Trueprop (make_pred k T $ 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   143
          list_comb (Const (cname, Ts ---> T), map Free frees))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   144
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   145
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   146
    val prems = maps (fn ((i, (_, _, constrs)), T) =>
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   147
      map (make_ind_prem i T) constrs) (descr' ~~ recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   148
    val tnames = make_tnames recTs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   149
    val concl = HOLogic.mk_Trueprop (foldr1 (HOLogic.mk_binop "op &")
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   150
      (map (fn (((i, _), T), tname) => make_pred i T $ Free (tname, T))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   151
        (descr' ~~ recTs ~~ tnames)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   152
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   153
  in Logic.list_implies (prems, concl) end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   154
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   155
(******************************* case distinction *****************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   156
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   157
fun make_casedists descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   158
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   159
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   160
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   161
    fun make_casedist_prem T (cname, cargs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   162
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   163
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   164
        val frees = Name.variant_list ["P", "y"] (make_tnames Ts) ~~ Ts;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   165
        val free_ts = map Free frees
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   166
      in list_all_free (frees, Logic.mk_implies (HOLogic.mk_Trueprop
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   167
        (HOLogic.mk_eq (Free ("y", T), list_comb (Const (cname, Ts ---> T), free_ts))),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   168
          HOLogic.mk_Trueprop (Free ("P", HOLogic.boolT))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   169
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   170
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   171
    fun make_casedist ((_, (_, _, constrs)), T) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   172
      let val prems = map (make_casedist_prem T) constrs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   173
      in Logic.list_implies (prems, HOLogic.mk_Trueprop (Free ("P", HOLogic.boolT)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   174
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   175
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   176
  in map make_casedist
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   177
    ((hd descr) ~~ Library.take (length (hd descr), get_rec_types descr' sorts))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   178
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   179
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   180
(*************** characteristic equations for primrec combinator **************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   181
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   182
fun make_primrec_Ts descr sorts used =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   183
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   184
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   185
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   186
    val rec_result_Ts = map TFree (Name.variant_list used (replicate (length descr') "'t") ~~
12338
de0f4a63baa5 renamed class "term" to "type" (actually "HOL.type");
wenzelm
parents: 11957
diff changeset
   187
      replicate (length descr') HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   188
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   189
    val reccomb_fn_Ts = maps (fn (i, (_, _, constrs)) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   190
      map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   191
        let
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   192
          val Ts = map (typ_of_dtyp descr' sorts) cargs;
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33244
diff changeset
   193
          val recs = filter (is_rec_type o fst) (cargs ~~ Ts);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   194
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   195
          fun mk_argT (dt, T) =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   196
            binder_types T ---> List.nth (rec_result_Ts, body_index dt);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   197
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   198
          val argTs = Ts @ map mk_argT recs
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   199
        in argTs ---> List.nth (rec_result_Ts, i)
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   200
        end) constrs) descr';
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   201
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   202
  in (rec_result_Ts, reccomb_fn_Ts) end;
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   203
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   204
fun make_primrecs new_type_names descr sorts thy =
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   205
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   206
    val descr' = flat descr;
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   207
    val recTs = get_rec_types descr' sorts;
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29270
diff changeset
   208
    val used = List.foldr OldTerm.add_typ_tfree_names [] recTs;
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   209
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   210
    val (rec_result_Ts, reccomb_fn_Ts) = make_primrec_Ts descr sorts used;
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   211
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   212
    val rec_fns = map (uncurry (mk_Free "f"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   213
      (reccomb_fn_Ts ~~ (1 upto (length reccomb_fn_Ts)));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   214
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   215
    val big_reccomb_name = (space_implode "_" new_type_names) ^ "_rec";
22578
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 21621
diff changeset
   216
    val reccomb_names = map (Sign.intern_const thy)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   217
      (if length descr' = 1 then [big_reccomb_name] else
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   218
        (map ((curry (op ^) (big_reccomb_name ^ "_")) o string_of_int)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   219
          (1 upto (length descr'))));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   220
    val reccombs = map (fn ((name, T), T') => list_comb
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   221
      (Const (name, reccomb_fn_Ts @ [T] ---> T'), rec_fns))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   222
        (reccomb_names ~~ recTs ~~ rec_result_Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   223
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 32952
diff changeset
   224
    fun make_primrec T comb_t (cname, cargs) (ts, f::fs) =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   225
      let
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33244
diff changeset
   226
        val recs = filter is_rec_type cargs;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   227
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   228
        val recTs' = map (typ_of_dtyp descr' sorts) recs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   229
        val tnames = make_tnames Ts;
33317
b4534348b8fd standardized filter/filter_out;
wenzelm
parents: 33244
diff changeset
   230
        val rec_tnames = map fst (filter (is_rec_type o snd) (tnames ~~ cargs));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   231
        val frees = map Free (tnames ~~ Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   232
        val frees' = map Free (rec_tnames ~~ recTs');
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   233
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   234
        fun mk_reccomb ((dt, T), t) =
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   235
          let val (Us, U) = strip_type T
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   236
          in list_abs (map (pair "x") Us,
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   237
            List.nth (reccombs, body_index dt) $ app_bnds t (length Us))
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   238
          end;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   239
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   240
        val reccombs' = map mk_reccomb (recs ~~ recTs' ~~ frees')
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   241
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   242
      in (ts @ [HOLogic.mk_Trueprop (HOLogic.mk_eq
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   243
        (comb_t $ list_comb (Const (cname, Ts ---> T), frees),
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   244
         list_comb (f, frees @ reccombs')))], fs)
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 32952
diff changeset
   245
      end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   246
33244
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 32952
diff changeset
   247
  in
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 32952
diff changeset
   248
    fold (fn ((dt, T), comb_t) => fold (make_primrec T comb_t) (#3 (snd dt)))
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 32952
diff changeset
   249
      (descr' ~~ recTs ~~ reccombs) ([], rec_fns)
db230399f890 Datatype.read_typ: standard argument order;
wenzelm
parents: 32952
diff changeset
   250
    |> fst
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   251
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   252
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   253
(****************** make terms of form  t_case f1 ... fn  *********************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   254
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   255
fun make_case_combs new_type_names descr sorts thy fname =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   256
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   257
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   258
    val recTs = get_rec_types descr' sorts;
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29270
diff changeset
   259
    val used = List.foldr OldTerm.add_typ_tfree_names [] recTs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   260
    val newTs = Library.take (length (hd descr), recTs);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   261
    val T' = TFree (Name.variant used "'t", HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   262
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   263
    val case_fn_Ts = map (fn (i, (_, _, constrs)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   264
      map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   265
        let val Ts = map (typ_of_dtyp descr' sorts) cargs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   266
        in Ts ---> T' end) constrs) (hd descr);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   267
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   268
    val case_names = map (fn s =>
22578
b0eb5652f210 removed obsolete sign_of/sign_of_thm;
wenzelm
parents: 21621
diff changeset
   269
      Sign.intern_const thy (s ^ "_case")) new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   270
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   271
    map (fn ((name, Ts), T) => list_comb
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   272
      (Const (name, Ts @ [T] ---> T'),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   273
        map (uncurry (mk_Free fname)) (Ts ~~ (1 upto length Ts))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   274
          (case_names ~~ case_fn_Ts ~~ newTs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   275
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   276
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   277
(**************** characteristic equations for case combinator ****************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   278
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   279
fun make_cases new_type_names descr sorts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   280
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   281
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   282
    val recTs = get_rec_types descr' sorts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   283
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   284
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   285
    fun make_case T comb_t ((cname, cargs), f) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   286
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   287
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   288
        val frees = map Free ((make_tnames Ts) ~~ Ts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   289
      in HOLogic.mk_Trueprop (HOLogic.mk_eq
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   290
        (comb_t $ list_comb (Const (cname, Ts ---> T), frees),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   291
         list_comb (f, frees)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   292
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   293
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   294
  in map (fn (((_, (_, _, constrs)), T), comb_t) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   295
    map (make_case T comb_t) (constrs ~~ (snd (strip_comb comb_t))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   296
      ((hd descr) ~~ newTs ~~ (make_case_combs new_type_names descr sorts thy "f"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   297
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   298
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   299
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   300
(*************************** the "split" - equations **************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   301
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   302
fun make_splits new_type_names descr sorts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   303
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   304
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   305
    val recTs = get_rec_types descr' sorts;
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29270
diff changeset
   306
    val used' = List.foldr OldTerm.add_typ_tfree_names [] recTs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   307
    val newTs = Library.take (length (hd descr), recTs);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   308
    val T' = TFree (Name.variant used' "'t", HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   309
    val P = Free ("P", T' --> HOLogic.boolT);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   310
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   311
    fun make_split (((_, (_, _, constrs)), T), comb_t) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   312
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   313
        val (_, fs) = strip_comb comb_t;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   314
        val used = ["P", "x"] @ (map (fst o dest_Free) fs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   315
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   316
        fun process_constr (((cname, cargs), f), (t1s, t2s)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   317
          let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   318
            val Ts = map (typ_of_dtyp descr' sorts) cargs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   319
            val frees = map Free (Name.variant_list used (make_tnames Ts) ~~ Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   320
            val eqn = HOLogic.mk_eq (Free ("x", T),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   321
              list_comb (Const (cname, Ts ---> T), frees));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   322
            val P' = P $ list_comb (f, frees)
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29270
diff changeset
   323
          in ((List.foldr (fn (Free (s, T), t) => HOLogic.mk_all (s, T, t))
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   324
                (HOLogic.imp $ eqn $ P') frees)::t1s,
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29270
diff changeset
   325
              (List.foldr (fn (Free (s, T), t) => HOLogic.mk_exists (s, T, t))
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   326
                (HOLogic.conj $ eqn $ (HOLogic.Not $ P')) frees)::t2s)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   327
          end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   328
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29270
diff changeset
   329
        val (t1s, t2s) = List.foldr process_constr ([], []) (constrs ~~ fs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   330
        val lhs = P $ (comb_t $ Free ("x", T))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   331
      in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   332
        (HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, mk_conj t1s)),
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
   333
         HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, HOLogic.Not $ mk_disj t2s)))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   334
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   335
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   336
  in map make_split ((hd descr) ~~ newTs ~~
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   337
    (make_case_combs new_type_names descr sorts thy "f"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   338
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   339
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   340
(************************* additional rules for TFL ***************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   341
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   342
fun make_weak_case_congs new_type_names descr sorts thy =
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   343
  let
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   344
    val case_combs = make_case_combs new_type_names descr sorts thy "f";
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   345
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   346
    fun mk_case_cong comb =
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   347
      let 
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   348
        val Type ("fun", [T, _]) = fastype_of comb;
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   349
        val M = Free ("M", T);
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   350
        val M' = Free ("M'", T);
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   351
      in
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   352
        Logic.mk_implies (HOLogic.mk_Trueprop (HOLogic.mk_eq (M, M')),
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   353
          HOLogic.mk_Trueprop (HOLogic.mk_eq (comb $ M, comb $ M')))
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   354
      end
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   355
  in
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   356
    map mk_case_cong case_combs
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   357
  end;
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   358
 
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   359
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   360
(*---------------------------------------------------------------------------
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   361
 * Structure of case congruence theorem looks like this:
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   362
 *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   363
 *    (M = M') 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   364
 *    ==> (!!x1,...,xk. (M' = C1 x1..xk) ==> (f1 x1..xk = g1 x1..xk)) 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   365
 *    ==> ... 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   366
 *    ==> (!!x1,...,xj. (M' = Cn x1..xj) ==> (fn x1..xj = gn x1..xj)) 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   367
 *    ==>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   368
 *      (ty_case f1..fn M = ty_case g1..gn M')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   369
 *---------------------------------------------------------------------------*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   370
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   371
fun make_case_congs new_type_names descr sorts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   372
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   373
    val case_combs = make_case_combs new_type_names descr sorts thy "f";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   374
    val case_combs' = make_case_combs new_type_names descr sorts thy "g";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   375
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   376
    fun mk_case_cong ((comb, comb'), (_, (_, _, constrs))) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   377
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   378
        val Type ("fun", [T, _]) = fastype_of comb;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   379
        val (_, fs) = strip_comb comb;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   380
        val (_, gs) = strip_comb comb';
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   381
        val used = ["M", "M'"] @ map (fst o dest_Free) (fs @ gs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   382
        val M = Free ("M", T);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   383
        val M' = Free ("M'", T);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   384
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   385
        fun mk_clause ((f, g), (cname, _)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   386
          let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   387
            val (Ts, _) = strip_type (fastype_of f);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   388
            val tnames = Name.variant_list used (make_tnames Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   389
            val frees = map Free (tnames ~~ Ts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   390
          in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   391
            list_all_free (tnames ~~ Ts, Logic.mk_implies
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   392
              (HOLogic.mk_Trueprop
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   393
                (HOLogic.mk_eq (M', list_comb (Const (cname, Ts ---> T), frees))),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   394
               HOLogic.mk_Trueprop
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   395
                (HOLogic.mk_eq (list_comb (f, frees), list_comb (g, frees)))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   396
          end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   397
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   398
      in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   399
        Logic.list_implies (HOLogic.mk_Trueprop (HOLogic.mk_eq (M, M')) ::
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   400
          map mk_clause (fs ~~ gs ~~ constrs),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   401
            HOLogic.mk_Trueprop (HOLogic.mk_eq (comb $ M, comb' $ M')))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   402
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   403
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   404
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   405
    map mk_case_cong (case_combs ~~ case_combs' ~~ hd descr)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   406
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   407
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   408
(*---------------------------------------------------------------------------
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   409
 * Structure of exhaustion theorem looks like this:
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   410
 *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   411
 *    !v. (? y1..yi. v = C1 y1..yi) | ... | (? y1..yj. v = Cn y1..yj)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   412
 *---------------------------------------------------------------------------*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   413
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   414
fun make_nchotomys descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   415
  let
32952
aeb1e44fbc19 replaced String.concat by implode;
wenzelm
parents: 31775
diff changeset
   416
    val descr' = flat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   417
    val recTs = get_rec_types descr' sorts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   418
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   419
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   420
    fun mk_eqn T (cname, cargs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   421
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   422
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   423
        val tnames = Name.variant_list ["v"] (make_tnames Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   424
        val frees = tnames ~~ Ts
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   425
      in
30190
479806475f3c use long names for old-style fold combinators;
wenzelm
parents: 29270
diff changeset
   426
        List.foldr (fn ((s, T'), t) => HOLogic.mk_exists (s, T', t))
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   427
          (HOLogic.mk_eq (Free ("v", T),
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   428
            list_comb (Const (cname, Ts ---> T), map Free frees))) frees
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   429
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   430
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   431
  in map (fn ((_, (_, _, constrs)), T) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   432
    HOLogic.mk_Trueprop (HOLogic.mk_all ("v", T, mk_disj (map (mk_eqn T) constrs))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   433
      (hd descr ~~ newTs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   434
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   435
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   436
end;