src/HOL/List.thy
author paulson
Tue, 20 May 1997 11:39:32 +0200
changeset 3236 882e125ed7da
parent 3196 c522bc46aea7
child 3320 3a5e4930fb77
permissions -rw-r--r--
New pattern-matching definition of pred_nat
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     1
(*  Title:      HOL/List.thy
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     3
    Author:     Tobias Nipkow
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1994 TU Muenchen
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 2369
diff changeset
     6
The datatype of finite lists.
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     9
List = Arith +
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    10
977
5d57287e5e1e changed syntax of datatype declarations (curried types for constructor
clasohm
parents: 965
diff changeset
    11
datatype 'a list = "[]" ("[]") | "#" 'a ('a list) (infixr 65)
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    12
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    13
consts
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 2738
diff changeset
    14
  pred_list  :: "('a list * 'a list) set"
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    15
  "@"         :: ['a list, 'a list] => 'a list            (infixr 65)
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    16
  filter      :: ['a => bool, 'a list] => 'a list
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    17
  concat      :: 'a list list => 'a list
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    18
  foldl       :: [['b,'a] => 'b, 'b, 'a list] => 'b
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    19
  hd          :: 'a list => 'a
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    20
  length      :: 'a list => nat
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    21
  set_of_list :: 'a list => 'a set
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    22
  list_all    :: ('a => bool) => ('a list => bool)
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    23
  map         :: ('a=>'b) => ('a list => 'b list)
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    24
  mem         :: ['a, 'a list] => bool                    (infixl 55)
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    25
  nth         :: [nat, 'a list] => 'a
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    26
  take, drop  :: [nat, 'a list] => 'a list
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    27
  takeWhile,
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    28
  dropWhile   :: ('a => bool) => 'a list => 'a list
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    29
  tl,ttl      :: 'a list => 'a list
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    30
  rev         :: 'a list => 'a list
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    31
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    32
syntax
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    33
  (* list Enumeration *)
2262
c7ee913746fd added symbols syntax;
wenzelm
parents: 1908
diff changeset
    34
  "@list"     :: args => 'a list                          ("[(_)]")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    35
2512
0231e4f467f2 Got rid of Alls in List.
nipkow
parents: 2369
diff changeset
    36
  (* Special syntax for filter *)
2262
c7ee913746fd added symbols syntax;
wenzelm
parents: 1908
diff changeset
    37
  "@filter"   :: [idt, 'a list, bool] => 'a list          ("(1[_:_ ./ _])")
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    38
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    39
translations
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    40
  "[x, xs]"     == "x#[xs]"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    41
  "[x]"         == "x#[]"
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 1419
diff changeset
    42
  "[x:xs . P]"  == "filter (%x.P) xs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    43
2262
c7ee913746fd added symbols syntax;
wenzelm
parents: 1908
diff changeset
    44
syntax (symbols)
c7ee913746fd added symbols syntax;
wenzelm
parents: 1908
diff changeset
    45
  "@filter"   :: [idt, 'a list, bool] => 'a list          ("(1[_\\<in>_ ./ _])")
c7ee913746fd added symbols syntax;
wenzelm
parents: 1908
diff changeset
    46
c7ee913746fd added symbols syntax;
wenzelm
parents: 1908
diff changeset
    47
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 2738
diff changeset
    48
rules
c522bc46aea7 Added pred_list for TFL
paulson
parents: 2738
diff changeset
    49
  pred_list_def "pred_list == {(x,y). ? h. y = h#x}"
c522bc46aea7 Added pred_list for TFL
paulson
parents: 2738
diff changeset
    50
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    51
primrec hd list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    52
  "hd([]) = (@x.False)"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    53
  "hd(x#xs) = x"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    54
primrec tl list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    55
  "tl([]) = (@x.False)"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    56
  "tl(x#xs) = xs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    57
primrec ttl list
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    58
  (* a "total" version of tl: *)
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    59
  "ttl([]) = []"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    60
  "ttl(x#xs) = xs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    61
primrec "op mem" list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    62
  "x mem [] = False"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    63
  "x mem (y#ys) = (if y=x then True else x mem ys)"
1908
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    64
primrec set_of_list list
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    65
  "set_of_list [] = {}"
55d8e38262a8 Renamed setOfList to set_of_list
paulson
parents: 1898
diff changeset
    66
  "set_of_list (x#xs) = insert x (set_of_list xs)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    67
primrec list_all list
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    68
  list_all_Nil  "list_all P [] = True"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    69
  list_all_Cons "list_all P (x#xs) = (P(x) & list_all P xs)"
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    70
primrec map list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    71
  "map f [] = []"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    72
  "map f (x#xs) = f(x)#map f xs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    73
primrec "op @" list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    74
  "[] @ ys = ys"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    75
  "(x#xs)@ys = x#(xs@ys)"
1169
5873833cf37f Added function rev and its properties length_rev, etc.
lcp
parents: 977
diff changeset
    76
primrec rev list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    77
  "rev([]) = []"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    78
  "rev(x#xs) = rev(xs) @ [x]"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    79
primrec filter list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    80
  "filter P [] = []"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    81
  "filter P (x#xs) = (if P x then x#filter P xs else filter P xs)"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    82
primrec foldl list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    83
  "foldl f a [] = a"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    84
  "foldl f a (x#xs) = foldl f (f a x) xs"
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
    85
primrec length list
1898
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    86
  "length([]) = 0"
260a9711f507 Simplified primrec definitions.
berghofe
parents: 1824
diff changeset
    87
  "length(x#xs) = Suc(length(xs))"
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    88
primrec concat list
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    89
  "concat([]) = []"
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
    90
  "concat(x#xs) = x @ concat(xs)"
1419
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1370
diff changeset
    91
primrec drop list
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1370
diff changeset
    92
  drop_Nil  "drop n [] = []"
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1370
diff changeset
    93
  drop_Cons "drop n (x#xs) = (case n of 0 => x#xs | Suc(m) => drop m xs)"
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1370
diff changeset
    94
primrec take list
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1370
diff changeset
    95
  take_Nil  "take n [] = []"
a6a034a47a71 defined take/drop by induction over list rather than nat.
nipkow
parents: 1370
diff changeset
    96
  take_Cons "take n (x#xs) = (case n of 0 => [] | Suc(m) => x # take m xs)"
2738
e28a0668dbfe primrec definition for nth
pusch
parents: 2608
diff changeset
    97
primrec nth nat
e28a0668dbfe primrec definition for nth
pusch
parents: 2608
diff changeset
    98
  "nth 0 xs = hd xs"
e28a0668dbfe primrec definition for nth
pusch
parents: 2608
diff changeset
    99
  "nth (Suc n) xs = nth n (tl xs)"
2608
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   100
primrec takeWhile list
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   101
  "takeWhile P [] = []"
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   102
  "takeWhile P (x#xs) = (if P x then x#takeWhile P xs else [])"
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   103
primrec dropWhile list
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   104
  "dropWhile P [] = []"
450c9b682a92 New class "order" and accompanying changes.
nipkow
parents: 2512
diff changeset
   105
  "dropWhile P (x#xs) = (if P x then dropWhile P xs else xs)"
3196
c522bc46aea7 Added pred_list for TFL
paulson
parents: 2738
diff changeset
   106
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
   107
end