| author | Andreas Lochbihler |
| Thu, 31 May 2012 16:58:38 +0200 | |
| changeset 48051 | 53a0df441e20 |
| parent 47888 | 45bf22d8a81d |
| child 48621 | 877df57629e3 |
| permissions | -rw-r--r-- |
| 47308 | 1 |
(* Title: HOL/Quotient_Examples/Lift_RBT.thy |
2 |
Author: Lukas Bulwahn and Ondrej Kuncar |
|
3 |
*) |
|
| 45577 | 4 |
|
5 |
header {* Lifting operations of RBT trees *}
|
|
6 |
||
7 |
theory Lift_RBT |
|
8 |
imports Main "~~/src/HOL/Library/RBT_Impl" |
|
9 |
begin |
|
10 |
||
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
11 |
(* TODO: Replace the ancient Library/RBT theory by this example of the lifting and transfer mechanism. *) |
|
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
12 |
|
| 45577 | 13 |
subsection {* Type definition *}
|
14 |
||
| 47097 | 15 |
typedef (open) ('a, 'b) rbt = "{t :: ('a\<Colon>linorder, 'b) RBT_Impl.rbt. is_rbt t}"
|
16 |
morphisms impl_of RBT |
|
17 |
proof - |
|
18 |
have "RBT_Impl.Empty \<in> ?rbt" by simp |
|
19 |
then show ?thesis .. |
|
20 |
qed |
|
| 45577 | 21 |
|
22 |
lemma rbt_eq_iff: |
|
23 |
"t1 = t2 \<longleftrightarrow> impl_of t1 = impl_of t2" |
|
24 |
by (simp add: impl_of_inject) |
|
25 |
||
26 |
lemma rbt_eqI: |
|
27 |
"impl_of t1 = impl_of t2 \<Longrightarrow> t1 = t2" |
|
28 |
by (simp add: rbt_eq_iff) |
|
29 |
||
30 |
lemma is_rbt_impl_of [simp, intro]: |
|
31 |
"is_rbt (impl_of t)" |
|
32 |
using impl_of [of t] by simp |
|
33 |
||
34 |
lemma RBT_impl_of [simp, code abstype]: |
|
35 |
"RBT (impl_of t) = t" |
|
36 |
by (simp add: impl_of_inverse) |
|
37 |
||
38 |
subsection {* Primitive operations *}
|
|
39 |
||
| 47097 | 40 |
setup_lifting type_definition_rbt |
41 |
||
| 47451 | 42 |
lift_definition lookup :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'a \<rightharpoonup> 'b" is "rbt_lookup"
|
| 47308 | 43 |
by simp |
44 |
||
45 |
lift_definition empty :: "('a\<Colon>linorder, 'b) rbt" is RBT_Impl.Empty
|
|
46 |
by (simp add: empty_def) |
|
47 |
||
| 47451 | 48 |
lift_definition insert :: "'a\<Colon>linorder \<Rightarrow> 'b \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is "rbt_insert"
|
| 47308 | 49 |
by simp |
50 |
||
| 47451 | 51 |
lift_definition delete :: "'a\<Colon>linorder \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is "rbt_delete"
|
| 47308 | 52 |
by simp |
53 |
||
54 |
lift_definition entries :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a \<times> 'b) list" is RBT_Impl.entries
|
|
| 47093 | 55 |
by simp |
| 45577 | 56 |
|
| 47308 | 57 |
lift_definition keys :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'a list" is RBT_Impl.keys
|
58 |
by simp |
|
| 45577 | 59 |
|
| 47451 | 60 |
lift_definition bulkload :: "('a\<Colon>linorder \<times> 'b) list \<Rightarrow> ('a, 'b) rbt" is "rbt_bulkload"
|
| 47097 | 61 |
by simp |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
62 |
|
| 47451 | 63 |
lift_definition map_entry :: "'a \<Rightarrow> ('b \<Rightarrow> 'b) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is rbt_map_entry
|
| 47308 | 64 |
by simp |
65 |
||
66 |
lift_definition map :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is RBT_Impl.map
|
|
67 |
by simp |
|
68 |
||
69 |
lift_definition fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'c \<Rightarrow> 'c" is RBT_Impl.fold
|
|
70 |
by simp |
|
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
71 |
|
| 47097 | 72 |
export_code lookup empty insert delete entries keys bulkload map_entry map fold in SML |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
73 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
74 |
subsection {* Derived operations *}
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
75 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
76 |
definition is_empty :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> bool" where
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
77 |
[code]: "is_empty t = (case impl_of t of RBT_Impl.Empty \<Rightarrow> True | _ \<Rightarrow> False)" |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
78 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
79 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
80 |
subsection {* Abstract lookup properties *}
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
81 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
82 |
lemma lookup_RBT: |
| 47451 | 83 |
"is_rbt t \<Longrightarrow> lookup (RBT t) = rbt_lookup t" |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
84 |
by (simp add: lookup_def RBT_inverse) |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
85 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
86 |
lemma lookup_impl_of: |
| 47451 | 87 |
"rbt_lookup (impl_of t) = lookup t" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
88 |
by transfer (rule refl) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
89 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
90 |
lemma entries_impl_of: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
91 |
"RBT_Impl.entries (impl_of t) = entries t" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
92 |
by transfer (rule refl) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
93 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
94 |
lemma keys_impl_of: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
95 |
"RBT_Impl.keys (impl_of t) = keys t" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
96 |
by transfer (rule refl) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
97 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
98 |
lemma lookup_empty [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
99 |
"lookup empty = Map.empty" |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
100 |
by (simp add: empty_def lookup_RBT fun_eq_iff) |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
101 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
102 |
lemma lookup_insert [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
103 |
"lookup (insert k v t) = (lookup t)(k \<mapsto> v)" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
104 |
by transfer (rule rbt_lookup_rbt_insert) |
| 45577 | 105 |
|
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
106 |
lemma lookup_delete [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
107 |
"lookup (delete k t) = (lookup t)(k := None)" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
108 |
by transfer (simp add: rbt_lookup_rbt_delete restrict_complement_singleton_eq) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
109 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
110 |
lemma map_of_entries [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
111 |
"map_of (entries t) = lookup t" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
112 |
by transfer (simp add: map_of_entries) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
113 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
114 |
lemma entries_lookup: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
115 |
"entries t1 = entries t2 \<longleftrightarrow> lookup t1 = lookup t2" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
116 |
by transfer (simp add: entries_rbt_lookup) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
117 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
118 |
lemma lookup_bulkload [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
119 |
"lookup (bulkload xs) = map_of xs" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
120 |
by transfer (rule rbt_lookup_rbt_bulkload) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
121 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
122 |
lemma lookup_map_entry [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
123 |
"lookup (map_entry k f t) = (lookup t)(k := Option.map f (lookup t k))" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
124 |
by transfer (rule rbt_lookup_rbt_map_entry) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
125 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
126 |
lemma lookup_map [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
127 |
"lookup (map f t) k = Option.map (f k) (lookup t k)" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
128 |
by transfer (rule rbt_lookup_map) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
129 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
130 |
lemma fold_fold: |
|
46133
d9fe85d3d2cd
incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents:
45629
diff
changeset
|
131 |
"fold f t = List.fold (prod_case f) (entries t)" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
132 |
by transfer (rule RBT_Impl.fold_def) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
133 |
|
| 47097 | 134 |
lemma impl_of_empty: |
135 |
"impl_of empty = RBT_Impl.Empty" |
|
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
136 |
by transfer (rule refl) |
| 47097 | 137 |
|
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
138 |
lemma is_empty_empty [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
139 |
"is_empty t \<longleftrightarrow> t = empty" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
140 |
unfolding is_empty_def by transfer (simp split: rbt.split) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
141 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
142 |
lemma RBT_lookup_empty [simp]: (*FIXME*) |
| 47451 | 143 |
"rbt_lookup t = Map.empty \<longleftrightarrow> t = RBT_Impl.Empty" |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
144 |
by (cases t) (auto simp add: fun_eq_iff) |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
145 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
146 |
lemma lookup_empty_empty [simp]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
147 |
"lookup t = Map.empty \<longleftrightarrow> t = empty" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
148 |
by transfer (rule RBT_lookup_empty) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
149 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
150 |
lemma sorted_keys [iff]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
151 |
"sorted (keys t)" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
152 |
by transfer (simp add: RBT_Impl.keys_def rbt_sorted_entries) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
153 |
|
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
154 |
lemma distinct_keys [iff]: |
|
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
155 |
"distinct (keys t)" |
|
47888
45bf22d8a81d
using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents:
47451
diff
changeset
|
156 |
by transfer (simp add: RBT_Impl.keys_def distinct_entries) |
|
45629
ef08425dd2d5
improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents:
45577
diff
changeset
|
157 |
|
| 45577 | 158 |
|
159 |
end |