src/HOL/Map.thy
author nipkow
Wed, 30 Apr 2003 17:53:47 +0200
changeset 13937 e9d57517c9b1
parent 13914 026866537fae
child 14025 d9b155757dc8
permissions -rw-r--r--
added a thm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     1
(*  Title:      HOL/Map.thy
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     2
    ID:         $Id$
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     3
    Author:     Tobias Nipkow, based on a theory by David von Oheimb
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
     4
    Copyright   1997-2003 TU Muenchen
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     5
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     6
The datatype of `maps' (written ~=>); strongly resembles maps in VDM.
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     7
*)
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     8
13914
nipkow
parents: 13912
diff changeset
     9
header {* Maps *}
nipkow
parents: 13912
diff changeset
    10
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    11
theory Map = List:
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    12
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    13
types ('a,'b) "~=>" = "'a => 'b option" (infixr 0)
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    14
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    15
consts
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    16
chg_map	:: "('b => 'b) => 'a => ('a ~=> 'b) => ('a ~=> 'b)"
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    17
override:: "('a ~=> 'b) => ('a ~=> 'b) => ('a ~=> 'b)" (infixl "++" 100)
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    18
dom	:: "('a ~=> 'b) => 'a set"
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    19
ran	:: "('a ~=> 'b) => 'b set"
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    20
map_of	:: "('a * 'b)list => 'a ~=> 'b"
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    21
map_upds:: "('a ~=> 'b) => 'a list => 'b list => 
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    22
	    ('a ~=> 'b)"		 ("_/'(_[|->]_/')" [900,0,0]900)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    23
map_le  :: "('a ~=> 'b) => ('a ~=> 'b) => bool" (infix "\<subseteq>\<^sub>m" 50)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    24
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    25
syntax
13890
90611b4e0054 Made empty a translation rather than a constant.
nipkow
parents: 12919
diff changeset
    26
empty	::  "'a ~=> 'b"
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    27
map_upd	:: "('a ~=> 'b) => 'a => 'b => ('a ~=> 'b)"
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    28
					 ("_/'(_/|->_')"   [900,0,0]900)
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    29
12114
a8e860c86252 eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents: 10137
diff changeset
    30
syntax (xsymbols)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    31
  "~=>"     :: "[type, type] => type"    (infixr "\<leadsto>" 0)
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    32
  map_upd   :: "('a ~=> 'b) => 'a      => 'b      => ('a ~=> 'b)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    33
					  ("_/'(_/\<mapsto>/_')"  [900,0,0]900)
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    34
  map_upds  :: "('a ~=> 'b) => 'a list => 'b list => ('a ~=> 'b)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    35
				         ("_/'(_/[\<mapsto>]/_')" [900,0,0]900)
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    36
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    37
translations
13890
90611b4e0054 Made empty a translation rather than a constant.
nipkow
parents: 12919
diff changeset
    38
  "empty"    => "_K None"
90611b4e0054 Made empty a translation rather than a constant.
nipkow
parents: 12919
diff changeset
    39
  "empty"    <= "%x. None"
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    40
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    41
  "m(a|->b)" == "m(a:=Some b)"
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    42
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    43
defs
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    44
chg_map_def:  "chg_map f a m == case m a of None => m | Some b => m(a|->f b)"
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    45
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    46
override_def: "m1++m2 == %x. case m2 x of None => m1 x | Some y => Some y"
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    47
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    48
dom_def: "dom(m) == {a. m a ~= None}"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    49
ran_def: "ran(m) == {b. ? a. m a = Some b}"
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    50
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    51
map_le_def: "m1 \<subseteq>\<^sub>m m2  ==  ALL a : dom m1. m1 a = m2 a"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    52
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 3981
diff changeset
    53
primrec
89f162de39cf Adapted to new datatype package.
berghofe
parents: 3981
diff changeset
    54
  "map_of [] = empty"
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    55
  "map_of (p#ps) = (map_of ps)(fst p |-> snd p)"
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    56
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    57
primrec "t([]  [|->]bs) = t"
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    58
        "t(a#as[|->]bs) = t(a|->hd bs)(as[|->]tl bs)"
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    59
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    60
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
    61
subsection {* empty *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    62
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    63
lemma empty_upd_none[simp]: "empty(x := None) = empty"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    64
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    65
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    66
done
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    67
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    68
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    69
(* FIXME: what is this sum_case nonsense?? *)
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    70
lemma sum_case_empty_empty[simp]: "sum_case empty empty = empty"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    71
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    72
apply (simp (no_asm) split add: sum.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    73
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    74
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
    75
subsection {* map\_upd *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    76
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    77
lemma map_upd_triv: "t k = Some x ==> t(k|->x) = t"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    78
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    79
apply (simp (no_asm_simp))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    80
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    81
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
    82
lemma map_upd_nonempty[simp]: "t(k|->x) ~= empty"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    83
apply safe
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    84
apply (drule_tac x = "k" in fun_cong)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    85
apply (simp (no_asm_use))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    86
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    87
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    88
lemma finite_range_updI: "finite (range f) ==> finite (range (f(a|->b)))"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    89
apply (unfold image_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    90
apply (simp (no_asm_use) add: full_SetCompr_eq)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    91
apply (rule finite_subset)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    92
prefer 2 apply (assumption)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    93
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    94
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    95
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    96
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    97
(* FIXME: what is this sum_case nonsense?? *)
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
    98
subsection {* sum\_case and empty/map\_upd *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
    99
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   100
lemma sum_case_map_upd_empty[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   101
 "sum_case (m(k|->y)) empty =  (sum_case m empty)(Inl k|->y)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   102
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   103
apply (simp (no_asm) split add: sum.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   104
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   105
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   106
lemma sum_case_empty_map_upd[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   107
 "sum_case empty (m(k|->y)) =  (sum_case empty m)(Inr k|->y)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   108
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   109
apply (simp (no_asm) split add: sum.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   110
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   111
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   112
lemma sum_case_map_upd_map_upd[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   113
 "sum_case (m1(k1|->y1)) (m2(k2|->y2)) = (sum_case (m1(k1|->y1)) m2)(Inr k2|->y2)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   114
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   115
apply (simp (no_asm) split add: sum.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   116
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   117
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   118
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   119
subsection {* map\_upds *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   120
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   121
lemma map_upd_upds_conv_if:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   122
 "!!x y ys f. (f(x|->y))(xs [|->] ys) =
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   123
              (if x : set xs then f(xs [|->] ys) else (f(xs [|->] ys))(x|->y))"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   124
apply(induct xs)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   125
 apply simp
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   126
apply(simp split:split_if add:fun_upd_twist eq_sym_conv)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   127
done
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   128
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   129
lemma map_upds_twist [simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   130
 "a ~: set as ==> m(a|->b)(as[|->]bs) = m(as[|->]bs)(a|->b)"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   131
by (simp add: map_upd_upds_conv_if)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   132
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   133
lemma map_upds_apply_nontin[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   134
 "!!ys. x ~: set xs ==> (f(xs[|->]ys)) x = f x"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   135
apply(induct xs)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   136
 apply simp
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   137
apply(simp add: fun_upd_apply map_upd_upds_conv_if split:split_if)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   138
done
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   139
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   140
subsection {* chg\_map *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   141
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   142
lemma chg_map_new[simp]: "m a = None   ==> chg_map f a m = m"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   143
apply (unfold chg_map_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   144
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   145
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   146
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   147
lemma chg_map_upd[simp]: "m a = Some b ==> chg_map f a m = m(a|->f b)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   148
apply (unfold chg_map_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   149
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   150
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   151
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   152
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   153
subsection {* map\_of *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   154
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   155
lemma map_of_SomeD [rule_format (no_asm)]: "map_of xs k = Some y --> (k,y):set xs"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   156
apply (induct_tac "xs")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   157
apply  auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   158
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   159
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   160
lemma map_of_mapk_SomeI [rule_format (no_asm)]: "inj f ==> map_of t k = Some x -->  
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   161
   map_of (map (split (%k. Pair (f k))) t) (f k) = Some x"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   162
apply (induct_tac "t")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   163
apply  (auto simp add: inj_eq)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   164
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   165
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   166
lemma weak_map_of_SomeI [rule_format (no_asm)]: "(k, x) : set l --> (? x. map_of l k = Some x)"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   167
apply (induct_tac "l")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   168
apply  auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   169
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   170
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   171
lemma map_of_filter_in: 
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   172
"[| map_of xs k = Some z; P k z |] ==> map_of (filter (split P) xs) k = Some z"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   173
apply (rule mp)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   174
prefer 2 apply (assumption)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   175
apply (erule thin_rl)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   176
apply (induct_tac "xs")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   177
apply  auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   178
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   179
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   180
lemma finite_range_map_of: "finite (range (map_of l))"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   181
apply (induct_tac "l")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   182
apply  (simp_all (no_asm) add: image_constant)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   183
apply (rule finite_subset)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   184
prefer 2 apply (assumption)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   185
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   186
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   187
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   188
lemma map_of_map: "map_of (map (%(a,b). (a,f b)) xs) x = option_map f (map_of xs x)"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   189
apply (induct_tac "xs")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   190
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   191
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   192
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   193
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   194
subsection {* option\_map related *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   195
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   196
lemma option_map_o_empty[simp]: "option_map f o empty = empty"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   197
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   198
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   199
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   200
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   201
lemma option_map_o_map_upd[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   202
 "option_map f o m(a|->b) = (option_map f o m)(a|->f b)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   203
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   204
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   205
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   206
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   207
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   208
subsection {* ++ *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   209
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   210
lemma override_empty[simp]: "m ++ empty = m"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   211
apply (unfold override_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   212
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   213
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   214
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   215
lemma empty_override[simp]: "empty ++ m = m"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   216
apply (unfold override_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   217
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   218
apply (simp split add: option.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   219
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   220
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   221
lemma override_Some_iff [rule_format (no_asm)]: 
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   222
 "((m ++ n) k = Some x) = (n k = Some x | n k = None & m k = Some x)"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   223
apply (unfold override_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   224
apply (simp (no_asm) split add: option.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   225
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   226
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   227
lemmas override_SomeD = override_Some_iff [THEN iffD1, standard]
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   228
declare override_SomeD [dest!]
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   229
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   230
lemma override_find_right[simp]: "!!xx. n k = Some xx ==> (m ++ n) k = Some xx"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   231
apply (subst override_Some_iff)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   232
apply fast
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   233
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   234
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   235
lemma override_None [iff]: "((m ++ n) k = None) = (n k = None & m k = None)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   236
apply (unfold override_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   237
apply (simp (no_asm) split add: option.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   238
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   239
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   240
lemma override_upd[simp]: "f ++ g(x|->y) = (f ++ g)(x|->y)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   241
apply (unfold override_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   242
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   243
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   244
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   245
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   246
lemma map_of_override[simp]: "map_of ys ++ map_of xs = map_of (xs@ys)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   247
apply (unfold override_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   248
apply (rule sym)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   249
apply (induct_tac "xs")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   250
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   251
apply (rule ext)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   252
apply (simp (no_asm_simp) split add: option.split)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   253
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   254
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   255
declare fun_upd_apply [simp del]
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   256
lemma finite_range_map_of_override: "finite (range f) ==> finite (range (f ++ map_of l))"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   257
apply (induct_tac "l")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   258
apply  auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   259
apply (erule finite_range_updI)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   260
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   261
declare fun_upd_apply [simp]
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   262
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   263
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   264
subsection {* dom *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   265
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   266
lemma domI: "m a = Some b ==> a : dom m"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   267
apply (unfold dom_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   268
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   269
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   270
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   271
lemma domD: "a : dom m ==> ? b. m a = Some b"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   272
apply (unfold dom_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   273
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   274
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   275
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   276
lemma domIff[iff]: "(a : dom m) = (m a ~= None)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   277
apply (unfold dom_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   278
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   279
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   280
declare domIff [simp del]
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   281
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   282
lemma dom_empty[simp]: "dom empty = {}"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   283
apply (unfold dom_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   284
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   285
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   286
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   287
lemma dom_fun_upd[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   288
 "dom(f(x := y)) = (if y=None then dom f - {x} else insert x (dom f))"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   289
by (simp add:dom_def) blast
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   290
(*
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   291
lemma dom_map_upd[simp]: "dom(m(a|->b)) = insert a (dom m)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   292
apply (unfold dom_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   293
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   294
apply blast
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   295
done
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   296
*)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   297
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   298
lemma dom_map_of: "dom(map_of xys) = {x. \<exists>y. (x,y) : set xys}"
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   299
apply(induct xys)
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   300
apply(auto simp del:fun_upd_apply)
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   301
done
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   302
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   303
lemma finite_dom_map_of: "finite (dom (map_of l))"
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   304
apply (unfold dom_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   305
apply (induct_tac "l")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   306
apply (auto simp add: insert_Collect [symmetric])
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   307
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   308
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   309
lemma dom_map_upds[simp]: "!!m vs. dom(m(xs[|->]vs)) = set xs Un dom m"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   310
by(induct xs, simp_all)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   311
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   312
lemma dom_override[simp]: "dom(m++n) = dom n Un dom m"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   313
apply (unfold dom_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   314
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   315
done
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   316
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   317
lemma dom_overwrite[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   318
 "dom(f(g|A)) = (dom f  - {a. a : A - dom g}) Un {a. a : A Int dom g}"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   319
by(auto simp add: dom_def overwrite_def)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   320
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   321
subsection {* ran *}
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   322
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   323
lemma ran_empty[simp]: "ran empty = {}"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   324
apply (unfold ran_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   325
apply (simp (no_asm))
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   326
done
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   327
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   328
lemma ran_map_upd[simp]: "m a = None ==> ran(m(a|->b)) = insert b (ran m)"
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   329
apply (unfold ran_def)
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   330
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   331
apply (subgoal_tac "~ (aa = a) ")
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   332
apply auto
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   333
done
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   334
13937
e9d57517c9b1 added a thm
nipkow
parents: 13914
diff changeset
   335
subsection {* map\_le *}
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   336
13912
3c0a340be514 fixed document
kleing
parents: 13910
diff changeset
   337
lemma map_le_empty [simp]: "empty \<subseteq>\<^sub>m g"
13910
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   338
by(simp add:map_le_def)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   339
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   340
lemma map_le_upd[simp]: "f \<subseteq>\<^sub>m g ==> f(a := b) \<subseteq>\<^sub>m g(a := b)"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   341
by(fastsimp simp add:map_le_def)
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   342
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   343
lemma map_le_upds[simp]:
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   344
 "!!f g bs. f \<subseteq>\<^sub>m g ==> f(as [|->] bs) \<subseteq>\<^sub>m g(as [|->] bs)"
f9a9ef16466f Added thms
nipkow
parents: 13909
diff changeset
   345
by(induct as, auto)
13908
4bdfa9f77254 Map.ML integrated into Map.thy
webertj
parents: 13890
diff changeset
   346
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   347
end