tuned
authorkrauss
Tue, 28 Jul 2009 08:49:03 +0200
changeset 32245 0c1cb95a434d
parent 32244 a99723d77ae0
child 32246 d4f7934e9555
child 32263 8bc0fd4a23a0
tuned
src/HOL/Library/RBT.thy
--- a/src/HOL/Library/RBT.thy	Tue Jul 28 08:48:56 2009 +0200
+++ b/src/HOL/Library/RBT.thy	Tue Jul 28 08:49:03 2009 +0200
@@ -13,7 +13,7 @@
 datatype color = R | B
 datatype ('a,'b)"rbt" = Empty | Tr color "('a,'b)rbt" 'a 'b "('a,'b)rbt"
 
-(* Suchbaum-Eigenschaften *)
+text {* Search tree properties *}
 
 primrec
   pin_tree :: "'a \<Rightarrow> 'b \<Rightarrow> ('a,'b) rbt \<Rightarrow> bool"
@@ -340,9 +340,6 @@
 
 subsection {* Deletion *}
 
-(*definition
-  [simp]: "ibn t = (bh t > 0 \<and> treec t = B)"
-*)
 lemma bh_paintR'[simp]: "treec t = B \<Longrightarrow> bh (paint R t) = bh t - 1"
 by (cases t rule: rbt_cases) auto