src/HOL/Library/RBT_Impl.thy
author wenzelm
Sun, 05 Aug 2012 20:11:32 +0200
changeset 48683 eeb4480b5877
parent 48621 877df57629e3
child 49480 4632b867fba7
permissions -rw-r--r--
more on isabelle mkroot;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47455
26315a545e26 updated headers;
wenzelm
parents: 47450
diff changeset
     1
(*  Title:      HOL/Library/RBT_Impl.thy
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
     2
    Author:     Markus Reiter, TU Muenchen
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
     3
    Author:     Alexander Krauss, TU Muenchen
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
     4
*)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
     5
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 35618
diff changeset
     6
header {* Implementation of Red-Black Trees *}
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
     7
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 35618
diff changeset
     8
theory RBT_Impl
45990
b7b905b23b2a incorporated More_Set and More_List into the Main body -- to be consolidated later
haftmann
parents: 41959
diff changeset
     9
imports Main
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    10
begin
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    11
36147
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 35618
diff changeset
    12
text {*
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 35618
diff changeset
    13
  For applications, you should use theory @{text RBT} which defines
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 35618
diff changeset
    14
  an abstract type of red-black tree obeying the invariant.
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 35618
diff changeset
    15
*}
b43b22f63665 theory RBT with abstract type of red-black trees backed by implementation RBT_Impl
haftmann
parents: 35618
diff changeset
    16
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    17
subsection {* Datatype of RB trees *}
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    18
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    19
datatype color = R | B
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    20
datatype ('a, 'b) rbt = Empty | Branch color "('a, 'b) rbt" 'a 'b "('a, 'b) rbt"
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    21
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    22
lemma rbt_cases:
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    23
  obtains (Empty) "t = Empty" 
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    24
  | (Red) l k v r where "t = Branch R l k v r" 
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    25
  | (Black) l k v r where "t = Branch B l k v r"
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    26
proof (cases t)
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    27
  case Empty with that show thesis by blast
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    28
next
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    29
  case (Branch c) with that show thesis by (cases c) blast+
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    30
qed
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    31
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    32
subsection {* Tree properties *}
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    33
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    34
subsubsection {* Content of a tree *}
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    35
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    36
primrec entries :: "('a, 'b) rbt \<Rightarrow> ('a \<times> 'b) list"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    37
where 
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    38
  "entries Empty = []"
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    39
| "entries (Branch _ l k v r) = entries l @ (k,v) # entries r"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    40
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    41
abbreviation (input) entry_in_tree :: "'a \<Rightarrow> 'b \<Rightarrow> ('a, 'b) rbt \<Rightarrow> bool"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    42
where
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    43
  "entry_in_tree k v t \<equiv> (k, v) \<in> set (entries t)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    44
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    45
definition keys :: "('a, 'b) rbt \<Rightarrow> 'a list" where
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    46
  "keys t = map fst (entries t)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    47
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    48
lemma keys_simps [simp, code]:
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    49
  "keys Empty = []"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    50
  "keys (Branch c l k v r) = keys l @ k # keys r"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    51
  by (simp_all add: keys_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    52
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    53
lemma entry_in_tree_keys:
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    54
  assumes "(k, v) \<in> set (entries t)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    55
  shows "k \<in> set (keys t)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    56
proof -
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    57
  from assms have "fst (k, v) \<in> fst ` set (entries t)" by (rule imageI)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    58
  then show ?thesis by (simp add: keys_def)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    59
qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    60
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
    61
lemma keys_entries:
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
    62
  "k \<in> set (keys t) \<longleftrightarrow> (\<exists>v. (k, v) \<in> set (entries t))"
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
    63
  by (auto intro: entry_in_tree_keys) (auto simp add: keys_def)
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
    64
48621
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
    65
lemma non_empty_rbt_keys: 
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
    66
  "t \<noteq> rbt.Empty \<Longrightarrow> keys t \<noteq> []"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
    67
  by (cases t) simp_all
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    68
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
    69
subsubsection {* Search tree properties *}
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    70
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    71
context ord begin
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    72
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    73
definition rbt_less :: "'a \<Rightarrow> ('a, 'b) rbt \<Rightarrow> bool"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    74
where
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    75
  rbt_less_prop: "rbt_less k t \<longleftrightarrow> (\<forall>x\<in>set (keys t). x < k)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    76
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    77
abbreviation rbt_less_symbol (infix "|\<guillemotleft>" 50)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    78
where "t |\<guillemotleft> x \<equiv> rbt_less x t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    79
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    80
definition rbt_greater :: "'a \<Rightarrow> ('a, 'b) rbt \<Rightarrow> bool" (infix "\<guillemotleft>|" 50) 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
    81
where
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    82
  rbt_greater_prop: "rbt_greater k t = (\<forall>x\<in>set (keys t). k < x)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    83
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    84
lemma rbt_less_simps [simp]:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    85
  "Empty |\<guillemotleft> k = True"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    86
  "Branch c lt kt v rt |\<guillemotleft> k \<longleftrightarrow> kt < k \<and> lt |\<guillemotleft> k \<and> rt |\<guillemotleft> k"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    87
  by (auto simp add: rbt_less_prop)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    88
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    89
lemma rbt_greater_simps [simp]:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    90
  "k \<guillemotleft>| Empty = True"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    91
  "k \<guillemotleft>| (Branch c lt kt v rt) \<longleftrightarrow> k < kt \<and> k \<guillemotleft>| lt \<and> k \<guillemotleft>| rt"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    92
  by (auto simp add: rbt_greater_prop)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    93
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    94
lemmas rbt_ord_props = rbt_less_prop rbt_greater_prop
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    95
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    96
lemmas rbt_greater_nit = rbt_greater_prop entry_in_tree_keys
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    97
lemmas rbt_less_nit = rbt_less_prop entry_in_tree_keys
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
    98
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
    99
lemma (in order)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   100
  shows rbt_less_eq_trans: "l |\<guillemotleft> u \<Longrightarrow> u \<le> v \<Longrightarrow> l |\<guillemotleft> v"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   101
  and rbt_less_trans: "t |\<guillemotleft> x \<Longrightarrow> x < y \<Longrightarrow> t |\<guillemotleft> y"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   102
  and rbt_greater_eq_trans: "u \<le> v \<Longrightarrow> v \<guillemotleft>| r \<Longrightarrow> u \<guillemotleft>| r"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   103
  and rbt_greater_trans: "x < y \<Longrightarrow> y \<guillemotleft>| t \<Longrightarrow> x \<guillemotleft>| t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   104
  by (auto simp: rbt_ord_props)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   105
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   106
primrec rbt_sorted :: "('a, 'b) rbt \<Rightarrow> bool"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   107
where
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   108
  "rbt_sorted Empty = True"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   109
| "rbt_sorted (Branch c l k v r) = (l |\<guillemotleft> k \<and> k \<guillemotleft>| r \<and> rbt_sorted l \<and> rbt_sorted r)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   110
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   111
end
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   112
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   113
context linorder begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   114
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   115
lemma rbt_sorted_entries:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   116
  "rbt_sorted t \<Longrightarrow> List.sorted (List.map fst (entries t))"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   117
by (induct t) 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   118
  (force simp: sorted_append sorted_Cons rbt_ord_props 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   119
      dest!: entry_in_tree_keys)+
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   120
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   121
lemma distinct_entries:
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   122
  "rbt_sorted t \<Longrightarrow> distinct (List.map fst (entries t))"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   123
by (induct t) 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   124
  (force simp: sorted_append sorted_Cons rbt_ord_props 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   125
      dest!: entry_in_tree_keys)+
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   126
48621
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
   127
lemma distinct_keys:
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
   128
  "rbt_sorted t \<Longrightarrow> distinct (keys t)"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
   129
  by (simp add: distinct_entries keys_def)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
   130
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
   131
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   132
subsubsection {* Tree lookup *}
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   133
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   134
primrec (in ord) rbt_lookup :: "('a, 'b) rbt \<Rightarrow> 'a \<rightharpoonup> 'b"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   135
where
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   136
  "rbt_lookup Empty k = None"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   137
| "rbt_lookup (Branch _ l x y r) k = 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   138
   (if k < x then rbt_lookup l k else if x < k then rbt_lookup r k else Some y)"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   139
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   140
lemma rbt_lookup_keys: "rbt_sorted t \<Longrightarrow> dom (rbt_lookup t) = set (keys t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   141
  by (induct t) (auto simp: dom_def rbt_greater_prop rbt_less_prop)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   142
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   143
lemma dom_rbt_lookup_Branch: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   144
  "rbt_sorted (Branch c t1 k v t2) \<Longrightarrow> 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   145
    dom (rbt_lookup (Branch c t1 k v t2)) 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   146
    = Set.insert k (dom (rbt_lookup t1) \<union> dom (rbt_lookup t2))"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   147
proof -
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   148
  assume "rbt_sorted (Branch c t1 k v t2)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   149
  moreover from this have "rbt_sorted t1" "rbt_sorted t2" by simp_all
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   150
  ultimately show ?thesis by (simp add: rbt_lookup_keys)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   151
qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   152
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   153
lemma finite_dom_rbt_lookup [simp, intro!]: "finite (dom (rbt_lookup t))"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   154
proof (induct t)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   155
  case Empty then show ?case by simp
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   156
next
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   157
  case (Branch color t1 a b t2)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   158
  let ?A = "Set.insert a (dom (rbt_lookup t1) \<union> dom (rbt_lookup t2))"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   159
  have "dom (rbt_lookup (Branch color t1 a b t2)) \<subseteq> ?A" by (auto split: split_if_asm)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   160
  moreover from Branch have "finite (insert a (dom (rbt_lookup t1) \<union> dom (rbt_lookup t2)))" by simp
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   161
  ultimately show ?case by (rule finite_subset)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   162
qed 
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   163
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   164
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   165
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   166
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   167
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   168
lemma rbt_lookup_rbt_less[simp]: "t |\<guillemotleft> k \<Longrightarrow> rbt_lookup t k = None" 
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   169
by (induct t) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   170
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   171
lemma rbt_lookup_rbt_greater[simp]: "k \<guillemotleft>| t \<Longrightarrow> rbt_lookup t k = None"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   172
by (induct t) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   173
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   174
lemma rbt_lookup_Empty: "rbt_lookup Empty = empty"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   175
by (rule ext) simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   176
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   177
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   178
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   179
context linorder begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   180
35618
b7bfd4cbcfc0 some lemma refinements
haftmann
parents: 35606
diff changeset
   181
lemma map_of_entries:
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   182
  "rbt_sorted t \<Longrightarrow> map_of (entries t) = rbt_lookup t"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   183
proof (induct t)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   184
  case Empty thus ?case by (simp add: rbt_lookup_Empty)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   185
next
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   186
  case (Branch c t1 k v t2)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   187
  have "rbt_lookup (Branch c t1 k v t2) = rbt_lookup t2 ++ [k\<mapsto>v] ++ rbt_lookup t1"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   188
  proof (rule ext)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   189
    fix x
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   190
    from Branch have RBT_SORTED: "rbt_sorted (Branch c t1 k v t2)" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   191
    let ?thesis = "rbt_lookup (Branch c t1 k v t2) x = (rbt_lookup t2 ++ [k \<mapsto> v] ++ rbt_lookup t1) x"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   192
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   193
    have DOM_T1: "!!k'. k'\<in>dom (rbt_lookup t1) \<Longrightarrow> k>k'"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   194
    proof -
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   195
      fix k'
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   196
      from RBT_SORTED have "t1 |\<guillemotleft> k" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   197
      with rbt_less_prop have "\<forall>k'\<in>set (keys t1). k>k'" by auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   198
      moreover assume "k'\<in>dom (rbt_lookup t1)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   199
      ultimately show "k>k'" using rbt_lookup_keys RBT_SORTED by auto
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   200
    qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   201
    
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   202
    have DOM_T2: "!!k'. k'\<in>dom (rbt_lookup t2) \<Longrightarrow> k<k'"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   203
    proof -
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   204
      fix k'
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   205
      from RBT_SORTED have "k \<guillemotleft>| t2" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   206
      with rbt_greater_prop have "\<forall>k'\<in>set (keys t2). k<k'" by auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   207
      moreover assume "k'\<in>dom (rbt_lookup t2)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   208
      ultimately show "k<k'" using rbt_lookup_keys RBT_SORTED by auto
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   209
    qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   210
    
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   211
    {
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   212
      assume C: "x<k"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   213
      hence "rbt_lookup (Branch c t1 k v t2) x = rbt_lookup t1 x" by simp
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   214
      moreover from C have "x\<notin>dom [k\<mapsto>v]" by simp
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   215
      moreover have "x \<notin> dom (rbt_lookup t2)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   216
      proof
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   217
        assume "x \<in> dom (rbt_lookup t2)"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   218
        with DOM_T2 have "k<x" by blast
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   219
        with C show False by simp
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   220
      qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   221
      ultimately have ?thesis by (simp add: map_add_upd_left map_add_dom_app_simps)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   222
    } moreover {
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   223
      assume [simp]: "x=k"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   224
      hence "rbt_lookup (Branch c t1 k v t2) x = [k \<mapsto> v] x" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   225
      moreover have "x \<notin> dom (rbt_lookup t1)" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   226
      proof
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   227
        assume "x \<in> dom (rbt_lookup t1)"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   228
        with DOM_T1 have "k>x" by blast
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   229
        thus False by simp
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   230
      qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   231
      ultimately have ?thesis by (simp add: map_add_upd_left map_add_dom_app_simps)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   232
    } moreover {
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   233
      assume C: "x>k"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   234
      hence "rbt_lookup (Branch c t1 k v t2) x = rbt_lookup t2 x" by (simp add: less_not_sym[of k x])
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   235
      moreover from C have "x\<notin>dom [k\<mapsto>v]" by simp
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   236
      moreover have "x\<notin>dom (rbt_lookup t1)" proof
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   237
        assume "x\<in>dom (rbt_lookup t1)"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   238
        with DOM_T1 have "k>x" by simp
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   239
        with C show False by simp
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   240
      qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   241
      ultimately have ?thesis by (simp add: map_add_upd_left map_add_dom_app_simps)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   242
    } ultimately show ?thesis using less_linear by blast
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   243
  qed
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   244
  also from Branch 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   245
  have "rbt_lookup t2 ++ [k \<mapsto> v] ++ rbt_lookup t1 = map_of (entries (Branch c t1 k v t2))" by simp
35618
b7bfd4cbcfc0 some lemma refinements
haftmann
parents: 35606
diff changeset
   246
  finally show ?case by simp
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   247
qed
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   248
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   249
lemma rbt_lookup_in_tree: "rbt_sorted t \<Longrightarrow> rbt_lookup t k = Some v \<longleftrightarrow> (k, v) \<in> set (entries t)"
35618
b7bfd4cbcfc0 some lemma refinements
haftmann
parents: 35606
diff changeset
   250
  by (simp add: map_of_entries [symmetric] distinct_entries)
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   251
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   252
lemma set_entries_inject:
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   253
  assumes rbt_sorted: "rbt_sorted t1" "rbt_sorted t2" 
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   254
  shows "set (entries t1) = set (entries t2) \<longleftrightarrow> entries t1 = entries t2"
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   255
proof -
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   256
  from rbt_sorted have "distinct (map fst (entries t1))"
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   257
    "distinct (map fst (entries t2))"
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   258
    by (auto intro: distinct_entries)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   259
  with rbt_sorted show ?thesis
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   260
    by (auto intro: map_sorted_distinct_set_unique rbt_sorted_entries simp add: distinct_map)
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   261
qed
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   262
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   263
lemma entries_eqI:
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   264
  assumes rbt_sorted: "rbt_sorted t1" "rbt_sorted t2" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   265
  assumes rbt_lookup: "rbt_lookup t1 = rbt_lookup t2"
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   266
  shows "entries t1 = entries t2"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   267
proof -
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   268
  from rbt_sorted rbt_lookup have "map_of (entries t1) = map_of (entries t2)"
35618
b7bfd4cbcfc0 some lemma refinements
haftmann
parents: 35606
diff changeset
   269
    by (simp add: map_of_entries)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   270
  with rbt_sorted have "set (entries t1) = set (entries t2)"
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   271
    by (simp add: map_of_inject_set distinct_entries)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   272
  with rbt_sorted show ?thesis by (simp add: set_entries_inject)
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   273
qed
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   274
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   275
lemma entries_rbt_lookup:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   276
  assumes "rbt_sorted t1" "rbt_sorted t2" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   277
  shows "entries t1 = entries t2 \<longleftrightarrow> rbt_lookup t1 = rbt_lookup t2"
35618
b7bfd4cbcfc0 some lemma refinements
haftmann
parents: 35606
diff changeset
   278
  using assms by (auto intro: entries_eqI simp add: map_of_entries [symmetric])
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   279
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   280
lemma rbt_lookup_from_in_tree: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   281
  assumes "rbt_sorted t1" "rbt_sorted t2" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   282
  and "\<And>v. (k, v) \<in> set (entries t1) \<longleftrightarrow> (k, v) \<in> set (entries t2)" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   283
  shows "rbt_lookup t1 k = rbt_lookup t2 k"
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
   284
proof -
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   285
  from assms have "k \<in> dom (rbt_lookup t1) \<longleftrightarrow> k \<in> dom (rbt_lookup t2)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   286
    by (simp add: keys_entries rbt_lookup_keys)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   287
  with assms show ?thesis by (auto simp add: rbt_lookup_in_tree [symmetric])
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   288
qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   289
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   290
end
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   291
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   292
subsubsection {* Red-black properties *}
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   293
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   294
primrec color_of :: "('a, 'b) rbt \<Rightarrow> color"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   295
where
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   296
  "color_of Empty = B"
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   297
| "color_of (Branch c _ _ _ _) = c"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   298
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   299
primrec bheight :: "('a,'b) rbt \<Rightarrow> nat"
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   300
where
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   301
  "bheight Empty = 0"
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   302
| "bheight (Branch c lt k v rt) = (if c = B then Suc (bheight lt) else bheight lt)"
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   303
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   304
primrec inv1 :: "('a, 'b) rbt \<Rightarrow> bool"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   305
where
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   306
  "inv1 Empty = True"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   307
| "inv1 (Branch c lt k v rt) \<longleftrightarrow> inv1 lt \<and> inv1 rt \<and> (c = B \<or> color_of lt = B \<and> color_of rt = B)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   308
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   309
primrec inv1l :: "('a, 'b) rbt \<Rightarrow> bool" -- {* Weaker version *}
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   310
where
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   311
  "inv1l Empty = True"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   312
| "inv1l (Branch c l k v r) = (inv1 l \<and> inv1 r)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   313
lemma [simp]: "inv1 t \<Longrightarrow> inv1l t" by (cases t) simp+
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   314
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   315
primrec inv2 :: "('a, 'b) rbt \<Rightarrow> bool"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   316
where
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   317
  "inv2 Empty = True"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   318
| "inv2 (Branch c lt k v rt) = (inv2 lt \<and> inv2 rt \<and> bheight lt = bheight rt)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   319
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   320
context ord begin
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   321
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   322
definition is_rbt :: "('a, 'b) rbt \<Rightarrow> bool" where
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   323
  "is_rbt t \<longleftrightarrow> inv1 t \<and> inv2 t \<and> color_of t = B \<and> rbt_sorted t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   324
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   325
lemma is_rbt_rbt_sorted [simp]:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   326
  "is_rbt t \<Longrightarrow> rbt_sorted t" by (simp add: is_rbt_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   327
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   328
theorem Empty_is_rbt [simp]:
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   329
  "is_rbt Empty" by (simp add: is_rbt_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   330
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   331
end
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   332
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   333
subsection {* Insertion *}
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   334
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   335
fun (* slow, due to massive case splitting *)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   336
  balance :: "('a,'b) rbt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   337
where
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   338
  "balance (Branch R a w x b) s t (Branch R c y z d) = Branch R (Branch B a w x b) s t (Branch B c y z d)" |
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   339
  "balance (Branch R (Branch R a w x b) s t c) y z d = Branch R (Branch B a w x b) s t (Branch B c y z d)" |
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   340
  "balance (Branch R a w x (Branch R b s t c)) y z d = Branch R (Branch B a w x b) s t (Branch B c y z d)" |
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   341
  "balance a w x (Branch R b s t (Branch R c y z d)) = Branch R (Branch B a w x b) s t (Branch B c y z d)" |
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   342
  "balance a w x (Branch R (Branch R b s t c) y z d) = Branch R (Branch B a w x b) s t (Branch B c y z d)" |
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   343
  "balance a s t b = Branch B a s t b"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   344
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   345
lemma balance_inv1: "\<lbrakk>inv1l l; inv1l r\<rbrakk> \<Longrightarrow> inv1 (balance l k v r)" 
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   346
  by (induct l k v r rule: balance.induct) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   347
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   348
lemma balance_bheight: "bheight l = bheight r \<Longrightarrow> bheight (balance l k v r) = Suc (bheight l)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   349
  by (induct l k v r rule: balance.induct) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   350
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   351
lemma balance_inv2: 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   352
  assumes "inv2 l" "inv2 r" "bheight l = bheight r"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   353
  shows "inv2 (balance l k v r)"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   354
  using assms
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   355
  by (induct l k v r rule: balance.induct) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   356
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   357
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   358
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   359
lemma balance_rbt_greater[simp]: "(v \<guillemotleft>| balance a k x b) = (v \<guillemotleft>| a \<and> v \<guillemotleft>| b \<and> v < k)" 
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   360
  by (induct a k x b rule: balance.induct) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   361
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   362
lemma balance_rbt_less[simp]: "(balance a k x b |\<guillemotleft> v) = (a |\<guillemotleft> v \<and> b |\<guillemotleft> v \<and> k < v)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   363
  by (induct a k x b rule: balance.induct) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   364
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   365
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   366
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   367
lemma (in linorder) balance_rbt_sorted: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   368
  fixes k :: "'a"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   369
  assumes "rbt_sorted l" "rbt_sorted r" "l |\<guillemotleft> k" "k \<guillemotleft>| r"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   370
  shows "rbt_sorted (balance l k v r)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   371
using assms proof (induct l k v r rule: balance.induct)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   372
  case ("2_2" a x w b y t c z s va vb vd vc)
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   373
  hence "y < z \<and> z \<guillemotleft>| Branch B va vb vd vc" 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   374
    by (auto simp add: rbt_ord_props)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   375
  hence "y \<guillemotleft>| (Branch B va vb vd vc)" by (blast dest: rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   376
  with "2_2" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   377
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   378
  case ("3_2" va vb vd vc x w b y s c z)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   379
  from "3_2" have "x < y \<and> Branch B va vb vd vc |\<guillemotleft> x" 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   380
    by simp
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   381
  hence "Branch B va vb vd vc |\<guillemotleft> y" by (blast dest: rbt_less_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   382
  with "3_2" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   383
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   384
  case ("3_3" x w b y s c z t va vb vd vc)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   385
  from "3_3" have "y < z \<and> z \<guillemotleft>| Branch B va vb vd vc" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   386
  hence "y \<guillemotleft>| Branch B va vb vd vc" by (blast dest: rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   387
  with "3_3" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   388
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   389
  case ("3_4" vd ve vg vf x w b y s c z t va vb vii vc)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   390
  hence "x < y \<and> Branch B vd ve vg vf |\<guillemotleft> x" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   391
  hence 1: "Branch B vd ve vg vf |\<guillemotleft> y" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   392
  from "3_4" have "y < z \<and> z \<guillemotleft>| Branch B va vb vii vc" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   393
  hence "y \<guillemotleft>| Branch B va vb vii vc" by (blast dest: rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   394
  with 1 "3_4" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   395
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   396
  case ("4_2" va vb vd vc x w b y s c z t dd)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   397
  hence "x < y \<and> Branch B va vb vd vc |\<guillemotleft> x" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   398
  hence "Branch B va vb vd vc |\<guillemotleft> y" by (blast dest: rbt_less_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   399
  with "4_2" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   400
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   401
  case ("5_2" x w b y s c z t va vb vd vc)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   402
  hence "y < z \<and> z \<guillemotleft>| Branch B va vb vd vc" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   403
  hence "y \<guillemotleft>| Branch B va vb vd vc" by (blast dest: rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   404
  with "5_2" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   405
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   406
  case ("5_3" va vb vd vc x w b y s c z t)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   407
  hence "x < y \<and> Branch B va vb vd vc |\<guillemotleft> x" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   408
  hence "Branch B va vb vd vc |\<guillemotleft> y" by (blast dest: rbt_less_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   409
  with "5_3" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   410
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   411
  case ("5_4" va vb vg vc x w b y s c z t vd ve vii vf)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   412
  hence "x < y \<and> Branch B va vb vg vc |\<guillemotleft> x" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   413
  hence 1: "Branch B va vb vg vc |\<guillemotleft> y" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   414
  from "5_4" have "y < z \<and> z \<guillemotleft>| Branch B vd ve vii vf" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   415
  hence "y \<guillemotleft>| Branch B vd ve vii vf" by (blast dest: rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   416
  with 1 "5_4" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   417
qed simp+
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   418
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   419
lemma entries_balance [simp]:
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   420
  "entries (balance l k v r) = entries l @ (k, v) # entries r"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   421
  by (induct l k v r rule: balance.induct) auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   422
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   423
lemma keys_balance [simp]: 
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   424
  "keys (balance l k v r) = keys l @ k # keys r"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   425
  by (simp add: keys_def)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   426
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   427
lemma balance_in_tree:  
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   428
  "entry_in_tree k x (balance l v y r) \<longleftrightarrow> entry_in_tree k x l \<or> k = v \<and> x = y \<or> entry_in_tree k x r"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   429
  by (auto simp add: keys_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   430
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   431
lemma (in linorder) rbt_lookup_balance[simp]: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   432
fixes k :: "'a"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   433
assumes "rbt_sorted l" "rbt_sorted r" "l |\<guillemotleft> k" "k \<guillemotleft>| r"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   434
shows "rbt_lookup (balance l k v r) x = rbt_lookup (Branch B l k v r) x"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   435
by (rule rbt_lookup_from_in_tree) (auto simp:assms balance_in_tree balance_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   436
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   437
primrec paint :: "color \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   438
where
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   439
  "paint c Empty = Empty"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   440
| "paint c (Branch _ l k v r) = Branch c l k v r"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   441
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   442
lemma paint_inv1l[simp]: "inv1l t \<Longrightarrow> inv1l (paint c t)" by (cases t) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   443
lemma paint_inv1[simp]: "inv1l t \<Longrightarrow> inv1 (paint B t)" by (cases t) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   444
lemma paint_inv2[simp]: "inv2 t \<Longrightarrow> inv2 (paint c t)" by (cases t) auto
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   445
lemma paint_color_of[simp]: "color_of (paint B t) = B" by (cases t) auto
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   446
lemma paint_in_tree[simp]: "entry_in_tree k x (paint c t) = entry_in_tree k x t" by (cases t) auto
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   447
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   448
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   449
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   450
lemma paint_rbt_sorted[simp]: "rbt_sorted t \<Longrightarrow> rbt_sorted (paint c t)" by (cases t) auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   451
lemma paint_rbt_lookup[simp]: "rbt_lookup (paint c t) = rbt_lookup t" by (rule ext) (cases t, auto)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   452
lemma paint_rbt_greater[simp]: "(v \<guillemotleft>| paint c t) = (v \<guillemotleft>| t)" by (cases t) auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   453
lemma paint_rbt_less[simp]: "(paint c t |\<guillemotleft> v) = (t |\<guillemotleft> v)" by (cases t) auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   454
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   455
fun
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   456
  rbt_ins :: "('a \<Rightarrow> 'b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   457
where
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   458
  "rbt_ins f k v Empty = Branch R Empty k v Empty" |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   459
  "rbt_ins f k v (Branch B l x y r) = (if k < x then balance (rbt_ins f k v l) x y r
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   460
                                       else if k > x then balance l x y (rbt_ins f k v r)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   461
                                       else Branch B l x (f k y v) r)" |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   462
  "rbt_ins f k v (Branch R l x y r) = (if k < x then Branch R (rbt_ins f k v l) x y r
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   463
                                       else if k > x then Branch R l x y (rbt_ins f k v r)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   464
                                       else Branch R l x (f k y v) r)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   465
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   466
lemma ins_inv1_inv2: 
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   467
  assumes "inv1 t" "inv2 t"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   468
  shows "inv2 (rbt_ins f k x t)" "bheight (rbt_ins f k x t) = bheight t" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   469
  "color_of t = B \<Longrightarrow> inv1 (rbt_ins f k x t)" "inv1l (rbt_ins f k x t)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   470
  using assms
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   471
  by (induct f k x t rule: rbt_ins.induct) (auto simp: balance_inv1 balance_inv2 balance_bheight)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   472
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   473
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   474
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   475
context linorder begin
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   476
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   477
lemma ins_rbt_greater[simp]: "(v \<guillemotleft>| rbt_ins f (k :: 'a) x t) = (v \<guillemotleft>| t \<and> k > v)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   478
  by (induct f k x t rule: rbt_ins.induct) auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   479
lemma ins_rbt_less[simp]: "(rbt_ins f k x t |\<guillemotleft> v) = (t |\<guillemotleft> v \<and> k < v)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   480
  by (induct f k x t rule: rbt_ins.induct) auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   481
lemma ins_rbt_sorted[simp]: "rbt_sorted t \<Longrightarrow> rbt_sorted (rbt_ins f k x t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   482
  by (induct f k x t rule: rbt_ins.induct) (auto simp: balance_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   483
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   484
lemma keys_ins: "set (keys (rbt_ins f k v t)) = { k } \<union> set (keys t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   485
  by (induct f k v t rule: rbt_ins.induct) auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   486
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   487
lemma rbt_lookup_ins: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   488
  fixes k :: "'a"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   489
  assumes "rbt_sorted t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   490
  shows "rbt_lookup (rbt_ins f k v t) x = ((rbt_lookup t)(k |-> case rbt_lookup t k of None \<Rightarrow> v 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   491
                                                                | Some w \<Rightarrow> f k w v)) x"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   492
using assms by (induct f k v t rule: rbt_ins.induct) auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   493
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   494
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   495
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   496
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   497
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   498
definition rbt_insert_with_key :: "('a \<Rightarrow> 'b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   499
where "rbt_insert_with_key f k v t = paint B (rbt_ins f k v t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   500
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   501
definition rbt_insertw_def: "rbt_insert_with f = rbt_insert_with_key (\<lambda>_. f)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   502
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   503
definition rbt_insert :: "'a \<Rightarrow> 'b \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" where
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   504
  "rbt_insert = rbt_insert_with_key (\<lambda>_ _ nv. nv)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   505
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   506
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   507
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   508
context linorder begin
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   509
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   510
lemma rbt_insertwk_rbt_sorted: "rbt_sorted t \<Longrightarrow> rbt_sorted (rbt_insert_with_key f (k :: 'a) x t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   511
  by (auto simp: rbt_insert_with_key_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   512
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   513
theorem rbt_insertwk_is_rbt: 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   514
  assumes inv: "is_rbt t" 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   515
  shows "is_rbt (rbt_insert_with_key f k x t)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   516
using assms
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   517
unfolding rbt_insert_with_key_def is_rbt_def
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   518
by (auto simp: ins_inv1_inv2)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   519
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   520
lemma rbt_lookup_rbt_insertwk: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   521
  assumes "rbt_sorted t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   522
  shows "rbt_lookup (rbt_insert_with_key f k v t) x = ((rbt_lookup t)(k |-> case rbt_lookup t k of None \<Rightarrow> v 
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   523
                                                       | Some w \<Rightarrow> f k w v)) x"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   524
unfolding rbt_insert_with_key_def using assms
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   525
by (simp add:rbt_lookup_ins)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   526
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   527
lemma rbt_insertw_rbt_sorted: "rbt_sorted t \<Longrightarrow> rbt_sorted (rbt_insert_with f k v t)" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   528
  by (simp add: rbt_insertwk_rbt_sorted rbt_insertw_def)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   529
theorem rbt_insertw_is_rbt: "is_rbt t \<Longrightarrow> is_rbt (rbt_insert_with f k v t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   530
  by (simp add: rbt_insertwk_is_rbt rbt_insertw_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   531
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   532
lemma rbt_lookup_rbt_insertw:
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   533
  assumes "is_rbt t"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   534
  shows "rbt_lookup (rbt_insert_with f k v t) = (rbt_lookup t)(k \<mapsto> (if k:dom (rbt_lookup t) then f (the (rbt_lookup t k)) v else v))"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   535
using assms
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   536
unfolding rbt_insertw_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   537
by (rule_tac ext) (cases "rbt_lookup t k", auto simp:rbt_lookup_rbt_insertwk dom_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   538
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   539
lemma rbt_insert_rbt_sorted: "rbt_sorted t \<Longrightarrow> rbt_sorted (rbt_insert k v t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   540
  by (simp add: rbt_insertwk_rbt_sorted rbt_insert_def)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   541
theorem rbt_insert_is_rbt [simp]: "is_rbt t \<Longrightarrow> is_rbt (rbt_insert k v t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   542
  by (simp add: rbt_insertwk_is_rbt rbt_insert_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   543
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   544
lemma rbt_lookup_rbt_insert: 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   545
  assumes "is_rbt t"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   546
  shows "rbt_lookup (rbt_insert k v t) = (rbt_lookup t)(k\<mapsto>v)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   547
unfolding rbt_insert_def
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   548
using assms
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   549
by (rule_tac ext) (simp add: rbt_lookup_rbt_insertwk split:option.split)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   550
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   551
end
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   552
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   553
subsection {* Deletion *}
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   554
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   555
lemma bheight_paintR'[simp]: "color_of t = B \<Longrightarrow> bheight (paint R t) = bheight t - 1"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   556
by (cases t rule: rbt_cases) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   557
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   558
fun
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   559
  balance_left :: "('a,'b) rbt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   560
where
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   561
  "balance_left (Branch R a k x b) s y c = Branch R (Branch B a k x b) s y c" |
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   562
  "balance_left bl k x (Branch B a s y b) = balance bl k x (Branch R a s y b)" |
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   563
  "balance_left bl k x (Branch R (Branch B a s y b) t z c) = Branch R (Branch B bl k x a) s y (balance b t z (paint R c))" |
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   564
  "balance_left t k x s = Empty"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   565
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   566
lemma balance_left_inv2_with_inv1:
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   567
  assumes "inv2 lt" "inv2 rt" "bheight lt + 1 = bheight rt" "inv1 rt"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   568
  shows "bheight (balance_left lt k v rt) = bheight lt + 1"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   569
  and   "inv2 (balance_left lt k v rt)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   570
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   571
by (induct lt k v rt rule: balance_left.induct) (auto simp: balance_inv2 balance_bheight)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   572
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   573
lemma balance_left_inv2_app: 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   574
  assumes "inv2 lt" "inv2 rt" "bheight lt + 1 = bheight rt" "color_of rt = B"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   575
  shows "inv2 (balance_left lt k v rt)" 
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   576
        "bheight (balance_left lt k v rt) = bheight rt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   577
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   578
by (induct lt k v rt rule: balance_left.induct) (auto simp add: balance_inv2 balance_bheight)+ 
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   579
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   580
lemma balance_left_inv1: "\<lbrakk>inv1l a; inv1 b; color_of b = B\<rbrakk> \<Longrightarrow> inv1 (balance_left a k x b)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   581
  by (induct a k x b rule: balance_left.induct) (simp add: balance_inv1)+
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   582
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   583
lemma balance_left_inv1l: "\<lbrakk> inv1l lt; inv1 rt \<rbrakk> \<Longrightarrow> inv1l (balance_left lt k x rt)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   584
by (induct lt k x rt rule: balance_left.induct) (auto simp: balance_inv1)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   585
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   586
lemma (in linorder) balance_left_rbt_sorted: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   587
  "\<lbrakk> rbt_sorted l; rbt_sorted r; rbt_less k l; k \<guillemotleft>| r \<rbrakk> \<Longrightarrow> rbt_sorted (balance_left l k v r)"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   588
apply (induct l k v r rule: balance_left.induct)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   589
apply (auto simp: balance_rbt_sorted)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   590
apply (unfold rbt_greater_prop rbt_less_prop)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   591
by force+
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   592
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   593
context order begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   594
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   595
lemma balance_left_rbt_greater: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   596
  fixes k :: "'a"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   597
  assumes "k \<guillemotleft>| a" "k \<guillemotleft>| b" "k < x" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   598
  shows "k \<guillemotleft>| balance_left a x t b"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   599
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   600
by (induct a x t b rule: balance_left.induct) auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   601
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   602
lemma balance_left_rbt_less: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   603
  fixes k :: "'a"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   604
  assumes "a |\<guillemotleft> k" "b |\<guillemotleft> k" "x < k" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   605
  shows "balance_left a x t b |\<guillemotleft> k"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   606
using assms
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   607
by (induct a x t b rule: balance_left.induct) auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   608
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   609
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   610
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   611
lemma balance_left_in_tree: 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   612
  assumes "inv1l l" "inv1 r" "bheight l + 1 = bheight r"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   613
  shows "entry_in_tree k v (balance_left l a b r) = (entry_in_tree k v l \<or> k = a \<and> v = b \<or> entry_in_tree k v r)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   614
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   615
by (induct l k v r rule: balance_left.induct) (auto simp: balance_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   616
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   617
fun
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   618
  balance_right :: "('a,'b) rbt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   619
where
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   620
  "balance_right a k x (Branch R b s y c) = Branch R a k x (Branch B b s y c)" |
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   621
  "balance_right (Branch B a k x b) s y bl = balance (Branch R a k x b) s y bl" |
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   622
  "balance_right (Branch R a k x (Branch B b s y c)) t z bl = Branch R (balance (paint R a) k x b) s y (Branch B c t z bl)" |
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   623
  "balance_right t k x s = Empty"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   624
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   625
lemma balance_right_inv2_with_inv1:
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   626
  assumes "inv2 lt" "inv2 rt" "bheight lt = bheight rt + 1" "inv1 lt"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   627
  shows "inv2 (balance_right lt k v rt) \<and> bheight (balance_right lt k v rt) = bheight lt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   628
using assms
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   629
by (induct lt k v rt rule: balance_right.induct) (auto simp: balance_inv2 balance_bheight)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   630
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   631
lemma balance_right_inv1: "\<lbrakk>inv1 a; inv1l b; color_of a = B\<rbrakk> \<Longrightarrow> inv1 (balance_right a k x b)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   632
by (induct a k x b rule: balance_right.induct) (simp add: balance_inv1)+
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   633
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   634
lemma balance_right_inv1l: "\<lbrakk> inv1 lt; inv1l rt \<rbrakk> \<Longrightarrow>inv1l (balance_right lt k x rt)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   635
by (induct lt k x rt rule: balance_right.induct) (auto simp: balance_inv1)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   636
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   637
lemma (in linorder) balance_right_rbt_sorted:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   638
  "\<lbrakk> rbt_sorted l; rbt_sorted r; rbt_less k l; k \<guillemotleft>| r \<rbrakk> \<Longrightarrow> rbt_sorted (balance_right l k v r)"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   639
apply (induct l k v r rule: balance_right.induct)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   640
apply (auto simp:balance_rbt_sorted)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   641
apply (unfold rbt_less_prop rbt_greater_prop)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   642
by force+
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   643
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   644
context order begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   645
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   646
lemma balance_right_rbt_greater: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   647
  fixes k :: "'a"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   648
  assumes "k \<guillemotleft>| a" "k \<guillemotleft>| b" "k < x" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   649
  shows "k \<guillemotleft>| balance_right a x t b"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   650
using assms by (induct a x t b rule: balance_right.induct) auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   651
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   652
lemma balance_right_rbt_less: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   653
  fixes k :: "'a"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   654
  assumes "a |\<guillemotleft> k" "b |\<guillemotleft> k" "x < k" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   655
  shows "balance_right a x t b |\<guillemotleft> k"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   656
using assms by (induct a x t b rule: balance_right.induct) auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   657
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   658
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   659
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   660
lemma balance_right_in_tree:
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   661
  assumes "inv1 l" "inv1l r" "bheight l = bheight r + 1" "inv2 l" "inv2 r"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   662
  shows "entry_in_tree x y (balance_right l k v r) = (entry_in_tree x y l \<or> x = k \<and> y = v \<or> entry_in_tree x y r)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   663
using assms by (induct l k v r rule: balance_right.induct) (auto simp: balance_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   664
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   665
fun
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   666
  combine :: "('a,'b) rbt \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   667
where
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   668
  "combine Empty x = x" 
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   669
| "combine x Empty = x" 
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   670
| "combine (Branch R a k x b) (Branch R c s y d) = (case (combine b c) of
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   671
                                    Branch R b2 t z c2 \<Rightarrow> (Branch R (Branch R a k x b2) t z (Branch R c2 s y d)) |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   672
                                    bc \<Rightarrow> Branch R a k x (Branch R bc s y d))" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   673
| "combine (Branch B a k x b) (Branch B c s y d) = (case (combine b c) of
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   674
                                    Branch R b2 t z c2 \<Rightarrow> Branch R (Branch B a k x b2) t z (Branch B c2 s y d) |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   675
                                    bc \<Rightarrow> balance_left a k x (Branch B bc s y d))" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   676
| "combine a (Branch R b k x c) = Branch R (combine a b) k x c" 
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   677
| "combine (Branch R a k x b) c = Branch R a k x (combine b c)" 
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   678
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   679
lemma combine_inv2:
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   680
  assumes "inv2 lt" "inv2 rt" "bheight lt = bheight rt"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   681
  shows "bheight (combine lt rt) = bheight lt" "inv2 (combine lt rt)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   682
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   683
by (induct lt rt rule: combine.induct) 
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   684
   (auto simp: balance_left_inv2_app split: rbt.splits color.splits)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   685
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   686
lemma combine_inv1: 
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   687
  assumes "inv1 lt" "inv1 rt"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   688
  shows "color_of lt = B \<Longrightarrow> color_of rt = B \<Longrightarrow> inv1 (combine lt rt)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   689
         "inv1l (combine lt rt)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   690
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   691
by (induct lt rt rule: combine.induct)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   692
   (auto simp: balance_left_inv1 split: rbt.splits color.splits)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   693
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   694
context linorder begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   695
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   696
lemma combine_rbt_greater[simp]: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   697
  fixes k :: "'a"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   698
  assumes "k \<guillemotleft>| l" "k \<guillemotleft>| r" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   699
  shows "k \<guillemotleft>| combine l r"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   700
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   701
by (induct l r rule: combine.induct)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   702
   (auto simp: balance_left_rbt_greater split:rbt.splits color.splits)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   703
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   704
lemma combine_rbt_less[simp]: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   705
  fixes k :: "'a"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   706
  assumes "l |\<guillemotleft> k" "r |\<guillemotleft> k" 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   707
  shows "combine l r |\<guillemotleft> k"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   708
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   709
by (induct l r rule: combine.induct)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   710
   (auto simp: balance_left_rbt_less split:rbt.splits color.splits)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   711
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   712
lemma combine_rbt_sorted: 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   713
  fixes k :: "'a"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   714
  assumes "rbt_sorted l" "rbt_sorted r" "l |\<guillemotleft> k" "k \<guillemotleft>| r"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   715
  shows "rbt_sorted (combine l r)"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   716
using assms proof (induct l r rule: combine.induct)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   717
  case (3 a x v b c y w d)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   718
  hence ineqs: "a |\<guillemotleft> x" "x \<guillemotleft>| b" "b |\<guillemotleft> k" "k \<guillemotleft>| c" "c |\<guillemotleft> y" "y \<guillemotleft>| d"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   719
    by auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   720
  with 3
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   721
  show ?case
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   722
    by (cases "combine b c" rule: rbt_cases)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   723
      (auto, (metis combine_rbt_greater combine_rbt_less ineqs ineqs rbt_less_simps(2) rbt_greater_simps(2) rbt_greater_trans rbt_less_trans)+)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   724
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   725
  case (4 a x v b c y w d)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   726
  hence "x < k \<and> rbt_greater k c" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   727
  hence "rbt_greater x c" by (blast dest: rbt_greater_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   728
  with 4 have 2: "rbt_greater x (combine b c)" by (simp add: combine_rbt_greater)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   729
  from 4 have "k < y \<and> rbt_less k b" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   730
  hence "rbt_less y b" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   731
  with 4 have 3: "rbt_less y (combine b c)" by (simp add: combine_rbt_less)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   732
  show ?case
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   733
  proof (cases "combine b c" rule: rbt_cases)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   734
    case Empty
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   735
    from 4 have "x < y \<and> rbt_greater y d" by auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   736
    hence "rbt_greater x d" by (blast dest: rbt_greater_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   737
    with 4 Empty have "rbt_sorted a" and "rbt_sorted (Branch B Empty y w d)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   738
      and "rbt_less x a" and "rbt_greater x (Branch B Empty y w d)" by auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   739
    with Empty show ?thesis by (simp add: balance_left_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   740
  next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   741
    case (Red lta va ka rta)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   742
    with 2 4 have "x < va \<and> rbt_less x a" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   743
    hence 5: "rbt_less va a" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   744
    from Red 3 4 have "va < y \<and> rbt_greater y d" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   745
    hence "rbt_greater va d" by (blast dest: rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   746
    with Red 2 3 4 5 show ?thesis by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   747
  next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   748
    case (Black lta va ka rta)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   749
    from 4 have "x < y \<and> rbt_greater y d" by auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   750
    hence "rbt_greater x d" by (blast dest: rbt_greater_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   751
    with Black 2 3 4 have "rbt_sorted a" and "rbt_sorted (Branch B (combine b c) y w d)" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   752
      and "rbt_less x a" and "rbt_greater x (Branch B (combine b c) y w d)" by auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   753
    with Black show ?thesis by (simp add: balance_left_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   754
  qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   755
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   756
  case (5 va vb vd vc b x w c)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   757
  hence "k < x \<and> rbt_less k (Branch B va vb vd vc)" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   758
  hence "rbt_less x (Branch B va vb vd vc)" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   759
  with 5 show ?case by (simp add: combine_rbt_less)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   760
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   761
  case (6 a x v b va vb vd vc)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   762
  hence "x < k \<and> rbt_greater k (Branch B va vb vd vc)" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   763
  hence "rbt_greater x (Branch B va vb vd vc)" by (blast dest: rbt_greater_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   764
  with 6 show ?case by (simp add: combine_rbt_greater)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   765
qed simp+
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   766
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   767
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   768
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   769
lemma combine_in_tree: 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   770
  assumes "inv2 l" "inv2 r" "bheight l = bheight r" "inv1 l" "inv1 r"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   771
  shows "entry_in_tree k v (combine l r) = (entry_in_tree k v l \<or> entry_in_tree k v r)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   772
using assms 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   773
proof (induct l r rule: combine.induct)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   774
  case (4 _ _ _ b c)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   775
  hence a: "bheight (combine b c) = bheight b" by (simp add: combine_inv2)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   776
  from 4 have b: "inv1l (combine b c)" by (simp add: combine_inv1)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   777
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   778
  show ?case
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   779
  proof (cases "combine b c" rule: rbt_cases)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   780
    case Empty
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   781
    with 4 a show ?thesis by (auto simp: balance_left_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   782
  next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   783
    case (Red lta ka va rta)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   784
    with 4 show ?thesis by auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   785
  next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   786
    case (Black lta ka va rta)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   787
    with a b 4  show ?thesis by (auto simp: balance_left_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   788
  qed 
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   789
qed (auto split: rbt.splits color.splits)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   790
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   791
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   792
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   793
fun
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   794
  rbt_del_from_left :: "'a \<Rightarrow> ('a,'b) rbt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt" and
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   795
  rbt_del_from_right :: "'a \<Rightarrow> ('a,'b) rbt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt" and
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   796
  rbt_del :: "'a\<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   797
where
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   798
  "rbt_del x Empty = Empty" |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   799
  "rbt_del x (Branch c a y s b) = 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   800
   (if x < y then rbt_del_from_left x a y s b 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   801
    else (if x > y then rbt_del_from_right x a y s b else combine a b))" |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   802
  "rbt_del_from_left x (Branch B lt z v rt) y s b = balance_left (rbt_del x (Branch B lt z v rt)) y s b" |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   803
  "rbt_del_from_left x a y s b = Branch R (rbt_del x a) y s b" |
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   804
  "rbt_del_from_right x a y s (Branch B lt z v rt) = balance_right a y s (rbt_del x (Branch B lt z v rt))" | 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   805
  "rbt_del_from_right x a y s b = Branch R a y s (rbt_del x b)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   806
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   807
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   808
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   809
context linorder begin
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   810
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   811
lemma 
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   812
  assumes "inv2 lt" "inv1 lt"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   813
  shows
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   814
  "\<lbrakk>inv2 rt; bheight lt = bheight rt; inv1 rt\<rbrakk> \<Longrightarrow>
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   815
   inv2 (rbt_del_from_left x lt k v rt) \<and> 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   816
   bheight (rbt_del_from_left x lt k v rt) = bheight lt \<and> 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   817
   (color_of lt = B \<and> color_of rt = B \<and> inv1 (rbt_del_from_left x lt k v rt) \<or> 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   818
    (color_of lt \<noteq> B \<or> color_of rt \<noteq> B) \<and> inv1l (rbt_del_from_left x lt k v rt))"
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   819
  and "\<lbrakk>inv2 rt; bheight lt = bheight rt; inv1 rt\<rbrakk> \<Longrightarrow>
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   820
  inv2 (rbt_del_from_right x lt k v rt) \<and> 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   821
  bheight (rbt_del_from_right x lt k v rt) = bheight lt \<and> 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   822
  (color_of lt = B \<and> color_of rt = B \<and> inv1 (rbt_del_from_right x lt k v rt) \<or> 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   823
   (color_of lt \<noteq> B \<or> color_of rt \<noteq> B) \<and> inv1l (rbt_del_from_right x lt k v rt))"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   824
  and rbt_del_inv1_inv2: "inv2 (rbt_del x lt) \<and> (color_of lt = R \<and> bheight (rbt_del x lt) = bheight lt \<and> inv1 (rbt_del x lt) 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   825
  \<or> color_of lt = B \<and> bheight (rbt_del x lt) = bheight lt - 1 \<and> inv1l (rbt_del x lt))"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   826
using assms
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   827
proof (induct x lt k v rt and x lt k v rt and x lt rule: rbt_del_from_left_rbt_del_from_right_rbt_del.induct)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   828
case (2 y c _ y')
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   829
  have "y = y' \<or> y < y' \<or> y > y'" by auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   830
  thus ?case proof (elim disjE)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   831
    assume "y = y'"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   832
    with 2 show ?thesis by (cases c) (simp add: combine_inv2 combine_inv1)+
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   833
  next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   834
    assume "y < y'"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   835
    with 2 show ?thesis by (cases c) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   836
  next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   837
    assume "y' < y"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   838
    with 2 show ?thesis by (cases c) auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   839
  qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   840
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   841
  case (3 y lt z v rta y' ss bb) 
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   842
  thus ?case by (cases "color_of (Branch B lt z v rta) = B \<and> color_of bb = B") (simp add: balance_left_inv2_with_inv1 balance_left_inv1 balance_left_inv1l)+
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   843
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   844
  case (5 y a y' ss lt z v rta)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   845
  thus ?case by (cases "color_of a = B \<and> color_of (Branch B lt z v rta) = B") (simp add: balance_right_inv2_with_inv1 balance_right_inv1 balance_right_inv1l)+
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   846
next
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   847
  case ("6_1" y a y' ss) thus ?case by (cases "color_of a = B \<and> color_of Empty = B") simp+
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   848
qed auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   849
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   850
lemma 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   851
  rbt_del_from_left_rbt_less: "\<lbrakk> lt |\<guillemotleft> v; rt |\<guillemotleft> v; k < v\<rbrakk> \<Longrightarrow> rbt_del_from_left x lt k y rt |\<guillemotleft> v"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   852
  and rbt_del_from_right_rbt_less: "\<lbrakk>lt |\<guillemotleft> v; rt |\<guillemotleft> v; k < v\<rbrakk> \<Longrightarrow> rbt_del_from_right x lt k y rt |\<guillemotleft> v"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   853
  and rbt_del_rbt_less: "lt |\<guillemotleft> v \<Longrightarrow> rbt_del x lt |\<guillemotleft> v"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   854
by (induct x lt k y rt and x lt k y rt and x lt rule: rbt_del_from_left_rbt_del_from_right_rbt_del.induct) 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   855
   (auto simp: balance_left_rbt_less balance_right_rbt_less)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   856
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   857
lemma rbt_del_from_left_rbt_greater: "\<lbrakk>v \<guillemotleft>| lt; v \<guillemotleft>| rt; k > v\<rbrakk> \<Longrightarrow> v \<guillemotleft>| rbt_del_from_left x lt k y rt"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   858
  and rbt_del_from_right_rbt_greater: "\<lbrakk>v \<guillemotleft>| lt; v \<guillemotleft>| rt; k > v\<rbrakk> \<Longrightarrow> v \<guillemotleft>| rbt_del_from_right x lt k y rt"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   859
  and rbt_del_rbt_greater: "v \<guillemotleft>| lt \<Longrightarrow> v \<guillemotleft>| rbt_del x lt"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   860
by (induct x lt k y rt and x lt k y rt and x lt rule: rbt_del_from_left_rbt_del_from_right_rbt_del.induct)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   861
   (auto simp: balance_left_rbt_greater balance_right_rbt_greater)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   862
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   863
lemma "\<lbrakk>rbt_sorted lt; rbt_sorted rt; lt |\<guillemotleft> k; k \<guillemotleft>| rt\<rbrakk> \<Longrightarrow> rbt_sorted (rbt_del_from_left x lt k y rt)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   864
  and "\<lbrakk>rbt_sorted lt; rbt_sorted rt; lt |\<guillemotleft> k; k \<guillemotleft>| rt\<rbrakk> \<Longrightarrow> rbt_sorted (rbt_del_from_right x lt k y rt)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   865
  and rbt_del_rbt_sorted: "rbt_sorted lt \<Longrightarrow> rbt_sorted (rbt_del x lt)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   866
proof (induct x lt k y rt and x lt k y rt and x lt rule: rbt_del_from_left_rbt_del_from_right_rbt_del.induct)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   867
  case (3 x lta zz v rta yy ss bb)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   868
  from 3 have "Branch B lta zz v rta |\<guillemotleft> yy" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   869
  hence "rbt_del x (Branch B lta zz v rta) |\<guillemotleft> yy" by (rule rbt_del_rbt_less)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   870
  with 3 show ?case by (simp add: balance_left_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   871
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   872
  case ("4_2" x vaa vbb vdd vc yy ss bb)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   873
  hence "Branch R vaa vbb vdd vc |\<guillemotleft> yy" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   874
  hence "rbt_del x (Branch R vaa vbb vdd vc) |\<guillemotleft> yy" by (rule rbt_del_rbt_less)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   875
  with "4_2" show ?case by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   876
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   877
  case (5 x aa yy ss lta zz v rta) 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   878
  hence "yy \<guillemotleft>| Branch B lta zz v rta" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   879
  hence "yy \<guillemotleft>| rbt_del x (Branch B lta zz v rta)" by (rule rbt_del_rbt_greater)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   880
  with 5 show ?case by (simp add: balance_right_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   881
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   882
  case ("6_2" x aa yy ss vaa vbb vdd vc)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   883
  hence "yy \<guillemotleft>| Branch R vaa vbb vdd vc" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   884
  hence "yy \<guillemotleft>| rbt_del x (Branch R vaa vbb vdd vc)" by (rule rbt_del_rbt_greater)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   885
  with "6_2" show ?case by simp
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   886
qed (auto simp: combine_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   887
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   888
lemma "\<lbrakk>rbt_sorted lt; rbt_sorted rt; lt |\<guillemotleft> kt; kt \<guillemotleft>| rt; inv1 lt; inv1 rt; inv2 lt; inv2 rt; bheight lt = bheight rt; x < kt\<rbrakk> \<Longrightarrow> entry_in_tree k v (rbt_del_from_left x lt kt y rt) = (False \<or> (x \<noteq> k \<and> entry_in_tree k v (Branch c lt kt y rt)))"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   889
  and "\<lbrakk>rbt_sorted lt; rbt_sorted rt; lt |\<guillemotleft> kt; kt \<guillemotleft>| rt; inv1 lt; inv1 rt; inv2 lt; inv2 rt; bheight lt = bheight rt; x > kt\<rbrakk> \<Longrightarrow> entry_in_tree k v (rbt_del_from_right x lt kt y rt) = (False \<or> (x \<noteq> k \<and> entry_in_tree k v (Branch c lt kt y rt)))"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   890
  and rbt_del_in_tree: "\<lbrakk>rbt_sorted t; inv1 t; inv2 t\<rbrakk> \<Longrightarrow> entry_in_tree k v (rbt_del x t) = (False \<or> (x \<noteq> k \<and> entry_in_tree k v t))"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   891
proof (induct x lt kt y rt and x lt kt y rt and x t rule: rbt_del_from_left_rbt_del_from_right_rbt_del.induct)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   892
  case (2 xx c aa yy ss bb)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   893
  have "xx = yy \<or> xx < yy \<or> xx > yy" by auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   894
  from this 2 show ?case proof (elim disjE)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   895
    assume "xx = yy"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   896
    with 2 show ?thesis proof (cases "xx = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   897
      case True
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   898
      from 2 `xx = yy` `xx = k` have "rbt_sorted (Branch c aa yy ss bb) \<and> k = yy" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   899
      hence "\<not> entry_in_tree k v aa" "\<not> entry_in_tree k v bb" by (auto simp: rbt_less_nit rbt_greater_prop)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   900
      with `xx = yy` 2 `xx = k` show ?thesis by (simp add: combine_in_tree)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   901
    qed (simp add: combine_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   902
  qed simp+
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   903
next    
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   904
  case (3 xx lta zz vv rta yy ss bb)
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   905
  def mt[simp]: mt == "Branch B lta zz vv rta"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   906
  from 3 have "inv2 mt \<and> inv1 mt" by simp
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   907
  hence "inv2 (rbt_del xx mt) \<and> (color_of mt = R \<and> bheight (rbt_del xx mt) = bheight mt \<and> inv1 (rbt_del xx mt) \<or> color_of mt = B \<and> bheight (rbt_del xx mt) = bheight mt - 1 \<and> inv1l (rbt_del xx mt))" by (blast dest: rbt_del_inv1_inv2)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   908
  with 3 have 4: "entry_in_tree k v (rbt_del_from_left xx mt yy ss bb) = (False \<or> xx \<noteq> k \<and> entry_in_tree k v mt \<or> (k = yy \<and> v = ss) \<or> entry_in_tree k v bb)" by (simp add: balance_left_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   909
  thus ?case proof (cases "xx = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   910
    case True
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   911
    from 3 True have "yy \<guillemotleft>| bb \<and> yy > k" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   912
    hence "k \<guillemotleft>| bb" by (blast dest: rbt_greater_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   913
    with 3 4 True show ?thesis by (auto simp: rbt_greater_nit)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   914
  qed auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   915
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   916
  case ("4_1" xx yy ss bb)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   917
  show ?case proof (cases "xx = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   918
    case True
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   919
    with "4_1" have "yy \<guillemotleft>| bb \<and> k < yy" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   920
    hence "k \<guillemotleft>| bb" by (blast dest: rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   921
    with "4_1" `xx = k` 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   922
   have "entry_in_tree k v (Branch R Empty yy ss bb) = entry_in_tree k v Empty" by (auto simp: rbt_greater_nit)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   923
    thus ?thesis by auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   924
  qed simp+
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   925
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   926
  case ("4_2" xx vaa vbb vdd vc yy ss bb)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   927
  thus ?case proof (cases "xx = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   928
    case True
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   929
    with "4_2" have "k < yy \<and> yy \<guillemotleft>| bb" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   930
    hence "k \<guillemotleft>| bb" by (blast dest: rbt_greater_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   931
    with True "4_2" show ?thesis by (auto simp: rbt_greater_nit)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   932
  qed auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   933
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   934
  case (5 xx aa yy ss lta zz vv rta)
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   935
  def mt[simp]: mt == "Branch B lta zz vv rta"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   936
  from 5 have "inv2 mt \<and> inv1 mt" by simp
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   937
  hence "inv2 (rbt_del xx mt) \<and> (color_of mt = R \<and> bheight (rbt_del xx mt) = bheight mt \<and> inv1 (rbt_del xx mt) \<or> color_of mt = B \<and> bheight (rbt_del xx mt) = bheight mt - 1 \<and> inv1l (rbt_del xx mt))" by (blast dest: rbt_del_inv1_inv2)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   938
  with 5 have 3: "entry_in_tree k v (rbt_del_from_right xx aa yy ss mt) = (entry_in_tree k v aa \<or> (k = yy \<and> v = ss) \<or> False \<or> xx \<noteq> k \<and> entry_in_tree k v mt)" by (simp add: balance_right_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   939
  thus ?case proof (cases "xx = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   940
    case True
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   941
    from 5 True have "aa |\<guillemotleft> yy \<and> yy < k" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   942
    hence "aa |\<guillemotleft> k" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   943
    with 3 5 True show ?thesis by (auto simp: rbt_less_nit)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   944
  qed auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   945
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   946
  case ("6_1" xx aa yy ss)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   947
  show ?case proof (cases "xx = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   948
    case True
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   949
    with "6_1" have "aa |\<guillemotleft> yy \<and> k > yy" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   950
    hence "aa |\<guillemotleft> k" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   951
    with "6_1" `xx = k` show ?thesis by (auto simp: rbt_less_nit)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   952
  qed simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   953
next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   954
  case ("6_2" xx aa yy ss vaa vbb vdd vc)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   955
  thus ?case proof (cases "xx = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   956
    case True
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   957
    with "6_2" have "k > yy \<and> aa |\<guillemotleft> yy" by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   958
    hence "aa |\<guillemotleft> k" by (blast dest: rbt_less_trans)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   959
    with True "6_2" show ?thesis by (auto simp: rbt_less_nit)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
   960
  qed auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   961
qed simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   962
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   963
definition (in ord) rbt_delete where
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   964
  "rbt_delete k t = paint B (rbt_del k t)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   965
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   966
theorem rbt_delete_is_rbt [simp]: assumes "is_rbt t" shows "is_rbt (rbt_delete k t)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   967
proof -
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   968
  from assms have "inv2 t" and "inv1 t" unfolding is_rbt_def by auto 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   969
  hence "inv2 (rbt_del k t) \<and> (color_of t = R \<and> bheight (rbt_del k t) = bheight t \<and> inv1 (rbt_del k t) \<or> color_of t = B \<and> bheight (rbt_del k t) = bheight t - 1 \<and> inv1l (rbt_del k t))" by (rule rbt_del_inv1_inv2)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   970
  hence "inv2 (rbt_del k t) \<and> inv1l (rbt_del k t)" by (cases "color_of t") auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   971
  with assms show ?thesis
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   972
    unfolding is_rbt_def rbt_delete_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   973
    by (auto intro: paint_rbt_sorted rbt_del_rbt_sorted)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   974
qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   975
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   976
lemma rbt_delete_in_tree: 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   977
  assumes "is_rbt t" 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   978
  shows "entry_in_tree k v (rbt_delete x t) = (x \<noteq> k \<and> entry_in_tree k v t)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   979
  using assms unfolding is_rbt_def rbt_delete_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   980
  by (auto simp: rbt_del_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   981
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   982
lemma rbt_lookup_rbt_delete:
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   983
  assumes is_rbt: "is_rbt t"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   984
  shows "rbt_lookup (rbt_delete k t) = (rbt_lookup t)|`(-{k})"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   985
proof
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   986
  fix x
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   987
  show "rbt_lookup (rbt_delete k t) x = (rbt_lookup t |` (-{k})) x" 
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   988
  proof (cases "x = k")
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   989
    assume "x = k" 
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
   990
    with is_rbt show ?thesis
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   991
      by (cases "rbt_lookup (rbt_delete k t) k") (auto simp: rbt_lookup_in_tree rbt_delete_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   992
  next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   993
    assume "x \<noteq> k"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   994
    thus ?thesis
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   995
      by auto (metis is_rbt rbt_delete_is_rbt rbt_delete_in_tree is_rbt_rbt_sorted rbt_lookup_from_in_tree)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   996
  qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   997
qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
   998
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
   999
end
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1000
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1001
subsection {* Union *}
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1002
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1003
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1004
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1005
primrec rbt_union_with_key :: "('a \<Rightarrow> 'b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1006
where
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1007
  "rbt_union_with_key f t Empty = t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1008
| "rbt_union_with_key f t (Branch c lt k v rt) = rbt_union_with_key f (rbt_union_with_key f (rbt_insert_with_key f k v t) lt) rt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1009
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1010
definition rbt_union_with where
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1011
  "rbt_union_with f = rbt_union_with_key (\<lambda>_. f)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1012
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1013
definition rbt_union where
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1014
  "rbt_union = rbt_union_with_key (%_ _ rv. rv)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1015
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1016
end
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1017
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1018
context linorder begin
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1019
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1020
lemma rbt_unionwk_rbt_sorted: "rbt_sorted lt \<Longrightarrow> rbt_sorted (rbt_union_with_key f lt rt)" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1021
  by (induct rt arbitrary: lt) (auto simp: rbt_insertwk_rbt_sorted)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1022
theorem rbt_unionwk_is_rbt[simp]: "is_rbt lt \<Longrightarrow> is_rbt (rbt_union_with_key f lt rt)" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1023
  by (induct rt arbitrary: lt) (simp add: rbt_insertwk_is_rbt)+
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1024
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1025
theorem rbt_unionw_is_rbt: "is_rbt lt \<Longrightarrow> is_rbt (rbt_union_with f lt rt)" unfolding rbt_union_with_def by simp
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1026
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1027
theorem rbt_union_is_rbt: "is_rbt lt \<Longrightarrow> is_rbt (rbt_union lt rt)" unfolding rbt_union_def by simp
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1028
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1029
lemma (in ord) rbt_union_Branch[simp]:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1030
  "rbt_union t (Branch c lt k v rt) = rbt_union (rbt_union (rbt_insert k v t) lt) rt"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1031
  unfolding rbt_union_def rbt_insert_def
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1032
  by simp
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1033
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1034
lemma rbt_lookup_rbt_union:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1035
  assumes "is_rbt s" "rbt_sorted t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1036
  shows "rbt_lookup (rbt_union s t) = rbt_lookup s ++ rbt_lookup t"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1037
using assms
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1038
proof (induct t arbitrary: s)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1039
  case Empty thus ?case by (auto simp: rbt_union_def)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1040
next
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
  1041
  case (Branch c l k v r s)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1042
  then have "rbt_sorted r" "rbt_sorted l" "l |\<guillemotleft> k" "k \<guillemotleft>| r" by auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1043
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1044
  have meq: "rbt_lookup s(k \<mapsto> v) ++ rbt_lookup l ++ rbt_lookup r =
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1045
    rbt_lookup s ++
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1046
    (\<lambda>a. if a < k then rbt_lookup l a
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1047
    else if k < a then rbt_lookup r a else Some v)" (is "?m1 = ?m2")
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1048
  proof (rule ext)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1049
    fix a
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1050
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1051
   have "k < a \<or> k = a \<or> k > a" by auto
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1052
    thus "?m1 a = ?m2 a"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1053
    proof (elim disjE)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1054
      assume "k < a"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1055
      with `l |\<guillemotleft> k` have "l |\<guillemotleft> a" by (rule rbt_less_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1056
      with `k < a` show ?thesis
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1057
        by (auto simp: map_add_def split: option.splits)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1058
    next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1059
      assume "k = a"
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1060
      with `l |\<guillemotleft> k` `k \<guillemotleft>| r` 
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1061
      show ?thesis by (auto simp: map_add_def)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1062
    next
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1063
      assume "a < k"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1064
      from this `k \<guillemotleft>| r` have "a \<guillemotleft>| r" by (rule rbt_greater_trans)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1065
      with `a < k` show ?thesis
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1066
        by (auto simp: map_add_def split: option.splits)
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1067
    qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1068
  qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1069
48621
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1070
  from Branch have is_rbt: "is_rbt (rbt_union (rbt_insert k v s) l)"
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1071
    by (auto intro: rbt_union_is_rbt rbt_insert_is_rbt)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1072
  with Branch have IHs:
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1073
    "rbt_lookup (rbt_union (rbt_union (rbt_insert k v s) l) r) = rbt_lookup (rbt_union (rbt_insert k v s) l) ++ rbt_lookup r"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1074
    "rbt_lookup (rbt_union (rbt_insert k v s) l) = rbt_lookup (rbt_insert k v s) ++ rbt_lookup l"
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1075
    by auto
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1076
  
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1077
  with meq show ?case
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1078
    by (auto simp: rbt_lookup_rbt_insert[OF Branch(3)])
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1079
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1080
qed
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1081
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1082
end
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1083
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1084
subsection {* Modifying existing entries *}
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1085
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1086
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1087
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1088
primrec
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1089
  rbt_map_entry :: "'a \<Rightarrow> ('b \<Rightarrow> 'b) \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1090
where
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1091
  "rbt_map_entry k f Empty = Empty"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1092
| "rbt_map_entry k f (Branch c lt x v rt) =
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1093
    (if k < x then Branch c (rbt_map_entry k f lt) x v rt
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1094
    else if k > x then (Branch c lt x v (rbt_map_entry k f rt))
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
  1095
    else Branch c lt x (f v) rt)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1096
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1097
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1098
lemma rbt_map_entry_color_of: "color_of (rbt_map_entry k f t) = color_of t" by (induct t) simp+
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1099
lemma rbt_map_entry_inv1: "inv1 (rbt_map_entry k f t) = inv1 t" by (induct t) (simp add: rbt_map_entry_color_of)+
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1100
lemma rbt_map_entry_inv2: "inv2 (rbt_map_entry k f t) = inv2 t" "bheight (rbt_map_entry k f t) = bheight t" by (induct t) simp+
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1101
lemma rbt_map_entry_rbt_greater: "rbt_greater a (rbt_map_entry k f t) = rbt_greater a t" by (induct t) simp+
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1102
lemma rbt_map_entry_rbt_less: "rbt_less a (rbt_map_entry k f t) = rbt_less a t" by (induct t) simp+
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1103
lemma rbt_map_entry_rbt_sorted: "rbt_sorted (rbt_map_entry k f t) = rbt_sorted t"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1104
  by (induct t) (simp_all add: rbt_map_entry_rbt_less rbt_map_entry_rbt_greater)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1105
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1106
theorem rbt_map_entry_is_rbt [simp]: "is_rbt (rbt_map_entry k f t) = is_rbt t" 
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1107
unfolding is_rbt_def by (simp add: rbt_map_entry_inv2 rbt_map_entry_color_of rbt_map_entry_rbt_sorted rbt_map_entry_inv1 )
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1108
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1109
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1110
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1111
theorem (in linorder) rbt_lookup_rbt_map_entry:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1112
  "rbt_lookup (rbt_map_entry k f t) = (rbt_lookup t)(k := Option.map f (rbt_lookup t k))"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
  1113
  by (induct t) (auto split: option.splits simp add: fun_eq_iff)
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1114
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1115
subsection {* Mapping all entries *}
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1116
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1117
primrec
35602
e814157560e8 various refinements
haftmann
parents: 35550
diff changeset
  1118
  map :: "('a \<Rightarrow> 'b \<Rightarrow> 'c) \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'c) rbt"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1119
where
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1120
  "map f Empty = Empty"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1121
| "map f (Branch c lt k v rt) = Branch c (map f lt) k (f k v) (map f rt)"
32237
cdc76a42fed4 added missing proof of RBT.map_of_alist_of (contributed by Peter Lammich)
krauss
parents: 30738
diff changeset
  1122
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1123
lemma map_entries [simp]: "entries (map f t) = List.map (\<lambda>(k, v). (k, f k v)) (entries t)"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1124
  by (induct t) auto
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1125
lemma map_keys [simp]: "keys (map f t) = keys t" by (simp add: keys_def split_def)
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1126
lemma map_color_of: "color_of (map f t) = color_of t" by (induct t) simp+
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1127
lemma map_inv1: "inv1 (map f t) = inv1 t" by (induct t) (simp add: map_color_of)+
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1128
lemma map_inv2: "inv2 (map f t) = inv2 t" "bheight (map f t) = bheight t" by (induct t) simp+
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1129
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1130
context ord begin
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1131
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1132
lemma map_rbt_greater: "rbt_greater k (map f t) = rbt_greater k t" by (induct t) simp+
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1133
lemma map_rbt_less: "rbt_less k (map f t) = rbt_less k t" by (induct t) simp+
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1134
lemma map_rbt_sorted: "rbt_sorted (map f t) = rbt_sorted t"  by (induct t) (simp add: map_rbt_less map_rbt_greater)+
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1135
theorem map_is_rbt [simp]: "is_rbt (map f t) = is_rbt t" 
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1136
unfolding is_rbt_def by (simp add: map_inv1 map_inv2 map_rbt_sorted map_color_of)
32237
cdc76a42fed4 added missing proof of RBT.map_of_alist_of (contributed by Peter Lammich)
krauss
parents: 30738
diff changeset
  1137
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1138
end
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1139
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1140
theorem (in linorder) rbt_lookup_map: "rbt_lookup (map f t) x = Option.map (f x) (rbt_lookup t x)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1141
  apply(induct t)
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1142
  apply auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1143
  apply(subgoal_tac "x = a")
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1144
  apply auto
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1145
  done
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1146
 (* FIXME: simproc "antisym less" does not work for linorder context, only for linorder type class
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1147
    by (induct t) auto *)
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1148
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1149
subsection {* Folding over entries *}
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1150
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1151
definition fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> ('a, 'b) rbt \<Rightarrow> 'c \<Rightarrow> 'c" where
46133
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 45990
diff changeset
  1152
  "fold f t = List.fold (prod_case f) (entries t)"
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1153
35550
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1154
lemma fold_simps [simp, code]:
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1155
  "fold f Empty = id"
e2bc7f8d8d51 restructured RBT theory
haftmann
parents: 35534
diff changeset
  1156
  "fold f (Branch c lt k v rt) = fold f rt \<circ> f k v \<circ> fold f lt"
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
  1157
  by (simp_all add: fold_def fun_eq_iff)
35534
14d8d72f8b1f more explicit naming scheme
haftmann
parents: 32245
diff changeset
  1158
48621
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1159
(* fold with continuation predicate *)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1160
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1161
fun foldi :: "('c \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> ('a :: linorder, 'b) rbt \<Rightarrow> 'c \<Rightarrow> 'c" 
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1162
  where
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1163
  "foldi c f Empty s = s" |
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1164
  "foldi c f (Branch col l k v r) s = (
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1165
    if (c s) then
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1166
      let s' = foldi c f l s in
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1167
        if (c s') then
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1168
          foldi c f r (f k v s')
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1169
        else s'
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1170
    else 
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1171
      s
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47455
diff changeset
  1172
  )"
35606
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1173
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1174
subsection {* Bulkloading a tree *}
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1175
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1176
definition (in ord) rbt_bulkload :: "('a \<times> 'b) list \<Rightarrow> ('a, 'b) rbt" where
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1177
  "rbt_bulkload xs = foldr (\<lambda>(k, v). rbt_insert k v) xs Empty"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1178
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1179
context linorder begin
35606
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1180
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1181
lemma rbt_bulkload_is_rbt [simp, intro]:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1182
  "is_rbt (rbt_bulkload xs)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1183
  unfolding rbt_bulkload_def by (induct xs) auto
35606
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1184
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1185
lemma rbt_lookup_rbt_bulkload:
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1186
  "rbt_lookup (rbt_bulkload xs) = map_of xs"
35606
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1187
proof -
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1188
  obtain ys where "ys = rev xs" by simp
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1189
  have "\<And>t. is_rbt t \<Longrightarrow>
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1190
    rbt_lookup (List.fold (prod_case rbt_insert) ys t) = rbt_lookup t ++ map_of (rev ys)"
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1191
      by (induct ys) (simp_all add: rbt_bulkload_def rbt_lookup_rbt_insert prod_case_beta)
35606
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1192
  from this Empty_is_rbt have
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1193
    "rbt_lookup (List.fold (prod_case rbt_insert) (rev xs) Empty) = rbt_lookup Empty ++ map_of xs"
35606
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1194
     by (simp add: `ys = rev xs`)
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1195
  then show ?thesis by (simp add: rbt_bulkload_def rbt_lookup_Empty foldr_conv_fold)
35606
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1196
qed
7c5b40c7e8c4 added bulkload; tuned document
haftmann
parents: 35603
diff changeset
  1197
47450
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1198
end
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1199
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1200
lemmas [code] =
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1201
  ord.rbt_less_prop
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1202
  ord.rbt_greater_prop
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1203
  ord.rbt_sorted.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1204
  ord.rbt_lookup.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1205
  ord.is_rbt_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1206
  ord.rbt_ins.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1207
  ord.rbt_insert_with_key_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1208
  ord.rbt_insertw_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1209
  ord.rbt_insert_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1210
  ord.rbt_del_from_left.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1211
  ord.rbt_del_from_right.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1212
  ord.rbt_del.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1213
  ord.rbt_delete_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1214
  ord.rbt_union_with_key.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1215
  ord.rbt_union_with_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1216
  ord.rbt_union_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1217
  ord.rbt_map_entry.simps
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1218
  ord.rbt_bulkload_def
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1219
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1220
text {* Restore original type constraints for constants *}
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1221
setup {*
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1222
  fold Sign.add_const_constraint
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1223
    [(@{const_name rbt_less}, SOME @{typ "('a :: order) \<Rightarrow> ('a, 'b) rbt \<Rightarrow> bool"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1224
     (@{const_name rbt_greater}, SOME @{typ "('a :: order) \<Rightarrow> ('a, 'b) rbt \<Rightarrow> bool"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1225
     (@{const_name rbt_sorted}, SOME @{typ "('a :: linorder, 'b) rbt \<Rightarrow> bool"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1226
     (@{const_name rbt_lookup}, SOME @{typ "('a :: linorder, 'b) rbt \<Rightarrow> 'a \<rightharpoonup> 'b"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1227
     (@{const_name is_rbt}, SOME @{typ "('a :: linorder, 'b) rbt \<Rightarrow> bool"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1228
     (@{const_name rbt_ins}, SOME @{typ "('a\<Colon>linorder \<Rightarrow> 'b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1229
     (@{const_name rbt_insert_with_key}, SOME @{typ "('a\<Colon>linorder \<Rightarrow> 'b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1230
     (@{const_name rbt_insert_with}, SOME @{typ "('b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a :: linorder) \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1231
     (@{const_name rbt_insert}, SOME @{typ "('a :: linorder) \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1232
     (@{const_name rbt_del_from_left}, SOME @{typ "('a\<Colon>linorder) \<Rightarrow> ('a,'b) rbt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1233
     (@{const_name rbt_del_from_right}, SOME @{typ "('a\<Colon>linorder) \<Rightarrow> ('a,'b) rbt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1234
     (@{const_name rbt_del}, SOME @{typ "('a\<Colon>linorder) \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1235
     (@{const_name rbt_delete}, SOME @{typ "('a\<Colon>linorder) \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1236
     (@{const_name rbt_union_with_key}, SOME @{typ "('a\<Colon>linorder \<Rightarrow> 'b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1237
     (@{const_name rbt_union_with}, SOME @{typ "('b \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a\<Colon>linorder,'b) rbt \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1238
     (@{const_name rbt_union}, SOME @{typ "('a\<Colon>linorder,'b) rbt \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1239
     (@{const_name rbt_map_entry}, SOME @{typ "'a\<Colon>linorder \<Rightarrow> ('b \<Rightarrow> 'b) \<Rightarrow> ('a,'b) rbt \<Rightarrow> ('a,'b) rbt"}),
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1240
     (@{const_name rbt_bulkload}, SOME @{typ "('a \<times> 'b) list \<Rightarrow> ('a\<Colon>linorder,'b) rbt"})]
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1241
*}
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1242
2ada2be850cb move RBT implementation into type class contexts
Andreas Lochbihler
parents: 47397
diff changeset
  1243
hide_const (open) R B Empty entries keys map fold
26192
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1244
52617dca8386 new theory of red-black trees, an efficient implementation of finite maps.
krauss
parents:
diff changeset
  1245
end