src/HOL/Data_Structures/Tree234_Map.thy
changeset 61790 0494964bb226
parent 61686 e6784939d645
child 62130 90a3016a6c12
--- a/src/HOL/Data_Structures/Tree234_Map.thy	Sat Dec 05 16:13:28 2015 +0100
+++ b/src/HOL/Data_Structures/Tree234_Map.thy	Sat Dec 05 16:33:20 2015 +0100
@@ -113,7 +113,8 @@
 
 subsection "Functional correctness"
 
-lemma lookup: "sorted1(inorder t) \<Longrightarrow> lookup t x = map_of (inorder t) x"
+lemma lookup_map_of:
+  "sorted1(inorder t) \<Longrightarrow> lookup t x = map_of (inorder t) x"
 by (induction t) (auto simp: map_of_simps split: option.split)
 
 
@@ -163,11 +164,11 @@
 
 subsection \<open>Overall Correctness\<close>
 
-interpretation T234_Map: Map_by_Ordered
+interpretation Map_by_Ordered
 where empty = Leaf and lookup = lookup and update = update and delete = delete
 and inorder = inorder and inv = bal
 proof (standard, goal_cases)
-  case 2 thus ?case by(simp add: lookup)
+  case 2 thus ?case by(simp add: lookup_map_of)
 next
   case 3 thus ?case by(simp add: inorder_update)
 next