| author | wenzelm | 
| Thu, 15 Feb 2018 12:11:00 +0100 | |
| changeset 67613 | ce654b0e6d69 | 
| parent 67091 | 1393c2340eec | 
| child 67780 | 7655e6369c9f | 
| permissions | -rw-r--r-- | 
| 3981 | 1 | (* Title: HOL/Map.thy | 
| 2 | Author: Tobias Nipkow, based on a theory by David von Oheimb | |
| 13908 | 3 | Copyright 1997-2003 TU Muenchen | 
| 3981 | 4 | |
| 60838 | 5 | The datatype of "maps"; strongly resembles maps in VDM. | 
| 3981 | 6 | *) | 
| 7 | ||
| 60758 | 8 | section \<open>Maps\<close> | 
| 13914 | 9 | |
| 15131 | 10 | theory Map | 
| 15140 | 11 | imports List | 
| 15131 | 12 | begin | 
| 3981 | 13 | |
| 61069 | 14 | type_synonym ('a, 'b) "map" = "'a \<Rightarrow> 'b option" (infixr "\<rightharpoonup>" 0)
 | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19378diff
changeset | 15 | |
| 19378 | 16 | abbreviation | 
| 60838 | 17 | empty :: "'a \<rightharpoonup> 'b" where | 
| 60839 | 18 | "empty \<equiv> \<lambda>x. None" | 
| 19378 | 19 | |
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19378diff
changeset | 20 | definition | 
| 61069 | 21 |   map_comp :: "('b \<rightharpoonup> 'c) \<Rightarrow> ('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'c)"  (infixl "\<circ>\<^sub>m" 55) where
 | 
| 22 | "f \<circ>\<^sub>m g = (\<lambda>k. case g k of None \<Rightarrow> None | Some v \<Rightarrow> f v)" | |
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19378diff
changeset | 23 | |
| 20800 | 24 | definition | 
| 60839 | 25 |   map_add :: "('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'b)"  (infixl "++" 100) where
 | 
| 26 | "m1 ++ m2 = (\<lambda>x. case m2 x of None \<Rightarrow> m1 x | Some y \<Rightarrow> Some y)" | |
| 20800 | 27 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21210diff
changeset | 28 | definition | 
| 60839 | 29 |   restrict_map :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'a set \<Rightarrow> ('a \<rightharpoonup> 'b)"  (infixl "|`"  110) where
 | 
| 30 | "m|`A = (\<lambda>x. if x \<in> A then m x else None)" | |
| 13910 | 31 | |
| 21210 | 32 | notation (latex output) | 
| 19656 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19378diff
changeset | 33 |   restrict_map  ("_\<restriction>\<^bsub>_\<^esub>" [111,110] 110)
 | 
| 
09be06943252
tuned concrete syntax -- abbreviation/const_syntax;
 wenzelm parents: 
19378diff
changeset | 34 | |
| 20800 | 35 | definition | 
| 60839 | 36 |   dom :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'a set" where
 | 
| 37 |   "dom m = {a. m a \<noteq> None}"
 | |
| 20800 | 38 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21210diff
changeset | 39 | definition | 
| 60839 | 40 |   ran :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'b set" where
 | 
| 41 |   "ran m = {b. \<exists>a. m a = Some b}"
 | |
| 20800 | 42 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21210diff
changeset | 43 | definition | 
| 60839 | 44 |   map_le :: "('a \<rightharpoonup> 'b) \<Rightarrow> ('a \<rightharpoonup> 'b) \<Rightarrow> bool"  (infix "\<subseteq>\<^sub>m" 50) where
 | 
| 45 | "(m\<^sub>1 \<subseteq>\<^sub>m m\<^sub>2) \<longleftrightarrow> (\<forall>a \<in> dom m\<^sub>1. m\<^sub>1 a = m\<^sub>2 a)" | |
| 20800 | 46 | |
| 41229 
d797baa3d57c
replaced command 'nonterminals' by slightly modernized version 'nonterminal';
 wenzelm parents: 
39992diff
changeset | 47 | nonterminal maplets and maplet | 
| 14180 | 48 | |
| 5300 | 49 | syntax | 
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 50 |   "_maplet"  :: "['a, 'a] \<Rightarrow> maplet"             ("_ /\<mapsto>/ _")
 | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 51 |   "_maplets" :: "['a, 'a] \<Rightarrow> maplet"             ("_ /[\<mapsto>]/ _")
 | 
| 60839 | 52 |   ""         :: "maplet \<Rightarrow> maplets"             ("_")
 | 
| 53 |   "_Maplets" :: "[maplet, maplets] \<Rightarrow> maplets" ("_,/ _")
 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 54 |   "_MapUpd"  :: "['a \<rightharpoonup> 'b, maplets] \<Rightarrow> 'a \<rightharpoonup> 'b" ("_/'(_')" [900, 0] 900)
 | 
| 60839 | 55 |   "_Map"     :: "maplets \<Rightarrow> 'a \<rightharpoonup> 'b"            ("(1[_])")
 | 
| 3981 | 56 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 57 | syntax (ASCII) | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 58 |   "_maplet"  :: "['a, 'a] \<Rightarrow> maplet"             ("_ /|->/ _")
 | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 59 |   "_maplets" :: "['a, 'a] \<Rightarrow> maplet"             ("_ /[|->]/ _")
 | 
| 14180 | 60 | |
| 5300 | 61 | translations | 
| 60839 | 62 | "_MapUpd m (_Maplets xy ms)" \<rightleftharpoons> "_MapUpd (_MapUpd m xy) ms" | 
| 63 | "_MapUpd m (_maplet x y)" \<rightleftharpoons> "m(x := CONST Some y)" | |
| 64 | "_Map ms" \<rightleftharpoons> "_MapUpd (CONST empty) ms" | |
| 65 | "_Map (_Maplets ms1 ms2)" \<leftharpoondown> "_MapUpd (_Map ms1) ms2" | |
| 66 | "_Maplets ms1 (_Maplets ms2 ms3)" \<leftharpoondown> "_Maplets (_Maplets ms1 ms2) ms3" | |
| 14180 | 67 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 68 | primrec map_of :: "('a \<times> 'b) list \<Rightarrow> 'a \<rightharpoonup> 'b"
 | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 69 | where | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 70 | "map_of [] = empty" | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 71 | | "map_of (p # ps) = (map_of ps)(fst p \<mapsto> snd p)" | 
| 5300 | 72 | |
| 61955 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 73 | definition map_upds :: "('a \<rightharpoonup> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b list \<Rightarrow> 'a \<rightharpoonup> 'b"
 | 
| 
e96292f32c3c
former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
 wenzelm parents: 
61799diff
changeset | 74 | where "map_upds m xs ys = m ++ map_of (rev (zip xs ys))" | 
| 34941 | 75 | translations | 
| 60839 | 76 | "_MapUpd m (_maplets x y)" \<rightleftharpoons> "CONST map_upds m x y" | 
| 25965 | 77 | |
| 60839 | 78 | lemma map_of_Cons_code [code]: | 
| 25965 | 79 | "map_of [] k = None" | 
| 80 | "map_of ((l, v) # ps) k = (if l = k then Some v else map_of ps k)" | |
| 81 | by simp_all | |
| 82 | ||
| 20800 | 83 | |
| 60758 | 84 | subsection \<open>@{term [source] empty}\<close>
 | 
| 13908 | 85 | |
| 20800 | 86 | lemma empty_upd_none [simp]: "empty(x := None) = empty" | 
| 60839 | 87 | by (rule ext) simp | 
| 13908 | 88 | |
| 89 | ||
| 60758 | 90 | subsection \<open>@{term [source] map_upd}\<close>
 | 
| 13908 | 91 | |
| 60839 | 92 | lemma map_upd_triv: "t k = Some x \<Longrightarrow> t(k\<mapsto>x) = t" | 
| 93 | by (rule ext) simp | |
| 13908 | 94 | |
| 60839 | 95 | lemma map_upd_nonempty [simp]: "t(k\<mapsto>x) \<noteq> empty" | 
| 20800 | 96 | proof | 
| 97 | assume "t(k \<mapsto> x) = empty" | |
| 98 | then have "(t(k \<mapsto> x)) k = None" by simp | |
| 99 | then show False by simp | |
| 100 | qed | |
| 13908 | 101 | |
| 20800 | 102 | lemma map_upd_eqD1: | 
| 103 | assumes "m(a\<mapsto>x) = n(a\<mapsto>y)" | |
| 104 | shows "x = y" | |
| 105 | proof - | |
| 41550 | 106 | from assms have "(m(a\<mapsto>x)) a = (n(a\<mapsto>y)) a" by simp | 
| 20800 | 107 | then show ?thesis by simp | 
| 108 | qed | |
| 14100 | 109 | |
| 20800 | 110 | lemma map_upd_Some_unfold: | 
| 60838 | 111 | "((m(a\<mapsto>b)) x = Some y) = (x = a \<and> b = y \<or> x \<noteq> a \<and> m x = Some y)" | 
| 24331 | 112 | by auto | 
| 14100 | 113 | |
| 20800 | 114 | lemma image_map_upd [simp]: "x \<notin> A \<Longrightarrow> m(x \<mapsto> y) ` A = m ` A" | 
| 24331 | 115 | by auto | 
| 15303 | 116 | |
| 60839 | 117 | lemma finite_range_updI: "finite (range f) \<Longrightarrow> finite (range (f(a\<mapsto>b)))" | 
| 24331 | 118 | unfolding image_def | 
| 119 | apply (simp (no_asm_use) add:full_SetCompr_eq) | |
| 120 | apply (rule finite_subset) | |
| 121 | prefer 2 apply assumption | |
| 122 | apply (auto) | |
| 123 | done | |
| 13908 | 124 | |
| 125 | ||
| 60758 | 126 | subsection \<open>@{term [source] map_of}\<close>
 | 
| 13908 | 127 | |
| 15304 | 128 | lemma map_of_eq_None_iff: | 
| 24331 | 129 | "(map_of xys x = None) = (x \<notin> fst ` (set xys))" | 
| 130 | by (induct xys) simp_all | |
| 15304 | 131 | |
| 20800 | 132 | lemma map_of_eq_Some_iff [simp]: | 
| 24331 | 133 | "distinct(map fst xys) \<Longrightarrow> (map_of xys x = Some y) = ((x,y) \<in> set xys)" | 
| 134 | apply (induct xys) | |
| 135 | apply simp | |
| 136 | apply (auto simp: map_of_eq_None_iff [symmetric]) | |
| 137 | done | |
| 15304 | 138 | |
| 20800 | 139 | lemma Some_eq_map_of_iff [simp]: | 
| 24331 | 140 | "distinct(map fst xys) \<Longrightarrow> (Some y = map_of xys x) = ((x,y) \<in> set xys)" | 
| 60839 | 141 | by (auto simp del: map_of_eq_Some_iff simp: map_of_eq_Some_iff [symmetric]) | 
| 15304 | 142 | |
| 17724 | 143 | lemma map_of_is_SomeI [simp]: "\<lbrakk> distinct(map fst xys); (x,y) \<in> set xys \<rbrakk> | 
| 20800 | 144 | \<Longrightarrow> map_of xys x = Some y" | 
| 24331 | 145 | apply (induct xys) | 
| 146 | apply simp | |
| 147 | apply force | |
| 148 | done | |
| 15304 | 149 | |
| 20800 | 150 | lemma map_of_zip_is_None [simp]: | 
| 24331 | 151 | "length xs = length ys \<Longrightarrow> (map_of (zip xs ys) x = None) = (x \<notin> set xs)" | 
| 152 | by (induct rule: list_induct2) simp_all | |
| 15110 
78b5636eabc7
Added a number of new thms and the new function remove1
 nipkow parents: 
14739diff
changeset | 153 | |
| 26443 | 154 | lemma map_of_zip_is_Some: | 
| 155 | assumes "length xs = length ys" | |
| 156 | shows "x \<in> set xs \<longleftrightarrow> (\<exists>y. map_of (zip xs ys) x = Some y)" | |
| 157 | using assms by (induct rule: list_induct2) simp_all | |
| 158 | ||
| 159 | lemma map_of_zip_upd: | |
| 160 | fixes x :: 'a and xs :: "'a list" and ys zs :: "'b list" | |
| 161 | assumes "length ys = length xs" | |
| 162 | and "length zs = length xs" | |
| 163 | and "x \<notin> set xs" | |
| 164 | and "map_of (zip xs ys)(x \<mapsto> y) = map_of (zip xs zs)(x \<mapsto> z)" | |
| 165 | shows "map_of (zip xs ys) = map_of (zip xs zs)" | |
| 166 | proof | |
| 167 | fix x' :: 'a | |
| 168 | show "map_of (zip xs ys) x' = map_of (zip xs zs) x'" | |
| 169 | proof (cases "x = x'") | |
| 170 | case True | |
| 171 | from assms True map_of_zip_is_None [of xs ys x'] | |
| 172 | have "map_of (zip xs ys) x' = None" by simp | |
| 173 | moreover from assms True map_of_zip_is_None [of xs zs x'] | |
| 174 | have "map_of (zip xs zs) x' = None" by simp | |
| 175 | ultimately show ?thesis by simp | |
| 176 | next | |
| 177 | case False from assms | |
| 178 | have "(map_of (zip xs ys)(x \<mapsto> y)) x' = (map_of (zip xs zs)(x \<mapsto> z)) x'" by auto | |
| 179 | with False show ?thesis by simp | |
| 180 | qed | |
| 181 | qed | |
| 182 | ||
| 183 | lemma map_of_zip_inject: | |
| 184 | assumes "length ys = length xs" | |
| 185 | and "length zs = length xs" | |
| 186 | and dist: "distinct xs" | |
| 187 | and map_of: "map_of (zip xs ys) = map_of (zip xs zs)" | |
| 188 | shows "ys = zs" | |
| 60839 | 189 | using assms(1) assms(2)[symmetric] | 
| 190 | using dist map_of | |
| 191 | proof (induct ys xs zs rule: list_induct3) | |
| 26443 | 192 | case Nil show ?case by simp | 
| 193 | next | |
| 194 | case (Cons y ys x xs z zs) | |
| 60758 | 195 | from \<open>map_of (zip (x#xs) (y#ys)) = map_of (zip (x#xs) (z#zs))\<close> | 
| 26443 | 196 | have map_of: "map_of (zip xs ys)(x \<mapsto> y) = map_of (zip xs zs)(x \<mapsto> z)" by simp | 
| 197 | from Cons have "length ys = length xs" and "length zs = length xs" | |
| 198 | and "x \<notin> set xs" by simp_all | |
| 199 | then have "map_of (zip xs ys) = map_of (zip xs zs)" using map_of by (rule map_of_zip_upd) | |
| 60758 | 200 | with Cons.hyps \<open>distinct (x # xs)\<close> have "ys = zs" by simp | 
| 26443 | 201 | moreover from map_of have "y = z" by (rule map_upd_eqD1) | 
| 202 | ultimately show ?case by simp | |
| 203 | qed | |
| 204 | ||
| 66584 | 205 | lemma map_of_zip_nth: | 
| 206 | assumes "length xs = length ys" | |
| 207 | assumes "distinct xs" | |
| 208 | assumes "i < length ys" | |
| 209 | shows "map_of (zip xs ys) (xs ! i) = Some (ys ! i)" | |
| 210 | using assms proof (induct arbitrary: i rule: list_induct2) | |
| 211 | case Nil | |
| 212 | then show ?case by simp | |
| 213 | next | |
| 214 | case (Cons x xs y ys) | |
| 215 | then show ?case | |
| 216 | using less_Suc_eq_0_disj by auto | |
| 217 | qed | |
| 218 | ||
| 33635 | 219 | lemma map_of_zip_map: | 
| 220 | "map_of (zip xs (map f xs)) = (\<lambda>x. if x \<in> set xs then Some (f x) else None)" | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 221 | by (induct xs) (simp_all add: fun_eq_iff) | 
| 33635 | 222 | |
| 15110 
78b5636eabc7
Added a number of new thms and the new function remove1
 nipkow parents: 
14739diff
changeset | 223 | lemma finite_range_map_of: "finite (range (map_of xys))" | 
| 24331 | 224 | apply (induct xys) | 
| 225 | apply (simp_all add: image_constant) | |
| 226 | apply (rule finite_subset) | |
| 227 | prefer 2 apply assumption | |
| 228 | apply auto | |
| 229 | done | |
| 15110 
78b5636eabc7
Added a number of new thms and the new function remove1
 nipkow parents: 
14739diff
changeset | 230 | |
| 20800 | 231 | lemma map_of_SomeD: "map_of xs k = Some y \<Longrightarrow> (k, y) \<in> set xs" | 
| 60841 | 232 | by (induct xs) (auto split: if_splits) | 
| 13908 | 233 | |
| 20800 | 234 | lemma map_of_mapk_SomeI: | 
| 60839 | 235 | "inj f \<Longrightarrow> map_of t k = Some x \<Longrightarrow> | 
| 61032 
b57df8eecad6
standardized some occurences of ancient "split" alias
 haftmann parents: 
60841diff
changeset | 236 | map_of (map (case_prod (\<lambda>k. Pair (f k))) t) (f k) = Some x" | 
| 60839 | 237 | by (induct t) (auto simp: inj_eq) | 
| 13908 | 238 | |
| 60839 | 239 | lemma weak_map_of_SomeI: "(k, x) \<in> set l \<Longrightarrow> \<exists>x. map_of l k = Some x" | 
| 24331 | 240 | by (induct l) auto | 
| 13908 | 241 | |
| 20800 | 242 | lemma map_of_filter_in: | 
| 61032 
b57df8eecad6
standardized some occurences of ancient "split" alias
 haftmann parents: 
60841diff
changeset | 243 | "map_of xs k = Some z \<Longrightarrow> P k z \<Longrightarrow> map_of (filter (case_prod P) xs) k = Some z" | 
| 24331 | 244 | by (induct xs) auto | 
| 13908 | 245 | |
| 35607 | 246 | lemma map_of_map: | 
| 55466 | 247 | "map_of (map (\<lambda>(k, v). (k, f v)) xs) = map_option f \<circ> map_of xs" | 
| 60839 | 248 | by (induct xs) (auto simp: fun_eq_iff) | 
| 35607 | 249 | |
| 55466 | 250 | lemma dom_map_option: | 
| 251 | "dom (\<lambda>k. map_option (f k) (m k)) = dom m" | |
| 35607 | 252 | by (simp add: dom_def) | 
| 13908 | 253 | |
| 56545 | 254 | lemma dom_map_option_comp [simp]: | 
| 255 | "dom (map_option g \<circ> m) = dom m" | |
| 256 | using dom_map_option [of "\<lambda>_. g" m] by (simp add: comp_def) | |
| 257 | ||
| 13908 | 258 | |
| 60758 | 259 | subsection \<open>@{const map_option} related\<close>
 | 
| 13908 | 260 | |
| 67091 | 261 | lemma map_option_o_empty [simp]: "map_option f \<circ> empty = empty" | 
| 24331 | 262 | by (rule ext) simp | 
| 13908 | 263 | |
| 55466 | 264 | lemma map_option_o_map_upd [simp]: | 
| 67091 | 265 | "map_option f \<circ> m(a\<mapsto>b) = (map_option f \<circ> m)(a\<mapsto>f b)" | 
| 24331 | 266 | by (rule ext) simp | 
| 20800 | 267 | |
| 13908 | 268 | |
| 60758 | 269 | subsection \<open>@{term [source] map_comp} related\<close>
 | 
| 17391 | 270 | |
| 20800 | 271 | lemma map_comp_empty [simp]: | 
| 24331 | 272 | "m \<circ>\<^sub>m empty = empty" | 
| 273 | "empty \<circ>\<^sub>m m = empty" | |
| 60839 | 274 | by (auto simp: map_comp_def split: option.splits) | 
| 17391 | 275 | |
| 20800 | 276 | lemma map_comp_simps [simp]: | 
| 24331 | 277 | "m2 k = None \<Longrightarrow> (m1 \<circ>\<^sub>m m2) k = None" | 
| 278 | "m2 k = Some k' \<Longrightarrow> (m1 \<circ>\<^sub>m m2) k = m1 k'" | |
| 60839 | 279 | by (auto simp: map_comp_def) | 
| 17391 | 280 | |
| 281 | lemma map_comp_Some_iff: | |
| 24331 | 282 | "((m1 \<circ>\<^sub>m m2) k = Some v) = (\<exists>k'. m2 k = Some k' \<and> m1 k' = Some v)" | 
| 60839 | 283 | by (auto simp: map_comp_def split: option.splits) | 
| 17391 | 284 | |
| 285 | lemma map_comp_None_iff: | |
| 24331 | 286 | "((m1 \<circ>\<^sub>m m2) k = None) = (m2 k = None \<or> (\<exists>k'. m2 k = Some k' \<and> m1 k' = None)) " | 
| 60839 | 287 | by (auto simp: map_comp_def split: option.splits) | 
| 13908 | 288 | |
| 20800 | 289 | |
| 61799 | 290 | subsection \<open>\<open>++\<close>\<close> | 
| 13908 | 291 | |
| 14025 | 292 | lemma map_add_empty[simp]: "m ++ empty = m" | 
| 24331 | 293 | by(simp add: map_add_def) | 
| 13908 | 294 | |
| 14025 | 295 | lemma empty_map_add[simp]: "empty ++ m = m" | 
| 24331 | 296 | by (rule ext) (simp add: map_add_def split: option.split) | 
| 13908 | 297 | |
| 14025 | 298 | lemma map_add_assoc[simp]: "m1 ++ (m2 ++ m3) = (m1 ++ m2) ++ m3" | 
| 24331 | 299 | by (rule ext) (simp add: map_add_def split: option.split) | 
| 20800 | 300 | |
| 301 | lemma map_add_Some_iff: | |
| 67091 | 302 | "((m ++ n) k = Some x) = (n k = Some x \<or> n k = None \<and> m k = Some x)" | 
| 24331 | 303 | by (simp add: map_add_def split: option.split) | 
| 14025 | 304 | |
| 20800 | 305 | lemma map_add_SomeD [dest!]: | 
| 24331 | 306 | "(m ++ n) k = Some x \<Longrightarrow> n k = Some x \<or> n k = None \<and> m k = Some x" | 
| 307 | by (rule map_add_Some_iff [THEN iffD1]) | |
| 13908 | 308 | |
| 60839 | 309 | lemma map_add_find_right [simp]: "n k = Some xx \<Longrightarrow> (m ++ n) k = Some xx" | 
| 24331 | 310 | by (subst map_add_Some_iff) fast | 
| 13908 | 311 | |
| 67091 | 312 | lemma map_add_None [iff]: "((m ++ n) k = None) = (n k = None \<and> m k = None)" | 
| 24331 | 313 | by (simp add: map_add_def split: option.split) | 
| 13908 | 314 | |
| 60838 | 315 | lemma map_add_upd[simp]: "f ++ g(x\<mapsto>y) = (f ++ g)(x\<mapsto>y)" | 
| 24331 | 316 | by (rule ext) (simp add: map_add_def) | 
| 13908 | 317 | |
| 14186 | 318 | lemma map_add_upds[simp]: "m1 ++ (m2(xs[\<mapsto>]ys)) = (m1++m2)(xs[\<mapsto>]ys)" | 
| 24331 | 319 | by (simp add: map_upds_def) | 
| 14186 | 320 | |
| 32236 
0203e1006f1b
some lemmas about maps (contributed by Peter Lammich)
 krauss parents: 
31380diff
changeset | 321 | lemma map_add_upd_left: "m\<notin>dom e2 \<Longrightarrow> e1(m \<mapsto> u1) ++ e2 = (e1 ++ e2)(m \<mapsto> u1)" | 
| 
0203e1006f1b
some lemmas about maps (contributed by Peter Lammich)
 krauss parents: 
31380diff
changeset | 322 | by (rule ext) (auto simp: map_add_def dom_def split: option.split) | 
| 
0203e1006f1b
some lemmas about maps (contributed by Peter Lammich)
 krauss parents: 
31380diff
changeset | 323 | |
| 20800 | 324 | lemma map_of_append[simp]: "map_of (xs @ ys) = map_of ys ++ map_of xs" | 
| 24331 | 325 | unfolding map_add_def | 
| 326 | apply (induct xs) | |
| 327 | apply simp | |
| 328 | apply (rule ext) | |
| 63648 | 329 | apply (simp split: option.split) | 
| 24331 | 330 | done | 
| 13908 | 331 | |
| 14025 | 332 | lemma finite_range_map_of_map_add: | 
| 60839 | 333 | "finite (range f) \<Longrightarrow> finite (range (f ++ map_of l))" | 
| 24331 | 334 | apply (induct l) | 
| 335 | apply (auto simp del: fun_upd_apply) | |
| 336 | apply (erule finite_range_updI) | |
| 337 | done | |
| 13908 | 338 | |
| 20800 | 339 | lemma inj_on_map_add_dom [iff]: | 
| 24331 | 340 | "inj_on (m ++ m') (dom m') = inj_on m' (dom m')" | 
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
42163diff
changeset | 341 | by (fastforce simp: map_add_def dom_def inj_on_def split: option.splits) | 
| 20800 | 342 | |
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 343 | lemma map_upds_fold_map_upd: | 
| 35552 | 344 | "m(ks[\<mapsto>]vs) = foldl (\<lambda>m (k, v). m(k \<mapsto> v)) m (zip ks vs)" | 
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 345 | unfolding map_upds_def proof (rule sym, rule zip_obtain_same_length) | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 346 | fix ks :: "'a list" and vs :: "'b list" | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 347 | assume "length ks = length vs" | 
| 35552 | 348 | then show "foldl (\<lambda>m (k, v). m(k\<mapsto>v)) m (zip ks vs) = m ++ map_of (rev (zip ks vs))" | 
| 349 | by(induct arbitrary: m rule: list_induct2) simp_all | |
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 350 | qed | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 351 | |
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 352 | lemma map_add_map_of_foldr: | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 353 | "m ++ map_of ps = foldr (\<lambda>(k, v) m. m(k \<mapsto> v)) ps m" | 
| 60839 | 354 | by (induct ps) (auto simp: fun_eq_iff map_add_def) | 
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 355 | |
| 15304 | 356 | |
| 60758 | 357 | subsection \<open>@{term [source] restrict_map}\<close>
 | 
| 14100 | 358 | |
| 20800 | 359 | lemma restrict_map_to_empty [simp]: "m|`{} = empty"
 | 
| 24331 | 360 | by (simp add: restrict_map_def) | 
| 14186 | 361 | |
| 31380 | 362 | lemma restrict_map_insert: "f |` (insert a A) = (f |` A)(a := f a)" | 
| 60839 | 363 | by (auto simp: restrict_map_def) | 
| 31380 | 364 | |
| 20800 | 365 | lemma restrict_map_empty [simp]: "empty|`D = empty" | 
| 24331 | 366 | by (simp add: restrict_map_def) | 
| 14186 | 367 | |
| 15693 | 368 | lemma restrict_in [simp]: "x \<in> A \<Longrightarrow> (m|`A) x = m x" | 
| 24331 | 369 | by (simp add: restrict_map_def) | 
| 14100 | 370 | |
| 15693 | 371 | lemma restrict_out [simp]: "x \<notin> A \<Longrightarrow> (m|`A) x = None" | 
| 24331 | 372 | by (simp add: restrict_map_def) | 
| 14100 | 373 | |
| 15693 | 374 | lemma ran_restrictD: "y \<in> ran (m|`A) \<Longrightarrow> \<exists>x\<in>A. m x = Some y" | 
| 62390 | 375 | by (auto simp: restrict_map_def ran_def split: if_split_asm) | 
| 14100 | 376 | |
| 15693 | 377 | lemma dom_restrict [simp]: "dom (m|`A) = dom m \<inter> A" | 
| 62390 | 378 | by (auto simp: restrict_map_def dom_def split: if_split_asm) | 
| 14100 | 379 | |
| 15693 | 380 | lemma restrict_upd_same [simp]: "m(x\<mapsto>y)|`(-{x}) = m|`(-{x})"
 | 
| 24331 | 381 | by (rule ext) (auto simp: restrict_map_def) | 
| 14100 | 382 | |
| 15693 | 383 | lemma restrict_restrict [simp]: "m|`A|`B = m|`(A\<inter>B)" | 
| 24331 | 384 | by (rule ext) (auto simp: restrict_map_def) | 
| 14100 | 385 | |
| 20800 | 386 | lemma restrict_fun_upd [simp]: | 
| 24331 | 387 |   "m(x := y)|`D = (if x \<in> D then (m|`(D-{x}))(x := y) else m|`D)"
 | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 388 | by (simp add: restrict_map_def fun_eq_iff) | 
| 14186 | 389 | |
| 20800 | 390 | lemma fun_upd_None_restrict [simp]: | 
| 60839 | 391 |   "(m|`D)(x := None) = (if x \<in> D then m|`(D - {x}) else m|`D)"
 | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 392 | by (simp add: restrict_map_def fun_eq_iff) | 
| 14186 | 393 | |
| 20800 | 394 | lemma fun_upd_restrict: "(m|`D)(x := y) = (m|`(D-{x}))(x := y)"
 | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 395 | by (simp add: restrict_map_def fun_eq_iff) | 
| 14186 | 396 | |
| 20800 | 397 | lemma fun_upd_restrict_conv [simp]: | 
| 24331 | 398 |   "x \<in> D \<Longrightarrow> (m|`D)(x := y) = (m|`(D-{x}))(x := y)"
 | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 399 | by (simp add: restrict_map_def fun_eq_iff) | 
| 14186 | 400 | |
| 35159 
df38e92af926
added lemma map_of_map_restrict; generalized lemma dom_const
 haftmann parents: 
35115diff
changeset | 401 | lemma map_of_map_restrict: | 
| 
df38e92af926
added lemma map_of_map_restrict; generalized lemma dom_const
 haftmann parents: 
35115diff
changeset | 402 | "map_of (map (\<lambda>k. (k, f k)) ks) = (Some \<circ> f) |` set ks" | 
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 403 | by (induct ks) (simp_all add: fun_eq_iff restrict_map_insert) | 
| 35159 
df38e92af926
added lemma map_of_map_restrict; generalized lemma dom_const
 haftmann parents: 
35115diff
changeset | 404 | |
| 35619 | 405 | lemma restrict_complement_singleton_eq: | 
| 406 |   "f |` (- {x}) = f(x := None)"
 | |
| 39302 
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
 nipkow parents: 
39198diff
changeset | 407 | by (simp add: restrict_map_def fun_eq_iff) | 
| 35619 | 408 | |
| 14100 | 409 | |
| 60758 | 410 | subsection \<open>@{term [source] map_upds}\<close>
 | 
| 14025 | 411 | |
| 60838 | 412 | lemma map_upds_Nil1 [simp]: "m([] [\<mapsto>] bs) = m" | 
| 24331 | 413 | by (simp add: map_upds_def) | 
| 14025 | 414 | |
| 60838 | 415 | lemma map_upds_Nil2 [simp]: "m(as [\<mapsto>] []) = m" | 
| 24331 | 416 | by (simp add:map_upds_def) | 
| 20800 | 417 | |
| 60838 | 418 | lemma map_upds_Cons [simp]: "m(a#as [\<mapsto>] b#bs) = (m(a\<mapsto>b))(as[\<mapsto>]bs)" | 
| 24331 | 419 | by (simp add:map_upds_def) | 
| 14025 | 420 | |
| 60839 | 421 | lemma map_upds_append1 [simp]: "size xs < size ys \<Longrightarrow> | 
| 24331 | 422 | m(xs@[x] [\<mapsto>] ys) = m(xs [\<mapsto>] ys)(x \<mapsto> ys!size xs)" | 
| 60839 | 423 | apply(induct xs arbitrary: ys m) | 
| 24331 | 424 | apply (clarsimp simp add: neq_Nil_conv) | 
| 425 | apply (case_tac ys) | |
| 426 | apply simp | |
| 427 | apply simp | |
| 428 | done | |
| 14187 | 429 | |
| 20800 | 430 | lemma map_upds_list_update2_drop [simp]: | 
| 46588 
4895d7f1be42
removing some unnecessary premises from Map theory
 bulwahn parents: 
44921diff
changeset | 431 | "size xs \<le> i \<Longrightarrow> m(xs[\<mapsto>]ys[i:=y]) = m(xs[\<mapsto>]ys)" | 
| 24331 | 432 | apply (induct xs arbitrary: m ys i) | 
| 433 | apply simp | |
| 434 | apply (case_tac ys) | |
| 435 | apply simp | |
| 436 | apply (simp split: nat.split) | |
| 437 | done | |
| 14025 | 438 | |
| 20800 | 439 | lemma map_upd_upds_conv_if: | 
| 60838 | 440 | "(f(x\<mapsto>y))(xs [\<mapsto>] ys) = | 
| 60839 | 441 | (if x \<in> set(take (length ys) xs) then f(xs [\<mapsto>] ys) | 
| 60838 | 442 | else (f(xs [\<mapsto>] ys))(x\<mapsto>y))" | 
| 24331 | 443 | apply (induct xs arbitrary: x y ys f) | 
| 444 | apply simp | |
| 445 | apply (case_tac ys) | |
| 62390 | 446 | apply (auto split: if_split simp: fun_upd_twist) | 
| 24331 | 447 | done | 
| 14025 | 448 | |
| 449 | lemma map_upds_twist [simp]: | |
| 60839 | 450 | "a \<notin> set as \<Longrightarrow> m(a\<mapsto>b)(as[\<mapsto>]bs) = m(as[\<mapsto>]bs)(a\<mapsto>b)" | 
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
42163diff
changeset | 451 | using set_take_subset by (fastforce simp add: map_upd_upds_conv_if) | 
| 14025 | 452 | |
| 20800 | 453 | lemma map_upds_apply_nontin [simp]: | 
| 60839 | 454 | "x \<notin> set xs \<Longrightarrow> (f(xs[\<mapsto>]ys)) x = f x" | 
| 24331 | 455 | apply (induct xs arbitrary: ys) | 
| 456 | apply simp | |
| 457 | apply (case_tac ys) | |
| 458 | apply (auto simp: map_upd_upds_conv_if) | |
| 459 | done | |
| 14025 | 460 | |
| 20800 | 461 | lemma fun_upds_append_drop [simp]: | 
| 24331 | 462 | "size xs = size ys \<Longrightarrow> m(xs@zs[\<mapsto>]ys) = m(xs[\<mapsto>]ys)" | 
| 463 | apply (induct xs arbitrary: m ys) | |
| 464 | apply simp | |
| 465 | apply (case_tac ys) | |
| 466 | apply simp_all | |
| 467 | done | |
| 14300 | 468 | |
| 20800 | 469 | lemma fun_upds_append2_drop [simp]: | 
| 24331 | 470 | "size xs = size ys \<Longrightarrow> m(xs[\<mapsto>]ys@zs) = m(xs[\<mapsto>]ys)" | 
| 471 | apply (induct xs arbitrary: m ys) | |
| 472 | apply simp | |
| 473 | apply (case_tac ys) | |
| 474 | apply simp_all | |
| 475 | done | |
| 14300 | 476 | |
| 477 | ||
| 20800 | 478 | lemma restrict_map_upds[simp]: | 
| 479 | "\<lbrakk> length xs = length ys; set xs \<subseteq> D \<rbrakk> | |
| 480 | \<Longrightarrow> m(xs [\<mapsto>] ys)|`D = (m|`(D - set xs))(xs [\<mapsto>] ys)" | |
| 24331 | 481 | apply (induct xs arbitrary: m ys) | 
| 482 | apply simp | |
| 483 | apply (case_tac ys) | |
| 484 | apply simp | |
| 485 | apply (simp add: Diff_insert [symmetric] insert_absorb) | |
| 486 | apply (simp add: map_upd_upds_conv_if) | |
| 487 | done | |
| 14186 | 488 | |
| 489 | ||
| 60758 | 490 | subsection \<open>@{term [source] dom}\<close>
 | 
| 13908 | 491 | |
| 31080 | 492 | lemma dom_eq_empty_conv [simp]: "dom f = {} \<longleftrightarrow> f = empty"
 | 
| 44921 | 493 | by (auto simp: dom_def) | 
| 31080 | 494 | |
| 60839 | 495 | lemma domI: "m a = Some b \<Longrightarrow> a \<in> dom m" | 
| 496 | by (simp add: dom_def) | |
| 14100 | 497 | (* declare domI [intro]? *) | 
| 13908 | 498 | |
| 60839 | 499 | lemma domD: "a \<in> dom m \<Longrightarrow> \<exists>b. m a = Some b" | 
| 500 | by (cases "m a") (auto simp add: dom_def) | |
| 13908 | 501 | |
| 66010 | 502 | lemma domIff [iff, simp del, code_unfold]: "a \<in> dom m \<longleftrightarrow> m a \<noteq> None" | 
| 60839 | 503 | by (simp add: dom_def) | 
| 13908 | 504 | |
| 20800 | 505 | lemma dom_empty [simp]: "dom empty = {}"
 | 
| 60839 | 506 | by (simp add: dom_def) | 
| 13908 | 507 | |
| 20800 | 508 | lemma dom_fun_upd [simp]: | 
| 60839 | 509 |   "dom(f(x := y)) = (if y = None then dom f - {x} else insert x (dom f))"
 | 
| 510 | by (auto simp: dom_def) | |
| 13908 | 511 | |
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 512 | lemma dom_if: | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 513 |   "dom (\<lambda>x. if P x then f x else g x) = dom f \<inter> {x. P x} \<union> dom g \<inter> {x. \<not> P x}"
 | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 514 | by (auto split: if_splits) | 
| 13937 | 515 | |
| 15304 | 516 | lemma dom_map_of_conv_image_fst: | 
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 517 | "dom (map_of xys) = fst ` set xys" | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 518 | by (induct xys) (auto simp add: dom_if) | 
| 15304 | 519 | |
| 60839 | 520 | lemma dom_map_of_zip [simp]: "length xs = length ys \<Longrightarrow> dom (map_of (zip xs ys)) = set xs" | 
| 521 | by (induct rule: list_induct2) (auto simp: dom_if) | |
| 15110 
78b5636eabc7
Added a number of new thms and the new function remove1
 nipkow parents: 
14739diff
changeset | 522 | |
| 13908 | 523 | lemma finite_dom_map_of: "finite (dom (map_of l))" | 
| 60839 | 524 | by (induct l) (auto simp: dom_def insert_Collect [symmetric]) | 
| 13908 | 525 | |
| 20800 | 526 | lemma dom_map_upds [simp]: | 
| 60839 | 527 | "dom(m(xs[\<mapsto>]ys)) = set(take (length ys) xs) \<union> dom m" | 
| 24331 | 528 | apply (induct xs arbitrary: m ys) | 
| 529 | apply simp | |
| 530 | apply (case_tac ys) | |
| 531 | apply auto | |
| 532 | done | |
| 13910 | 533 | |
| 60839 | 534 | lemma dom_map_add [simp]: "dom (m ++ n) = dom n \<union> dom m" | 
| 535 | by (auto simp: dom_def) | |
| 13910 | 536 | |
| 20800 | 537 | lemma dom_override_on [simp]: | 
| 60839 | 538 | "dom (override_on f g A) = | 
| 539 |     (dom f  - {a. a \<in> A - dom g}) \<union> {a. a \<in> A \<inter> dom g}"
 | |
| 540 | by (auto simp: dom_def override_on_def) | |
| 13908 | 541 | |
| 60839 | 542 | lemma map_add_comm: "dom m1 \<inter> dom m2 = {} \<Longrightarrow> m1 ++ m2 = m2 ++ m1"
 | 
| 543 | by (rule ext) (force simp: map_add_def dom_def split: option.split) | |
| 20800 | 544 | |
| 32236 
0203e1006f1b
some lemmas about maps (contributed by Peter Lammich)
 krauss parents: 
31380diff
changeset | 545 | lemma map_add_dom_app_simps: | 
| 60839 | 546 | "m \<in> dom l2 \<Longrightarrow> (l1 ++ l2) m = l2 m" | 
| 547 | "m \<notin> dom l1 \<Longrightarrow> (l1 ++ l2) m = l2 m" | |
| 548 | "m \<notin> dom l2 \<Longrightarrow> (l1 ++ l2) m = l1 m" | |
| 549 | by (auto simp add: map_add_def split: option.split_asm) | |
| 32236 
0203e1006f1b
some lemmas about maps (contributed by Peter Lammich)
 krauss parents: 
31380diff
changeset | 550 | |
| 29622 | 551 | lemma dom_const [simp]: | 
| 35159 
df38e92af926
added lemma map_of_map_restrict; generalized lemma dom_const
 haftmann parents: 
35115diff
changeset | 552 | "dom (\<lambda>x. Some (f x)) = UNIV" | 
| 29622 | 553 | by auto | 
| 554 | ||
| 22230 | 555 | (* Due to John Matthews - could be rephrased with dom *) | 
| 556 | lemma finite_map_freshness: | |
| 557 | "finite (dom (f :: 'a \<rightharpoonup> 'b)) \<Longrightarrow> \<not> finite (UNIV :: 'a set) \<Longrightarrow> | |
| 558 | \<exists>x. f x = None" | |
| 60839 | 559 | by (bestsimp dest: ex_new_if_finite) | 
| 14027 | 560 | |
| 28790 | 561 | lemma dom_minus: | 
| 562 | "f x = None \<Longrightarrow> dom f - insert x A = dom f - A" | |
| 563 | unfolding dom_def by simp | |
| 564 | ||
| 565 | lemma insert_dom: | |
| 566 | "f x = Some y \<Longrightarrow> insert x (dom f) = dom f" | |
| 567 | unfolding dom_def by auto | |
| 568 | ||
| 35607 | 569 | lemma map_of_map_keys: | 
| 570 | "set xs = dom m \<Longrightarrow> map_of (map (\<lambda>k. (k, the (m k))) xs) = m" | |
| 571 | by (rule ext) (auto simp add: map_of_map_restrict restrict_map_def) | |
| 572 | ||
| 39379 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 573 | lemma map_of_eqI: | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 574 | assumes set_eq: "set (map fst xs) = set (map fst ys)" | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 575 | assumes map_eq: "\<forall>k\<in>set (map fst xs). map_of xs k = map_of ys k" | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 576 | shows "map_of xs = map_of ys" | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 577 | proof (rule ext) | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 578 | fix k show "map_of xs k = map_of ys k" | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 579 | proof (cases "map_of xs k") | 
| 60839 | 580 | case None | 
| 581 | then have "k \<notin> set (map fst xs)" by (simp add: map_of_eq_None_iff) | |
| 39379 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 582 | with set_eq have "k \<notin> set (map fst ys)" by simp | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 583 | then have "map_of ys k = None" by (simp add: map_of_eq_None_iff) | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 584 | with None show ?thesis by simp | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 585 | next | 
| 60839 | 586 | case (Some v) | 
| 587 | then have "k \<in> set (map fst xs)" by (auto simp add: dom_map_of_conv_image_fst [symmetric]) | |
| 39379 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 588 | with map_eq show ?thesis by auto | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 589 | qed | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 590 | qed | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 591 | |
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 592 | lemma map_of_eq_dom: | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 593 | assumes "map_of xs = map_of ys" | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 594 | shows "fst ` set xs = fst ` set ys" | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 595 | proof - | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 596 | from assms have "dom (map_of xs) = dom (map_of ys)" by simp | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 597 | then show ?thesis by (simp add: dom_map_of_conv_image_fst) | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 598 | qed | 
| 
ab1b070aa412
moved lemmas map_of_eqI and map_of_eq_dom to Map.thy
 haftmann parents: 
39302diff
changeset | 599 | |
| 53820 | 600 | lemma finite_set_of_finite_maps: | 
| 60839 | 601 | assumes "finite A" "finite B" | 
| 602 |   shows "finite {m. dom m = A \<and> ran m \<subseteq> B}" (is "finite ?S")
 | |
| 53820 | 603 | proof - | 
| 604 |   let ?S' = "{m. \<forall>x. (x \<in> A \<longrightarrow> m x \<in> Some ` B) \<and> (x \<notin> A \<longrightarrow> m x = None)}"
 | |
| 605 | have "?S = ?S'" | |
| 606 | proof | |
| 60839 | 607 | show "?S \<subseteq> ?S'" by (auto simp: dom_def ran_def image_def) | 
| 53820 | 608 | show "?S' \<subseteq> ?S" | 
| 609 | proof | |
| 610 | fix m assume "m \<in> ?S'" | |
| 611 | hence 1: "dom m = A" by force | |
| 60839 | 612 | hence 2: "ran m \<subseteq> B" using \<open>m \<in> ?S'\<close> by (auto simp: dom_def ran_def) | 
| 53820 | 613 | from 1 2 show "m \<in> ?S" by blast | 
| 614 | qed | |
| 615 | qed | |
| 616 | with assms show ?thesis by(simp add: finite_set_of_finite_funs) | |
| 617 | qed | |
| 28790 | 618 | |
| 60839 | 619 | |
| 60758 | 620 | subsection \<open>@{term [source] ran}\<close>
 | 
| 14100 | 621 | |
| 60839 | 622 | lemma ranI: "m a = Some b \<Longrightarrow> b \<in> ran m" | 
| 623 | by (auto simp: ran_def) | |
| 14100 | 624 | (* declare ranI [intro]? *) | 
| 13908 | 625 | |
| 20800 | 626 | lemma ran_empty [simp]: "ran empty = {}"
 | 
| 60839 | 627 | by (auto simp: ran_def) | 
| 13908 | 628 | |
| 60839 | 629 | lemma ran_map_upd [simp]: "m a = None \<Longrightarrow> ran(m(a\<mapsto>b)) = insert b (ran m)" | 
| 630 | unfolding ran_def | |
| 24331 | 631 | apply auto | 
| 60839 | 632 | apply (subgoal_tac "aa \<noteq> a") | 
| 24331 | 633 | apply auto | 
| 634 | done | |
| 20800 | 635 | |
| 66583 | 636 | lemma ran_map_add: | 
| 637 |   assumes "dom m1 \<inter> dom m2 = {}"
 | |
| 638 | shows "ran (m1 ++ m2) = ran m1 \<union> ran m2" | |
| 639 | proof | |
| 640 | show "ran (m1 ++ m2) \<subseteq> ran m1 \<union> ran m2" | |
| 641 | unfolding ran_def by auto | |
| 642 | next | |
| 643 | show "ran m1 \<union> ran m2 \<subseteq> ran (m1 ++ m2)" | |
| 644 | proof - | |
| 645 | have "(m1 ++ m2) x = Some y" if "m1 x = Some y" for x y | |
| 646 | using assms map_add_comm that by fastforce | |
| 647 | moreover have "(m1 ++ m2) x = Some y" if "m2 x = Some y" for x y | |
| 648 | using assms that by auto | |
| 649 | ultimately show ?thesis | |
| 650 | unfolding ran_def by blast | |
| 651 | qed | |
| 652 | qed | |
| 653 | ||
| 654 | lemma finite_ran: | |
| 655 | assumes "finite (dom p)" | |
| 656 | shows "finite (ran p)" | |
| 657 | proof - | |
| 658 | have "ran p = (\<lambda>x. the (p x)) ` dom p" | |
| 659 | unfolding ran_def by force | |
| 660 | from this \<open>finite (dom p)\<close> show ?thesis by auto | |
| 661 | qed | |
| 662 | ||
| 60839 | 663 | lemma ran_distinct: | 
| 664 | assumes dist: "distinct (map fst al)" | |
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 665 | shows "ran (map_of al) = snd ` set al" | 
| 60839 | 666 | using assms | 
| 667 | proof (induct al) | |
| 668 | case Nil | |
| 669 | then show ?case by simp | |
| 34979 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 670 | next | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 671 | case (Cons kv al) | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 672 | then have "ran (map_of al) = snd ` set al" by simp | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 673 | moreover from Cons.prems have "map_of al (fst kv) = None" | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 674 | by (simp add: map_of_eq_None_iff) | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 675 | ultimately show ?case by (simp only: map_of.simps ran_map_upd) simp | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 676 | qed | 
| 
8cb6e7a42e9c
more correspondence lemmas between related operations
 haftmann parents: 
34941diff
changeset | 677 | |
| 66584 | 678 | lemma ran_map_of_zip: | 
| 679 | assumes "length xs = length ys" "distinct xs" | |
| 680 | shows "ran (map_of (zip xs ys)) = set ys" | |
| 681 | using assms by (simp add: ran_distinct set_map[symmetric]) | |
| 682 | ||
| 60057 | 683 | lemma ran_map_option: "ran (\<lambda>x. map_option f (m x)) = f ` ran m" | 
| 60839 | 684 | by (auto simp add: ran_def) | 
| 685 | ||
| 13910 | 686 | |
| 61799 | 687 | subsection \<open>\<open>map_le\<close>\<close> | 
| 13910 | 688 | |
| 13912 | 689 | lemma map_le_empty [simp]: "empty \<subseteq>\<^sub>m g" | 
| 60839 | 690 | by (simp add: map_le_def) | 
| 13910 | 691 | |
| 17724 | 692 | lemma upd_None_map_le [simp]: "f(x := None) \<subseteq>\<^sub>m f" | 
| 60839 | 693 | by (force simp add: map_le_def) | 
| 14187 | 694 | |
| 13910 | 695 | lemma map_le_upd[simp]: "f \<subseteq>\<^sub>m g ==> f(a := b) \<subseteq>\<^sub>m g(a := b)" | 
| 60839 | 696 | by (fastforce simp add: map_le_def) | 
| 13910 | 697 | |
| 17724 | 698 | lemma map_le_imp_upd_le [simp]: "m1 \<subseteq>\<^sub>m m2 \<Longrightarrow> m1(x := None) \<subseteq>\<^sub>m m2(x \<mapsto> y)" | 
| 60839 | 699 | by (force simp add: map_le_def) | 
| 14187 | 700 | |
| 20800 | 701 | lemma map_le_upds [simp]: | 
| 60839 | 702 | "f \<subseteq>\<^sub>m g \<Longrightarrow> f(as [\<mapsto>] bs) \<subseteq>\<^sub>m g(as [\<mapsto>] bs)" | 
| 24331 | 703 | apply (induct as arbitrary: f g bs) | 
| 704 | apply simp | |
| 705 | apply (case_tac bs) | |
| 706 | apply auto | |
| 707 | done | |
| 13908 | 708 | |
| 14033 | 709 | lemma map_le_implies_dom_le: "(f \<subseteq>\<^sub>m g) \<Longrightarrow> (dom f \<subseteq> dom g)" | 
| 60839 | 710 | by (fastforce simp add: map_le_def dom_def) | 
| 14033 | 711 | |
| 712 | lemma map_le_refl [simp]: "f \<subseteq>\<^sub>m f" | |
| 60839 | 713 | by (simp add: map_le_def) | 
| 14033 | 714 | |
| 14187 | 715 | lemma map_le_trans[trans]: "\<lbrakk> m1 \<subseteq>\<^sub>m m2; m2 \<subseteq>\<^sub>m m3\<rbrakk> \<Longrightarrow> m1 \<subseteq>\<^sub>m m3" | 
| 60839 | 716 | by (auto simp add: map_le_def dom_def) | 
| 14033 | 717 | |
| 718 | lemma map_le_antisym: "\<lbrakk> f \<subseteq>\<^sub>m g; g \<subseteq>\<^sub>m f \<rbrakk> \<Longrightarrow> f = g" | |
| 24331 | 719 | unfolding map_le_def | 
| 720 | apply (rule ext) | |
| 721 | apply (case_tac "x \<in> dom f", simp) | |
| 44890 
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
 nipkow parents: 
42163diff
changeset | 722 | apply (case_tac "x \<in> dom g", simp, fastforce) | 
| 24331 | 723 | done | 
| 14033 | 724 | |
| 60839 | 725 | lemma map_le_map_add [simp]: "f \<subseteq>\<^sub>m g ++ f" | 
| 726 | by (fastforce simp: map_le_def) | |
| 14033 | 727 | |
| 60839 | 728 | lemma map_le_iff_map_add_commute: "f \<subseteq>\<^sub>m f ++ g \<longleftrightarrow> f ++ g = g ++ f" | 
| 729 | by (fastforce simp: map_add_def map_le_def fun_eq_iff split: option.splits) | |
| 15304 | 730 | |
| 60839 | 731 | lemma map_add_le_mapE: "f ++ g \<subseteq>\<^sub>m h \<Longrightarrow> g \<subseteq>\<^sub>m h" | 
| 732 | by (fastforce simp: map_le_def map_add_def dom_def) | |
| 15303 | 733 | |
| 60839 | 734 | lemma map_add_le_mapI: "\<lbrakk> f \<subseteq>\<^sub>m h; g \<subseteq>\<^sub>m h \<rbrakk> \<Longrightarrow> f ++ g \<subseteq>\<^sub>m h" | 
| 735 | by (auto simp: map_le_def map_add_def dom_def split: option.splits) | |
| 15303 | 736 | |
| 63828 | 737 | lemma map_add_subsumed1: "f \<subseteq>\<^sub>m g \<Longrightarrow> f++g = g" | 
| 738 | by (simp add: map_add_le_mapI map_le_antisym) | |
| 739 | ||
| 740 | lemma map_add_subsumed2: "f \<subseteq>\<^sub>m g \<Longrightarrow> g++f = g" | |
| 741 | by (metis map_add_subsumed1 map_le_iff_map_add_commute) | |
| 742 | ||
| 31080 | 743 | lemma dom_eq_singleton_conv: "dom f = {x} \<longleftrightarrow> (\<exists>v. f = [x \<mapsto> v])"
 | 
| 63834 | 744 | (is "?lhs \<longleftrightarrow> ?rhs") | 
| 745 | proof | |
| 746 | assume ?rhs | |
| 747 | then show ?lhs by (auto split: if_split_asm) | |
| 31080 | 748 | next | 
| 63834 | 749 | assume ?lhs | 
| 750 | then obtain v where v: "f x = Some v" by auto | |
| 751 | show ?rhs | |
| 752 | proof | |
| 753 | show "f = [x \<mapsto> v]" | |
| 754 | proof (rule map_le_antisym) | |
| 755 | show "[x \<mapsto> v] \<subseteq>\<^sub>m f" | |
| 756 | using v by (auto simp add: map_le_def) | |
| 757 | show "f \<subseteq>\<^sub>m [x \<mapsto> v]" | |
| 758 |         using \<open>dom f = {x}\<close> \<open>f x = Some v\<close> by (auto simp add: map_le_def)
 | |
| 759 | qed | |
| 760 | qed | |
| 31080 | 761 | qed | 
| 762 | ||
| 35565 | 763 | |
| 60758 | 764 | subsection \<open>Various\<close> | 
| 35565 | 765 | |
| 766 | lemma set_map_of_compr: | |
| 767 | assumes distinct: "distinct (map fst xs)" | |
| 768 |   shows "set xs = {(k, v). map_of xs k = Some v}"
 | |
| 60839 | 769 | using assms | 
| 770 | proof (induct xs) | |
| 771 | case Nil | |
| 772 | then show ?case by simp | |
| 35565 | 773 | next | 
| 774 | case (Cons x xs) | |
| 775 | obtain k v where "x = (k, v)" by (cases x) blast | |
| 776 | with Cons.prems have "k \<notin> dom (map_of xs)" | |
| 777 | by (simp add: dom_map_of_conv_image_fst) | |
| 778 |   then have *: "insert (k, v) {(k, v). map_of xs k = Some v} =
 | |
| 779 |     {(k', v'). (map_of xs(k \<mapsto> v)) k' = Some v'}"
 | |
| 780 | by (auto split: if_splits) | |
| 781 |   from Cons have "set xs = {(k, v). map_of xs k = Some v}" by simp
 | |
| 60758 | 782 | with * \<open>x = (k, v)\<close> show ?case by simp | 
| 35565 | 783 | qed | 
| 784 | ||
| 67051 | 785 | lemma eq_key_imp_eq_value: | 
| 786 | "v1 = v2" | |
| 787 | if "distinct (map fst xs)" "(k, v1) \<in> set xs" "(k, v2) \<in> set xs" | |
| 788 | proof - | |
| 789 | from that have "inj_on fst (set xs)" | |
| 790 | by (simp add: distinct_map) | |
| 791 | moreover have "fst (k, v1) = fst (k, v2)" | |
| 792 | by simp | |
| 793 | ultimately have "(k, v1) = (k, v2)" | |
| 794 | by (rule inj_onD) (fact that)+ | |
| 795 | then show ?thesis | |
| 796 | by simp | |
| 797 | qed | |
| 798 | ||
| 35565 | 799 | lemma map_of_inject_set: | 
| 800 | assumes distinct: "distinct (map fst xs)" "distinct (map fst ys)" | |
| 801 | shows "map_of xs = map_of ys \<longleftrightarrow> set xs = set ys" (is "?lhs \<longleftrightarrow> ?rhs") | |
| 802 | proof | |
| 803 | assume ?lhs | |
| 60758 | 804 |   moreover from \<open>distinct (map fst xs)\<close> have "set xs = {(k, v). map_of xs k = Some v}"
 | 
| 35565 | 805 | by (rule set_map_of_compr) | 
| 60758 | 806 |   moreover from \<open>distinct (map fst ys)\<close> have "set ys = {(k, v). map_of ys k = Some v}"
 | 
| 35565 | 807 | by (rule set_map_of_compr) | 
| 808 | ultimately show ?rhs by simp | |
| 809 | next | |
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
53015diff
changeset | 810 | assume ?rhs show ?lhs | 
| 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
53015diff
changeset | 811 | proof | 
| 35565 | 812 | fix k | 
| 60839 | 813 | show "map_of xs k = map_of ys k" | 
| 814 | proof (cases "map_of xs k") | |
| 35565 | 815 | case None | 
| 60758 | 816 | with \<open>?rhs\<close> have "map_of ys k = None" | 
| 35565 | 817 | by (simp add: map_of_eq_None_iff) | 
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
53015diff
changeset | 818 | with None show ?thesis by simp | 
| 35565 | 819 | next | 
| 820 | case (Some v) | |
| 60758 | 821 | with distinct \<open>?rhs\<close> have "map_of ys k = Some v" | 
| 35565 | 822 | by simp | 
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
53015diff
changeset | 823 | with Some show ?thesis by simp | 
| 35565 | 824 | qed | 
| 825 | qed | |
| 826 | qed | |
| 827 | ||
| 3981 | 828 | end |