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