src/HOL/Tools/datatype_prop.ML
author wenzelm
Tue, 11 Jul 2006 12:16:54 +0200
changeset 20071 8f3e1ddb50e6
parent 19233 77ca20b0ed77
child 21078 101aefd61aac
permissions -rw-r--r--
replaced Term.variant(list) by Name.variant(_list);
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
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     2
    ID:         $Id$
11539
0f17da240450 tuned headers;
wenzelm
parents: 10911
diff changeset
     3
    Author:     Stefan Berghofer, TU Muenchen
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     4
11539
0f17da240450 tuned headers;
wenzelm
parents: 10911
diff changeset
     5
Characteristic properties of datatypes.
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     6
*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     7
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     8
signature DATATYPE_PROP =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
     9
sig
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    10
  val dtK : int ref
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    11
  val indexify_names: string list -> string list
13465
08e3fe248ba9 Exported function make_tnames.
berghofe
parents: 13340
diff changeset
    12
  val make_tnames: typ list -> string list
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    13
  val make_injs : DatatypeAux.descr list -> (string * sort) list -> term list list
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_distincts : 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 list list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    24
  val make_splits : 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 * term) list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    26
  val make_size : DatatypeAux.descr list -> (string * sort) list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    27
    theory -> term list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    28
  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
    29
    (string * sort) list -> theory -> term list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    30
  val make_case_congs : string list -> DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    31
    (string * sort) list -> theory -> term list
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    32
  val make_nchotomys : DatatypeAux.descr list ->
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
    33
    (string * sort) list -> term list
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    34
end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    35
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    36
structure DatatypeProp : DATATYPE_PROP =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    37
struct
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    38
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    39
open DatatypeAux;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    40
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    41
(*the kind of distinctiveness axioms depends on number of constructors*)
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
    42
val dtK = ref 7;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    43
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    44
fun indexify_names names =
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    45
  let
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    46
    fun index (x :: xs) tab =
17521
0f1c48de39f5 introduced AList module in favor of assoc etc.
haftmann
parents: 15574
diff changeset
    47
      (case AList.lookup (op =) tab x of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15459
diff changeset
    48
        NONE => if x mem xs then (x ^ "1") :: index xs ((x, 2) :: tab) else x :: index xs tab
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15459
diff changeset
    49
      | SOME i => (x ^ Library.string_of_int i) :: index xs ((x, i + 1) :: tab))
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    50
    | index [] _ = [];
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    51
  in index names [] end;
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    52
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    53
fun make_tnames Ts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    54
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    55
    fun type_name (TFree (name, _)) = implode (tl (explode name))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    56
      | type_name (Type (name, _)) = 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    57
          let val name' = Sign.base_name name
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    58
          in if Syntax.is_identifier name' then name' else "x" end;
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
    59
  in indexify_names (map type_name Ts) end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    60
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    61
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    62
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    63
(************************* injectivity of constructors ************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    64
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    65
fun make_injs descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    66
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    67
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    68
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    69
    fun make_inj T ((cname, cargs), injs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    70
      if null cargs then injs else
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    71
        let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    72
          val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    73
          val constr_t = Const (cname, Ts ---> T);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    74
          val tnames = make_tnames Ts;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    75
          val frees = map Free (tnames ~~ Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    76
          val frees' = map Free ((map ((op ^) o (rpair "'")) tnames) ~~ Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    77
        in (HOLogic.mk_Trueprop (HOLogic.mk_eq
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    78
          (HOLogic.mk_eq (list_comb (constr_t, frees), list_comb (constr_t, frees')),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    79
           foldr1 (HOLogic.mk_binop "op &")
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    80
             (map HOLogic.mk_eq (frees ~~ frees')))))::injs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    81
        end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    82
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
    83
  in map (fn (d, T) => foldr (make_inj T) [] (#3 (snd d)))
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    84
    ((hd descr) ~~ Library.take (length (hd descr), get_rec_types descr' sorts))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    85
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    86
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    87
(********************************* induction **********************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    88
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    89
fun make_ind descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    90
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    91
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    92
    val recTs = get_rec_types descr' sorts;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    93
    val pnames = if length descr' = 1 then ["P"]
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    94
      else map (fn i => "P" ^ string_of_int i) (1 upto length descr');
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    95
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    96
    fun make_pred i T =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    97
      let val T' = T --> HOLogic.boolT
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
    98
      in Free (List.nth (pnames, i), T') end;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
    99
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   100
    fun make_ind_prem k T (cname, cargs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   101
      let
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   102
        fun mk_prem ((dt, s), T) =
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   103
          let val (Us, U) = strip_type T
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   104
          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
   105
            (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
   106
          end;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   107
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   108
        val recs = List.filter is_rec_type cargs;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   109
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   110
        val recTs' = map (typ_of_dtyp descr' sorts) recs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   111
        val tnames = Name.variant_list pnames (make_tnames Ts);
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   112
        val rec_tnames = map fst (List.filter (is_rec_type o snd) (tnames ~~ cargs));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   113
        val frees = tnames ~~ Ts;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   114
        val prems = map mk_prem (recs ~~ rec_tnames ~~ recTs');
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   115
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   116
      in list_all_free (frees, Logic.list_implies (prems,
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   117
        HOLogic.mk_Trueprop (make_pred k T $ 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   118
          list_comb (Const (cname, Ts ---> T), map Free frees))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   119
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   120
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   121
    val prems = List.concat (map (fn ((i, (_, _, constrs)), T) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   122
      map (make_ind_prem i T) constrs) (descr' ~~ recTs));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   123
    val tnames = make_tnames recTs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   124
    val concl = HOLogic.mk_Trueprop (foldr1 (HOLogic.mk_binop "op &")
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   125
      (map (fn (((i, _), T), tname) => make_pred i T $ Free (tname, T))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   126
        (descr' ~~ recTs ~~ tnames)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   127
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   128
  in Logic.list_implies (prems, concl) end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   129
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   130
(******************************* case distinction *****************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   131
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   132
fun make_casedists descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   133
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   134
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   135
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   136
    fun make_casedist_prem T (cname, cargs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   137
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   138
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   139
        val frees = Name.variant_list ["P", "y"] (make_tnames Ts) ~~ Ts;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   140
        val free_ts = map Free frees
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   141
      in list_all_free (frees, Logic.mk_implies (HOLogic.mk_Trueprop
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   142
        (HOLogic.mk_eq (Free ("y", T), list_comb (Const (cname, Ts ---> T), free_ts))),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   143
          HOLogic.mk_Trueprop (Free ("P", HOLogic.boolT))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   144
      end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   145
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   146
    fun make_casedist ((_, (_, _, constrs)), T) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   147
      let val prems = map (make_casedist_prem T) constrs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   148
      in Logic.list_implies (prems, HOLogic.mk_Trueprop (Free ("P", HOLogic.boolT)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   149
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   150
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   151
  in map make_casedist
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   152
    ((hd descr) ~~ Library.take (length (hd descr), get_rec_types descr' sorts))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   153
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   154
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   155
(*************** characteristic equations for primrec combinator **************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   156
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   157
fun make_primrec_Ts descr sorts used =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   158
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   159
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   160
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   161
    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
   162
      replicate (length descr') HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   163
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   164
    val reccomb_fn_Ts = List.concat (map (fn (i, (_, _, constrs)) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   165
      map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   166
        let
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   167
          val Ts = map (typ_of_dtyp descr' sorts) cargs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   168
          val recs = List.filter (is_rec_type o fst) (cargs ~~ Ts);
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   169
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   170
          fun mk_argT (dt, T) =
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   171
            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
   172
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   173
          val argTs = Ts @ map mk_argT recs
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   174
        in argTs ---> List.nth (rec_result_Ts, i)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   175
        end) constrs) descr');
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   176
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   177
  in (rec_result_Ts, reccomb_fn_Ts) end;
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   178
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   179
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
   180
  let
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   181
    val sign = Theory.sign_of thy;
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   182
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   183
    val descr' = List.concat descr;
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   184
    val recTs = get_rec_types descr' sorts;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   185
    val used = foldr add_typ_tfree_names [] recTs;
15459
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   186
16dd63c78049 Introduced function DatatypeProp.make_primrec_Ts to avoid code duplication.
berghofe
parents: 14981
diff changeset
   187
    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
   188
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   189
    val rec_fns = map (uncurry (mk_Free "f"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   190
      (reccomb_fn_Ts ~~ (1 upto (length reccomb_fn_Ts)));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   191
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   192
    val big_reccomb_name = (space_implode "_" new_type_names) ^ "_rec";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   193
    val reccomb_names = map (Sign.intern_const sign)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   194
      (if length descr' = 1 then [big_reccomb_name] else
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   195
        (map ((curry (op ^) (big_reccomb_name ^ "_")) o string_of_int)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   196
          (1 upto (length descr'))));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   197
    val reccombs = map (fn ((name, T), T') => list_comb
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   198
      (Const (name, reccomb_fn_Ts @ [T] ---> T'), rec_fns))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   199
        (reccomb_names ~~ recTs ~~ rec_result_Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   200
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   201
    fun make_primrec T comb_t ((ts, f::fs), (cname, cargs)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   202
      let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   203
        val recs = List.filter is_rec_type cargs;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   204
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   205
        val recTs' = map (typ_of_dtyp descr' sorts) recs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   206
        val tnames = make_tnames Ts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   207
        val rec_tnames = map fst (List.filter (is_rec_type o snd) (tnames ~~ cargs));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   208
        val frees = map Free (tnames ~~ Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   209
        val frees' = map Free (rec_tnames ~~ recTs');
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   210
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   211
        fun mk_reccomb ((dt, T), t) =
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   212
          let val (Us, U) = strip_type T
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   213
          in list_abs (map (pair "x") Us,
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   214
            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
   215
          end;
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   216
13641
63d1790a43ed Reimplemented parts of datatype package dealing with datatypes involving
berghofe
parents: 13585
diff changeset
   217
        val reccombs' = map mk_reccomb (recs ~~ recTs' ~~ frees')
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   218
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   219
      in (ts @ [HOLogic.mk_Trueprop (HOLogic.mk_eq
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   220
        (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
   221
         list_comb (f, frees @ reccombs')))], fs)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   222
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   223
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   224
  in fst (Library.foldl (fn (x, ((dt, T), comb_t)) =>
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   225
    Library.foldl (make_primrec T comb_t) (x, #3 (snd dt)))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   226
      (([], rec_fns), descr' ~~ recTs ~~ reccombs))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   227
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   228
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   229
(****************** make terms of form  t_case f1 ... fn  *********************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   230
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   231
fun make_case_combs new_type_names descr sorts thy fname =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   232
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   233
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   234
    val recTs = get_rec_types descr' sorts;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   235
    val used = foldr add_typ_tfree_names [] recTs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   236
    val newTs = Library.take (length (hd descr), recTs);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   237
    val T' = TFree (Name.variant used "'t", HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   238
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   239
    val case_fn_Ts = map (fn (i, (_, _, constrs)) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   240
      map (fn (_, cargs) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   241
        let val Ts = map (typ_of_dtyp descr' sorts) cargs
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   242
        in Ts ---> T' end) constrs) (hd descr);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   243
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   244
    val case_names = map (fn s =>
6394
3d9fd50fcc43 Theory.sign_of;
wenzelm
parents: 5695
diff changeset
   245
      Sign.intern_const (Theory.sign_of thy) (s ^ "_case")) new_type_names
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   246
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   247
    map (fn ((name, Ts), T) => list_comb
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   248
      (Const (name, Ts @ [T] ---> T'),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   249
        map (uncurry (mk_Free fname)) (Ts ~~ (1 upto length Ts))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   250
          (case_names ~~ case_fn_Ts ~~ newTs)
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
(**************** characteristic equations for case combinator ****************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   254
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   255
fun make_cases new_type_names descr sorts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   256
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   257
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   258
    val recTs = get_rec_types descr' sorts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   259
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   260
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   261
    fun make_case T comb_t ((cname, cargs), f) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   262
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   263
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   264
        val frees = map Free ((make_tnames Ts) ~~ Ts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   265
      in HOLogic.mk_Trueprop (HOLogic.mk_eq
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   266
        (comb_t $ list_comb (Const (cname, Ts ---> T), frees),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   267
         list_comb (f, frees)))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   268
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   269
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   270
  in map (fn (((_, (_, _, constrs)), T), comb_t) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   271
    map (make_case T comb_t) (constrs ~~ (snd (strip_comb comb_t))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   272
      ((hd descr) ~~ newTs ~~ (make_case_combs new_type_names descr sorts thy "f"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   273
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   274
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   275
(************************* distinctness of constructors ***********************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   276
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   277
fun make_distincts new_type_names descr sorts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   278
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   279
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   280
    val recTs = get_rec_types descr' sorts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   281
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   282
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   283
    (**** number of constructors < dtK : C_i ... ~= C_j ... ****)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   284
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   285
    fun make_distincts_1 _ [] = []
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   286
      | make_distincts_1 T ((cname, cargs)::constrs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   287
          let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   288
            val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   289
            val frees = map Free ((make_tnames Ts) ~~ Ts);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   290
            val t = list_comb (Const (cname, Ts ---> T), frees);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   291
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   292
            fun make_distincts' [] = []
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   293
              | make_distincts' ((cname', cargs')::constrs') =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   294
                  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   295
                    val Ts' = map (typ_of_dtyp descr' sorts) cargs';
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   296
                    val frees' = map Free ((map ((op ^) o (rpair "'"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   297
                      (make_tnames Ts')) ~~ Ts');
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   298
                    val t' = list_comb (Const (cname', Ts' ---> T), frees')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   299
                  in
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
   300
                    (HOLogic.mk_Trueprop (HOLogic.Not $ HOLogic.mk_eq (t, t')))::
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
   301
                    (HOLogic.mk_Trueprop (HOLogic.Not $ HOLogic.mk_eq (t', t)))::
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   302
                      (make_distincts' constrs')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   303
                  end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   304
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   305
          in (make_distincts' constrs) @ (make_distincts_1 T constrs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   306
          end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   307
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   308
  in map (fn (((_, (_, _, constrs)), T), tname) =>
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   309
      if length constrs < !dtK then make_distincts_1 T constrs else [])
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   310
        ((hd descr) ~~ newTs ~~ new_type_names)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   311
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   312
7015
85be09eb136c - Datatype package now also supports arbitrarily branching datatypes
berghofe
parents: 6394
diff changeset
   313
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   314
(*************************** the "split" - equations **************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   315
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   316
fun make_splits new_type_names descr sorts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   317
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   318
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   319
    val recTs = get_rec_types descr' sorts;
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   320
    val used' = foldr add_typ_tfree_names [] recTs;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   321
    val newTs = Library.take (length (hd descr), recTs);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   322
    val T' = TFree (Name.variant used' "'t", HOLogic.typeS);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   323
    val P = Free ("P", T' --> HOLogic.boolT);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   324
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   325
    fun make_split (((_, (_, _, constrs)), T), comb_t) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   326
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   327
        val (_, fs) = strip_comb comb_t;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   328
        val used = ["P", "x"] @ (map (fst o dest_Free) fs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   329
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   330
        fun process_constr (((cname, cargs), f), (t1s, t2s)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   331
          let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   332
            val Ts = map (typ_of_dtyp descr' sorts) cargs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   333
            val frees = map Free (Name.variant_list used (make_tnames Ts) ~~ Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   334
            val eqn = HOLogic.mk_eq (Free ("x", T),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   335
              list_comb (Const (cname, Ts ---> T), frees));
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   336
            val P' = P $ list_comb (f, frees)
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   337
          in ((foldr (fn (Free (s, T), t) => HOLogic.mk_all (s, T, t))
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   338
                (HOLogic.imp $ eqn $ P') frees)::t1s,
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   339
              (foldr (fn (Free (s, T), t) => HOLogic.mk_exists (s, T, t))
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   340
                (HOLogic.conj $ eqn $ (HOLogic.Not $ P')) frees)::t2s)
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   341
          end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   342
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   343
        val (t1s, t2s) = foldr process_constr ([], []) (constrs ~~ fs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   344
        val lhs = P $ (comb_t $ Free ("x", T))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   345
      in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   346
        (HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, mk_conj t1s)),
8434
5e4bba59bfaa use HOLogic.Not;
wenzelm
parents: 7704
diff changeset
   347
         HOLogic.mk_Trueprop (HOLogic.mk_eq (lhs, HOLogic.Not $ mk_disj t2s)))
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   348
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   349
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   350
  in map make_split ((hd descr) ~~ newTs ~~
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   351
    (make_case_combs new_type_names descr sorts thy "f"))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   352
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   353
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   354
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   355
(******************************* size functions *******************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   356
9739
8470c4662685 Improved names for size function.
berghofe
parents: 9060
diff changeset
   357
fun make_size descr sorts thy =
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   358
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   359
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   360
    val recTs = get_rec_types descr' sorts;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   361
11957
f1657e0291ca hardwire qualified const names;
wenzelm
parents: 11539
diff changeset
   362
    val size_name = "Nat.size";
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   363
    val size_names = replicate (length (hd descr)) size_name @
9739
8470c4662685 Improved names for size function.
berghofe
parents: 9060
diff changeset
   364
      map (Sign.intern_const (Theory.sign_of thy)) (indexify_names
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   365
        (map (fn T => name_of_typ T ^ "_size") (Library.drop (length (hd descr), recTs))));
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   366
    val size_consts = map (fn (s, T) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   367
      Const (s, T --> HOLogic.natT)) (size_names ~~ recTs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   368
19233
77ca20b0ed77 renamed HOL + - * etc. to HOL.plus HOL.minus HOL.times etc.
haftmann
parents: 17521
diff changeset
   369
    fun plus (t1, t2) = Const ("HOL.plus", [HOLogic.natT, HOLogic.natT] ---> HOLogic.natT) $ t1 $ t2;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   370
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   371
    fun make_size_eqn size_const T (cname, cargs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   372
      let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   373
        val recs = List.filter is_rec_type cargs;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   374
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   375
        val recTs = map (typ_of_dtyp descr' sorts) recs;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   376
        val tnames = make_tnames Ts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   377
        val rec_tnames = map fst (List.filter (is_rec_type o snd) (tnames ~~ cargs));
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   378
        val ts = map (fn ((r, s), T) => List.nth (size_consts, dest_DtRec r) $
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   379
          Free (s, T)) (recs ~~ rec_tnames ~~ recTs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   380
        val t = if ts = [] then HOLogic.zero else
7704
9a6783fdb9a5 eliminated ap/app;
wenzelm
parents: 7015
diff changeset
   381
          foldl1 plus (ts @ [HOLogic.mk_nat 1])
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   382
      in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   383
        HOLogic.mk_Trueprop (HOLogic.mk_eq (size_const $
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   384
          list_comb (Const (cname, Ts ---> T), map Free (tnames ~~ Ts)), t))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   385
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   386
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   387
  in
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   388
    List.concat (map (fn (((_, (_, _, constrs)), size_const), T) =>
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   389
      map (make_size_eqn size_const T) constrs) (descr' ~~ size_consts ~~ recTs))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   390
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   391
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   392
(************************* additional rules for TFL ***************************)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   393
8601
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   394
fun make_weak_case_congs new_type_names descr sorts thy =
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   395
  let
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   396
    val case_combs = make_case_combs new_type_names descr sorts thy "f";
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   397
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   398
    fun mk_case_cong comb =
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   399
      let 
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   400
        val Type ("fun", [T, _]) = fastype_of comb;
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   401
        val M = Free ("M", T);
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   402
        val M' = Free ("M'", T);
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   403
      in
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   404
        Logic.mk_implies (HOLogic.mk_Trueprop (HOLogic.mk_eq (M, M')),
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   405
          HOLogic.mk_Trueprop (HOLogic.mk_eq (comb $ M, comb $ M')))
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   406
      end
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   407
  in
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   408
    map mk_case_cong case_combs
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   409
  end;
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   410
 
8fb3a81b4ccf added weak_case_cong feature
nipkow
parents: 8434
diff changeset
   411
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   412
(*---------------------------------------------------------------------------
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   413
 * Structure of case congruence theorem looks like this:
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   414
 *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   415
 *    (M = M') 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   416
 *    ==> (!!x1,...,xk. (M' = C1 x1..xk) ==> (f1 x1..xk = g1 x1..xk)) 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   417
 *    ==> ... 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   418
 *    ==> (!!x1,...,xj. (M' = Cn x1..xj) ==> (fn x1..xj = gn x1..xj)) 
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   419
 *    ==>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   420
 *      (ty_case f1..fn M = ty_case g1..gn M')
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   421
 *---------------------------------------------------------------------------*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   422
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   423
fun make_case_congs new_type_names descr sorts thy =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   424
  let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   425
    val case_combs = make_case_combs new_type_names descr sorts thy "f";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   426
    val case_combs' = make_case_combs new_type_names descr sorts thy "g";
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   427
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   428
    fun mk_case_cong ((comb, comb'), (_, (_, _, constrs))) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   429
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   430
        val Type ("fun", [T, _]) = fastype_of comb;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   431
        val (_, fs) = strip_comb comb;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   432
        val (_, gs) = strip_comb comb';
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   433
        val used = ["M", "M'"] @ map (fst o dest_Free) (fs @ gs);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   434
        val M = Free ("M", T);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   435
        val M' = Free ("M'", T);
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   436
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   437
        fun mk_clause ((f, g), (cname, _)) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   438
          let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   439
            val (Ts, _) = strip_type (fastype_of f);
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   440
            val tnames = Name.variant_list used (make_tnames Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   441
            val frees = map Free (tnames ~~ Ts)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   442
          in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   443
            list_all_free (tnames ~~ Ts, Logic.mk_implies
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   444
              (HOLogic.mk_Trueprop
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   445
                (HOLogic.mk_eq (M', list_comb (Const (cname, Ts ---> T), frees))),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   446
               HOLogic.mk_Trueprop
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   447
                (HOLogic.mk_eq (list_comb (f, frees), list_comb (g, frees)))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   448
          end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   449
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   450
      in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   451
        Logic.list_implies (HOLogic.mk_Trueprop (HOLogic.mk_eq (M, M')) ::
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   452
          map mk_clause (fs ~~ gs ~~ constrs),
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   453
            HOLogic.mk_Trueprop (HOLogic.mk_eq (comb $ M, comb' $ M')))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   454
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   455
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   456
  in
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   457
    map mk_case_cong (case_combs ~~ case_combs' ~~ hd descr)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   458
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   459
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   460
(*---------------------------------------------------------------------------
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   461
 * Structure of exhaustion theorem looks like this:
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   462
 *
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   463
 *    !v. (? y1..yi. v = C1 y1..yi) | ... | (? y1..yj. v = Cn y1..yj)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   464
 *---------------------------------------------------------------------------*)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   465
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   466
fun make_nchotomys descr sorts =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   467
  let
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   468
    val descr' = List.concat descr;
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   469
    val recTs = get_rec_types descr' sorts;
15570
8d8c70b41bab Move towards standard functions.
skalberg
parents: 15531
diff changeset
   470
    val newTs = Library.take (length (hd descr), recTs);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   471
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   472
    fun mk_eqn T (cname, cargs) =
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   473
      let
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   474
        val Ts = map (typ_of_dtyp descr' sorts) cargs;
20071
8f3e1ddb50e6 replaced Term.variant(list) by Name.variant(_list);
wenzelm
parents: 19233
diff changeset
   475
        val tnames = Name.variant_list ["v"] (make_tnames Ts);
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   476
        val frees = tnames ~~ Ts
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   477
      in
15574
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   478
        foldr (fn ((s, T'), t) => HOLogic.mk_exists (s, T', t))
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   479
          (HOLogic.mk_eq (Free ("v", T),
b1d1b5bfc464 Removed practically all references to Library.foldr.
skalberg
parents: 15570
diff changeset
   480
            list_comb (Const (cname, Ts ---> T), map Free frees))) frees
5177
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   481
      end
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   482
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   483
  in map (fn ((_, (_, _, constrs)), T) =>
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   484
    HOLogic.mk_Trueprop (HOLogic.mk_all ("v", T, mk_disj (map (mk_eqn T) constrs))))
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   485
      (hd descr ~~ newTs)
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   486
  end;
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   487
0d3a168e4d44 New datatype definition package
berghofe
parents:
diff changeset
   488
end;