src/HOL/Library/RBT.thy
author bulwahn
Thu, 07 Jul 2011 23:33:14 +0200
changeset 43704 47b0be18ccbe
parent 43124 fdb7e1d5f762
child 45694 4a8743618257
permissions -rw-r--r--
floor and ceiling definitions are not code equations -- this enables trivial evaluation of floor and ceiling
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
     1
(* Author: Florian Haftmann, TU Muenchen *)
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
     2
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
     3
header {* Abstract type of Red-Black Trees *}
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
     4
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
     5
(*<*)
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
     6
theory RBT
43124
fdb7e1d5f762 splitting RBT theory into RBT and RBT_Mapping
bulwahn
parents: 40612
diff changeset
     7
imports Main RBT_Impl
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
     8
begin
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
     9
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    10
subsection {* Type definition *}
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    11
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    12
typedef (open) ('a, 'b) rbt = "{t :: ('a\<Colon>linorder, 'b) RBT_Impl.rbt. is_rbt t}"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    13
  morphisms impl_of RBT
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    14
proof -
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    15
  have "RBT_Impl.Empty \<in> ?rbt" by simp
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    16
  then show ?thesis ..
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    17
qed
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    18
39380
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    19
lemma rbt_eq_iff:
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    20
  "t1 = t2 \<longleftrightarrow> impl_of t1 = impl_of t2"
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    21
  by (simp add: impl_of_inject)
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    22
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    23
lemma rbt_eqI:
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    24
  "impl_of t1 = impl_of t2 \<Longrightarrow> t1 = t2"
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    25
  by (simp add: rbt_eq_iff)
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    26
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    27
lemma is_rbt_impl_of [simp, intro]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    28
  "is_rbt (impl_of t)"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    29
  using impl_of [of t] by simp
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    30
39380
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
    31
lemma RBT_impl_of [simp, code abstype]:
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    32
  "RBT (impl_of t) = t"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    33
  by (simp add: impl_of_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    34
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    35
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    36
subsection {* Primitive operations *}
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    37
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    38
definition lookup :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'a \<rightharpoonup> 'b" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    39
  [code]: "lookup t = RBT_Impl.lookup (impl_of t)"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    40
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    41
definition empty :: "('a\<Colon>linorder, 'b) rbt" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    42
  "empty = RBT RBT_Impl.Empty"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    43
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    44
lemma impl_of_empty [code abstract]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    45
  "impl_of empty = RBT_Impl.Empty"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    46
  by (simp add: empty_def RBT_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    47
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    48
definition insert :: "'a\<Colon>linorder \<Rightarrow> 'b \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    49
  "insert k v t = RBT (RBT_Impl.insert k v (impl_of t))"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    50
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    51
lemma impl_of_insert [code abstract]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    52
  "impl_of (insert k v t) = RBT_Impl.insert k v (impl_of t)"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    53
  by (simp add: insert_def RBT_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    54
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    55
definition delete :: "'a\<Colon>linorder \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    56
  "delete k t = RBT (RBT_Impl.delete k (impl_of t))"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    57
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    58
lemma impl_of_delete [code abstract]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    59
  "impl_of (delete k t) = RBT_Impl.delete k (impl_of t)"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    60
  by (simp add: delete_def RBT_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    61
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    62
definition entries :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a \<times> 'b) list" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    63
  [code]: "entries t = RBT_Impl.entries (impl_of t)"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    64
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    65
definition keys :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'a list" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    66
  [code]: "keys t = RBT_Impl.keys (impl_of t)"
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
    67
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    68
definition bulkload :: "('a\<Colon>linorder \<times> 'b) list \<Rightarrow> ('a, 'b) rbt" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    69
  "bulkload xs = RBT (RBT_Impl.bulkload xs)"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    70
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    71
lemma impl_of_bulkload [code abstract]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    72
  "impl_of (bulkload xs) = RBT_Impl.bulkload xs"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    73
  by (simp add: bulkload_def RBT_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    74
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    75
definition map_entry :: "'a \<Rightarrow> ('b \<Rightarrow> 'b) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a, 'b) rbt" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    76
  "map_entry k f t = RBT (RBT_Impl.map_entry k f (impl_of t))"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    77
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    78
lemma impl_of_map_entry [code abstract]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    79
  "impl_of (map_entry k f t) = RBT_Impl.map_entry k f (impl_of t)"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    80
  by (simp add: map_entry_def RBT_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    81
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    82
definition map :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a, 'b) rbt" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    83
  "map f t = RBT (RBT_Impl.map f (impl_of t))"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    84
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    85
lemma impl_of_map [code abstract]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    86
  "impl_of (map f t) = RBT_Impl.map f (impl_of t)"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    87
  by (simp add: map_def RBT_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    88
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    89
definition fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'c \<Rightarrow> 'c" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    90
  [code]: "fold f t = RBT_Impl.fold f (impl_of t)"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    91
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    92
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    93
subsection {* Derived operations *}
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    94
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    95
definition is_empty :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> bool" where
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
    96
  [code]: "is_empty t = (case impl_of t of RBT_Impl.Empty \<Rightarrow> True | _ \<Rightarrow> False)"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    97
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    98
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
    99
subsection {* Abstract lookup properties *}
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   100
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   101
lemma lookup_RBT:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   102
  "is_rbt t \<Longrightarrow> lookup (RBT t) = RBT_Impl.lookup t"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   103
  by (simp add: lookup_def RBT_inverse)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   104
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   105
lemma lookup_impl_of:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   106
  "RBT_Impl.lookup (impl_of t) = lookup t"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   107
  by (simp add: lookup_def)
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   108
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   109
lemma entries_impl_of:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   110
  "RBT_Impl.entries (impl_of t) = entries t"
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   111
  by (simp add: entries_def)
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   112
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   113
lemma keys_impl_of:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   114
  "RBT_Impl.keys (impl_of t) = keys t"
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   115
  by (simp add: keys_def)
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   116
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   117
lemma lookup_empty [simp]:
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   118
  "lookup empty = Map.empty"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   119
  by (simp add: empty_def lookup_RBT fun_eq_iff)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   120
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   121
lemma lookup_insert [simp]:
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   122
  "lookup (insert k v t) = (lookup t)(k \<mapsto> v)"
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   123
  by (simp add: insert_def lookup_RBT lookup_insert lookup_impl_of)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   124
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   125
lemma lookup_delete [simp]:
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   126
  "lookup (delete k t) = (lookup t)(k := None)"
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   127
  by (simp add: delete_def lookup_RBT RBT_Impl.lookup_delete lookup_impl_of restrict_complement_singleton_eq)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   128
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   129
lemma map_of_entries [simp]:
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   130
  "map_of (entries t) = lookup t"
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   131
  by (simp add: entries_def map_of_entries lookup_impl_of)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   132
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   133
lemma entries_lookup:
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   134
  "entries t1 = entries t2 \<longleftrightarrow> lookup t1 = lookup t2"
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   135
  by (simp add: entries_def lookup_def entries_lookup)
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   136
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   137
lemma lookup_bulkload [simp]:
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   138
  "lookup (bulkload xs) = map_of xs"
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   139
  by (simp add: bulkload_def lookup_RBT RBT_Impl.lookup_bulkload)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   140
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   141
lemma lookup_map_entry [simp]:
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   142
  "lookup (map_entry k f t) = (lookup t)(k := Option.map f (lookup t k))"
37027
98bfff1d159d implement Mapping.map_entry
haftmann
parents: 36245
diff changeset
   143
  by (simp add: map_entry_def lookup_RBT RBT_Impl.lookup_map_entry lookup_impl_of)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   144
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   145
lemma lookup_map [simp]:
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   146
  "lookup (map f t) k = Option.map (f k) (lookup t k)"
40612
7ae5b89d8913 proper qualification needed due to shadowing on theory merge
haftmann
parents: 39380
diff changeset
   147
  by (simp add: map_def lookup_RBT RBT_Impl.lookup_map lookup_impl_of)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   148
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   149
lemma fold_fold:
37462
802619d7576d prefer fold over foldl
haftmann
parents: 37053
diff changeset
   150
  "fold f t = More_List.fold (prod_case f) (entries t)"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   151
  by (simp add: fold_def fun_eq_iff RBT_Impl.fold_def entries_impl_of)
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   152
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   153
lemma is_empty_empty [simp]:
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   154
  "is_empty t \<longleftrightarrow> t = empty"
39380
5a2662c1e44a established emerging canonical names *_eqI and *_eq_iff
haftmann
parents: 39302
diff changeset
   155
  by (simp add: rbt_eq_iff is_empty_def impl_of_empty split: rbt.split)
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   156
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   157
lemma RBT_lookup_empty [simp]: (*FIXME*)
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   158
  "RBT_Impl.lookup t = Map.empty \<longleftrightarrow> t = RBT_Impl.Empty"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
   159
  by (cases t) (auto simp add: fun_eq_iff)
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   160
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   161
lemma lookup_empty_empty [simp]:
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   162
  "lookup t = Map.empty \<longleftrightarrow> t = empty"
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   163
  by (cases t) (simp add: empty_def lookup_def RBT_inject RBT_inverse)
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   164
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   165
lemma sorted_keys [iff]:
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   166
  "sorted (keys t)"
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   167
  by (simp add: keys_def RBT_Impl.keys_def sorted_entries)
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   168
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   169
lemma distinct_keys [iff]:
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   170
  "distinct (keys t)"
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 36111
diff changeset
   171
  by (simp add: keys_def RBT_Impl.keys_def distinct_entries)
36111
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   172
5844017e31f8 implementation of mappings by rbts
haftmann
parents: 35617
diff changeset
   173
35617
a6528fb99641 added Table.thy
haftmann
parents:
diff changeset
   174
end