src/HOL/Map.ML
author wenzelm
Mon, 08 May 2000 20:59:30 +0200
changeset 8840 18b76c137c41
parent 8529 4656e8312ba9
child 9018 b16bc0b5ad21
permissions -rw-r--r--
moved theory Sexp to Induct examples;
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.ML
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
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     4
    Copyright   1997 TU Muenchen
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     5
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     6
Map lemmas
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     7
*)
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     8
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
     9
section "empty";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    10
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
    11
Goalw [empty_def] "empty k = None";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    12
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    13
qed "empty_def2";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    14
Addsimps [empty_def2];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    15
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    16
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    17
section "map_upd";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    18
8529
paulson
parents: 8259
diff changeset
    19
Goal "t k = Some x ==> t(k|->x) = t";
paulson
parents: 8259
diff changeset
    20
by (rtac ext 1);
paulson
parents: 8259
diff changeset
    21
by (Asm_simp_tac 1);
paulson
parents: 8259
diff changeset
    22
qed "map_upd_triv";
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    23
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    24
Goalw [image_def] "finite (range f) ==> finite (range (f(a|->b)))";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    25
by (full_simp_tac (simpset() addsimps [full_SetCompr_eq]) 1);
8254
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
    26
by (rtac finite_subset 1);
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
    27
by (assume_tac 2);
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    28
by Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    29
qed "finite_range_updI";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    30
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    31
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    32
section "map_upds";
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    33
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    34
Goal "a ~: set as --> (!m bs. (m(a|->b)(as[|->]bs)) = (m(as[|->]bs)(a|->b)))";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    35
by (induct_tac "as" 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    36
by  (auto_tac (claset(), simpset() delsimps[fun_upd_apply]));
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    37
by (REPEAT(dtac spec 1));
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    38
by (rotate_tac ~1 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    39
by (etac subst 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    40
by (etac (fun_upd_twist RS subst) 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    41
by (rtac refl 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    42
qed_spec_mp "map_upds_twist";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    43
Addsimps [map_upds_twist];
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    44
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    45
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    46
section "chg_map";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    47
8529
paulson
parents: 8259
diff changeset
    48
Goalw [chg_map_def] "m a = None   ==> chg_map f a m = m";
paulson
parents: 8259
diff changeset
    49
by Auto_tac;
paulson
parents: 8259
diff changeset
    50
qed "chg_map_new";
paulson
parents: 8259
diff changeset
    51
paulson
parents: 8259
diff changeset
    52
Goalw [chg_map_def] "m a = Some b ==> chg_map f a m = m(a|->f b)";
paulson
parents: 8259
diff changeset
    53
by Auto_tac;
paulson
parents: 8259
diff changeset
    54
qed "chg_map_upd";
paulson
parents: 8259
diff changeset
    55
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    56
Addsimps[chg_map_new, chg_map_upd];
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    57
4526
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    58
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    59
section "map_of";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    60
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    61
Goal "map_of xs k = Some y --> (k,y):set xs";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    62
by (induct_tac "xs" 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    63
by  (Simp_tac 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    64
by (split_all_tac 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    65
by (Asm_simp_tac 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    66
qed_spec_mp "map_of_SomeD";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    67
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    68
Goal "[| map_of xs k = Some z; P z |] ==> map_of [(k,z):xs . P z] k = Some z";
7961
422ac6888c7f expandshort
paulson
parents: 7958
diff changeset
    69
by (rtac mp 1);
422ac6888c7f expandshort
paulson
parents: 7958
diff changeset
    70
by (assume_tac 2);
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    71
by (etac thin_rl 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    72
by (induct_tac "xs" 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    73
by  Auto_tac;
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    74
qed "map_of_filter_in";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    75
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    76
Goal "finite (range (map_of l))";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    77
by (induct_tac "l" 1);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    78
by  (ALLGOALS (simp_tac (simpset() addsimps [image_constant])));
8254
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
    79
by (rtac finite_subset 1);
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
    80
by (assume_tac 2);
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    81
by Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    82
qed "finite_range_map_of";
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    83
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    84
section "option_map related";
4990
25da60d0a20b added option_map_o_empty
oheimb
parents: 4926
diff changeset
    85
8529
paulson
parents: 8259
diff changeset
    86
Goal "option_map f o empty = empty";
paulson
parents: 8259
diff changeset
    87
by (rtac ext 1);
paulson
parents: 8259
diff changeset
    88
by (Simp_tac 1);
paulson
parents: 8259
diff changeset
    89
qed "option_map_o_empty";
4990
25da60d0a20b added option_map_o_empty
oheimb
parents: 4926
diff changeset
    90
8529
paulson
parents: 8259
diff changeset
    91
Goal "option_map f o m(a|->b) = (option_map f o m)(a|->f b)";
paulson
parents: 8259
diff changeset
    92
by (rtac ext 1);
paulson
parents: 8259
diff changeset
    93
by (Simp_tac 1);
paulson
parents: 8259
diff changeset
    94
qed "option_map_o_map_upd";
paulson
parents: 8259
diff changeset
    95
5195
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
    96
Addsimps[option_map_o_empty, option_map_o_map_upd];
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    97
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    98
section "++";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    99
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   100
Goalw [override_def] "m ++ empty = m";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   101
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   102
qed "override_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   103
Addsimps [override_empty];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   104
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   105
Goalw [override_def] "empty ++ m = m";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   106
by (Simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   107
by (rtac ext 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
   108
by (split_tac [option.split] 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   109
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   110
qed "empty_override";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   111
Addsimps [empty_override];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   112
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   113
Goalw [override_def]
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   114
 "((m ++ n) k = Some x) = (n k = Some x | n k = None & m k = Some x)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
   115
by (simp_tac (simpset() addsplits [option.split]) 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   116
qed_spec_mp "override_Some_iff";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   117
4926
0fd0b3f3bc25 added option_map_o_update
oheimb
parents: 4883
diff changeset
   118
bind_thm ("override_SomeD", standard(override_Some_iff RS iffD1));
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   119
AddSDs[override_SomeD];
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   120
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   121
Goal "!!xx. n k = Some xx ==> (m ++ n) k = Some xx";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   122
by (stac override_Some_iff 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   123
by (Fast_tac 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   124
qed "override_find_right";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   125
Addsimps[override_find_right];
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   126
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   127
Goalw [override_def] "((m ++ n) k = None) = (n k = None & m k = None)";
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
   128
by (simp_tac (simpset() addsplits [option.split]) 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   129
qed "override_None";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   130
AddIffs [override_None];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   131
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   132
Goalw [override_def] "f ++ g(x|->y) = (f ++ g)(x|->y)";
8254
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
   133
by (rtac ext 1);
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   134
by (auto_tac (claset_of Map.thy, simpset_of Map.thy));
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   135
qed "override_upd";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   136
Addsimps[override_upd];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   137
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   138
Goalw [override_def] "map_of ys ++ map_of xs = map_of (xs@ys)";
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   139
by (rtac sym 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   140
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   141
by (Simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   142
by (rtac ext 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
   143
by (asm_simp_tac (simpset() addsplits [option.split]) 1);
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   144
qed "map_of_override";
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   145
Addsimps [map_of_override];
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   146
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   147
Delsimps[fun_upd_apply];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   148
Goal "finite (range f) ==> finite (range (f ++ map_of l))";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   149
by (induct_tac "l" 1);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   150
by  Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   151
by  (fold_goals_tac [empty_def]);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   152
by  (Asm_simp_tac 1);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   153
by (etac finite_range_updI 1);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   154
qed "finite_range_map_of_override";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   155
Addsimps [fun_upd_apply];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   156
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
   157
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   158
section "dom";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   159
8259
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   160
Goalw [dom_def] "m a = Some b ==> a : dom m";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   161
by Auto_tac;
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   162
qed "domI";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   163
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   164
Goalw [dom_def] "a : dom m ==> ? b. m a = Some b";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   165
by Auto_tac;
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   166
qed "domD";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   167
AddSDs [domD];
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   168
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   169
Goalw [dom_def] "dom empty = {}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   170
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   171
qed "dom_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   172
Addsimps [dom_empty];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   173
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
   174
Goalw [dom_def] "dom(m(a|->b)) = insert a (dom m)";
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4526
diff changeset
   175
by (Simp_tac 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   176
by (Blast_tac 1);
5195
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   177
qed "dom_map_upd";
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   178
Addsimps [dom_map_upd];
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   179
8529
paulson
parents: 8259
diff changeset
   180
Goalw [dom_def] "finite (dom (map_of l))";
paulson
parents: 8259
diff changeset
   181
by (induct_tac "l" 1);
paulson
parents: 8259
diff changeset
   182
by (auto_tac (claset(), 
paulson
parents: 8259
diff changeset
   183
	      simpset() addsimps [insert_Collect RS sym]));
paulson
parents: 8259
diff changeset
   184
qed "finite_dom_map_of";
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   185
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   186
Goalw [dom_def] "dom(m++n) = dom n Un dom m";
8529
paulson
parents: 8259
diff changeset
   187
by Auto_tac;
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   188
qed "dom_override";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   189
Addsimps [dom_override];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   190
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   191
section "ran";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   192
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   193
Goalw [ran_def] "ran empty = {}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   194
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   195
qed "ran_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   196
Addsimps [ran_empty];
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   197
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   198
Goalw [ran_def] "ran (%u. None) = {}";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   199
by Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   200
qed "ran_empty'";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   201
Addsimps[ran_empty'];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   202
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
   203
Goalw [ran_def] "m a = None ==> ran(m(a|->b)) = insert b (ran m)";
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   204
by Auto_tac;
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   205
by (subgoal_tac "~(aa = a)" 1);
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   206
by Auto_tac;
5195
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   207
qed "ran_map_upd";
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   208
Addsimps [ran_map_upd];