src/HOL/Map.ML
author wenzelm
Thu, 15 Nov 2001 18:20:13 +0100
changeset 12207 4dff931b852f
parent 11015 55d95834c815
child 13811 f39f67982854
permissions -rw-r--r--
added Induct/Binary_Trees.thy, Induct/Tree_Forest (converted from former ex/TF.ML ex/TF.thy ex/Term.ML ex/Term.thy);
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
10973
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
     6
Map lemmas.
3981
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
10973
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
    16
Goal "empty(x := None) = empty";
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
    17
by (rtac ext 1);
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
    18
by (Simp_tac 1);
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
    19
qed "empty_upd_none";
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
    20
Addsimps [empty_upd_none];
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
    21
9342
d66f25a206b4 added sum_case_empty_empty (also to simpset)
oheimb
parents: 9018
diff changeset
    22
Goal "sum_case empty empty = empty";
d66f25a206b4 added sum_case_empty_empty (also to simpset)
oheimb
parents: 9018
diff changeset
    23
by (rtac ext 1);
d66f25a206b4 added sum_case_empty_empty (also to simpset)
oheimb
parents: 9018
diff changeset
    24
by (simp_tac (simpset() addsplits [sum.split]) 1);
d66f25a206b4 added sum_case_empty_empty (also to simpset)
oheimb
parents: 9018
diff changeset
    25
qed "sum_case_empty_empty";
d66f25a206b4 added sum_case_empty_empty (also to simpset)
oheimb
parents: 9018
diff changeset
    26
Addsimps [sum_case_empty_empty];
d66f25a206b4 added sum_case_empty_empty (also to simpset)
oheimb
parents: 9018
diff changeset
    27
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    28
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    29
section "map_upd";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    30
8529
paulson
parents: 8259
diff changeset
    31
Goal "t k = Some x ==> t(k|->x) = t";
paulson
parents: 8259
diff changeset
    32
by (rtac ext 1);
paulson
parents: 8259
diff changeset
    33
by (Asm_simp_tac 1);
paulson
parents: 8259
diff changeset
    34
qed "map_upd_triv";
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    35
9400
d3109d517307 added map_upd_nonempty, also to simpset
oheimb
parents: 9357
diff changeset
    36
Goal "t(k|->x) ~= empty";
d3109d517307 added map_upd_nonempty, also to simpset
oheimb
parents: 9357
diff changeset
    37
by Safe_tac;
d3109d517307 added map_upd_nonempty, also to simpset
oheimb
parents: 9357
diff changeset
    38
by (dres_inst_tac [("x","k")] fun_cong 1);
d3109d517307 added map_upd_nonempty, also to simpset
oheimb
parents: 9357
diff changeset
    39
by (Full_simp_tac 1);
d3109d517307 added map_upd_nonempty, also to simpset
oheimb
parents: 9357
diff changeset
    40
qed "map_upd_nonempty";
d3109d517307 added map_upd_nonempty, also to simpset
oheimb
parents: 9357
diff changeset
    41
Addsimps[map_upd_nonempty];
d3109d517307 added map_upd_nonempty, also to simpset
oheimb
parents: 9357
diff changeset
    42
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    43
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
    44
by (full_simp_tac (simpset() addsimps [full_SetCompr_eq]) 1);
8254
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
    45
by (rtac finite_subset 1);
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
    46
by (assume_tac 2);
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    47
by Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    48
qed "finite_range_updI";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
    49
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    50
11015
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    51
section "sum_case and empty/map_upd";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    52
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    53
Goal "sum_case (m(k|->y)) empty =  (sum_case m empty)(Inl k|->y)";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    54
by (rtac ext 1);
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    55
by (simp_tac (simpset() addsplits [sum.split]) 1);
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    56
qed "sum_case_map_upd_empty";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    57
Addsimps[sum_case_map_upd_empty];
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    58
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    59
Goal "sum_case empty (m(k|->y)) =  (sum_case empty m)(Inr k|->y)";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    60
by (rtac ext 1);
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    61
by (simp_tac (simpset() addsplits [sum.split]) 1);
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    62
qed "sum_case_empty_map_upd";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    63
Addsimps[sum_case_empty_map_upd];
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    64
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    65
Goal "sum_case (m1(k1|->y1)) (m2(k2|->y2)) = (sum_case (m1(k1|->y1)) m2)(Inr k2|->y2)";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    66
by (rtac ext 1);
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    67
by (simp_tac (simpset() addsplits [sum.split]) 1);
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    68
qed "sum_case_map_upd_map_upd";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    69
Addsimps[sum_case_map_upd_map_upd];
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    70
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
    71
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    72
section "map_upds";
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    73
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    74
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
    75
by (induct_tac "as" 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    76
by  (auto_tac (claset(), simpset() delsimps[fun_upd_apply]));
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    77
by (REPEAT(dtac spec 1));
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    78
by (rotate_tac ~1 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    79
by (etac subst 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    80
by (etac (fun_upd_twist RS subst) 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    81
by (rtac refl 1);
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    82
qed_spec_mp "map_upds_twist";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    83
Addsimps [map_upds_twist];
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    84
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    85
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    86
section "chg_map";
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    87
8529
paulson
parents: 8259
diff changeset
    88
Goalw [chg_map_def] "m a = None   ==> chg_map f a m = m";
paulson
parents: 8259
diff changeset
    89
by Auto_tac;
paulson
parents: 8259
diff changeset
    90
qed "chg_map_new";
paulson
parents: 8259
diff changeset
    91
paulson
parents: 8259
diff changeset
    92
Goalw [chg_map_def] "m a = Some b ==> chg_map f a m = m(a|->f b)";
paulson
parents: 8259
diff changeset
    93
by Auto_tac;
paulson
parents: 8259
diff changeset
    94
qed "chg_map_upd";
paulson
parents: 8259
diff changeset
    95
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    96
Addsimps[chg_map_new, chg_map_upd];
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
    97
4526
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    98
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
    99
section "map_of";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   100
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   101
Goal "map_of xs k = Some y --> (k,y):set xs";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   102
by (induct_tac "xs" 1);
9018
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   103
by  Auto_tac;
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   104
qed_spec_mp "map_of_SomeD";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   105
9018
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   106
Goal "inj f ==> map_of t k = Some x --> \
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   107
\  map_of (map (split (%k. Pair (f k))) t) (f k) = Some x";
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   108
by (induct_tac "t" 1);
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   109
by  (auto_tac (claset(),simpset()addsimps[inj_eq]));
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   110
qed_spec_mp "map_of_mapk_SomeI";
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   111
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   112
Goal "(k, x) : set l --> (? x. map_of l k = Some x)";
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   113
by (induct_tac "l" 1);
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   114
by  Auto_tac;
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   115
qed_spec_mp "weak_map_of_SomeI";
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   116
11015
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   117
Goal 
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   118
"[| map_of xs k = Some z; P k z |] ==> map_of (filter (split P) xs) k = Some z";
7961
422ac6888c7f expandshort
paulson
parents: 7958
diff changeset
   119
by (rtac mp 1);
11015
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   120
by (atac 2);
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   121
by (etac thin_rl 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   122
by (induct_tac "xs" 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   123
by  Auto_tac;
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   124
qed "map_of_filter_in";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   125
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   126
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
   127
by (induct_tac "l" 1);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   128
by  (ALLGOALS (simp_tac (simpset() addsimps [image_constant])));
8254
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
   129
by (rtac finite_subset 1);
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
   130
by (assume_tac 2);
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   131
by Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   132
qed "finite_range_map_of";
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   133
11015
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   134
Goal "map_of (map (%(a,b). (a,f b)) xs) x = option_map f (map_of xs x)";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   135
by (induct_tac "xs" 1);
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   136
by Auto_tac;
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   137
qed "map_of_map";
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   138
9018
b16bc0b5ad21 added map_of_mapk_SomeI and weak_map_of_SomeI
oheimb
parents: 8529
diff changeset
   139
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   140
section "option_map related";
4990
25da60d0a20b added option_map_o_empty
oheimb
parents: 4926
diff changeset
   141
8529
paulson
parents: 8259
diff changeset
   142
Goal "option_map f o empty = empty";
paulson
parents: 8259
diff changeset
   143
by (rtac ext 1);
paulson
parents: 8259
diff changeset
   144
by (Simp_tac 1);
paulson
parents: 8259
diff changeset
   145
qed "option_map_o_empty";
4990
25da60d0a20b added option_map_o_empty
oheimb
parents: 4926
diff changeset
   146
8529
paulson
parents: 8259
diff changeset
   147
Goal "option_map f o m(a|->b) = (option_map f o m)(a|->f b)";
paulson
parents: 8259
diff changeset
   148
by (rtac ext 1);
paulson
parents: 8259
diff changeset
   149
by (Simp_tac 1);
paulson
parents: 8259
diff changeset
   150
qed "option_map_o_map_upd";
paulson
parents: 8259
diff changeset
   151
5195
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   152
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
   153
11015
55d95834c815 added sum_case_map_upd_empty, sum_case_empty_map_upd, and
oheimb
parents: 10973
diff changeset
   154
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   155
section "++";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   156
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   157
Goalw [override_def] "m ++ empty = m";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   158
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   159
qed "override_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   160
Addsimps [override_empty];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   161
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   162
Goalw [override_def] "empty ++ m = m";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   163
by (Simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   164
by (rtac ext 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
   165
by (split_tac [option.split] 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   166
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   167
qed "empty_override";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   168
Addsimps [empty_override];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   169
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   170
Goalw [override_def]
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   171
 "((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
   172
by (simp_tac (simpset() addsplits [option.split]) 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   173
qed_spec_mp "override_Some_iff";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   174
4926
0fd0b3f3bc25 added option_map_o_update
oheimb
parents: 4883
diff changeset
   175
bind_thm ("override_SomeD", standard(override_Some_iff RS iffD1));
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   176
AddSDs[override_SomeD];
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   177
7958
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   178
Goal "!!xx. n k = Some xx ==> (m ++ n) k = Some xx";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   179
by (stac override_Some_iff 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   180
by (Fast_tac 1);
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   181
qed "override_find_right";
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   182
Addsimps[override_find_right];
f531589c9fc1 added various little lemmas
oheimb
parents: 6301
diff changeset
   183
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   184
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
   185
by (simp_tac (simpset() addsplits [option.split]) 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   186
qed "override_None";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   187
AddIffs [override_None];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   188
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   189
Goalw [override_def] "f ++ g(x|->y) = (f ++ g)(x|->y)";
8254
84a5fe44520f expandshort
paulson
parents: 8160
diff changeset
   190
by (rtac ext 1);
9357
wenzelm
parents: 9356
diff changeset
   191
by Auto_tac;
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   192
qed "override_upd";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   193
Addsimps[override_upd];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   194
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   195
Goalw [override_def] "map_of ys ++ map_of xs = map_of (xs@ys)";
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   196
by (rtac sym 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   197
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   198
by (Simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   199
by (rtac ext 1);
5183
89f162de39cf Adapted to new datatype package.
berghofe
parents: 5143
diff changeset
   200
by (asm_simp_tac (simpset() addsplits [option.split]) 1);
5444
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   201
qed "map_of_override";
ffc64812a70b AddSDs[override_SomeD];
oheimb
parents: 5300
diff changeset
   202
Addsimps [map_of_override];
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   203
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   204
Delsimps[fun_upd_apply];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   205
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
   206
by (induct_tac "l" 1);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   207
by  Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   208
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
   209
by  (Asm_simp_tac 1);
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   210
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
   211
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
   212
Addsimps [fun_upd_apply];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   213
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
   214
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   215
section "dom";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   216
8259
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   217
Goalw [dom_def] "m a = Some b ==> a : dom m";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   218
by Auto_tac;
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   219
qed "domI";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   220
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   221
Goalw [dom_def] "a : dom m ==> ? b. m a = Some b";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   222
by Auto_tac;
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   223
qed "domD";
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   224
AddSDs [domD];
a8d2606f4921 added domI, domD
oheimb
parents: 8254
diff changeset
   225
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   226
Goalw [dom_def] "dom empty = {}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   227
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   228
qed "dom_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   229
Addsimps [dom_empty];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   230
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
   231
Goalw [dom_def] "dom(m(a|->b)) = insert a (dom m)";
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4526
diff changeset
   232
by (Simp_tac 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   233
by (Blast_tac 1);
5195
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   234
qed "dom_map_upd";
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   235
Addsimps [dom_map_upd];
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   236
8529
paulson
parents: 8259
diff changeset
   237
Goalw [dom_def] "finite (dom (map_of l))";
paulson
parents: 8259
diff changeset
   238
by (induct_tac "l" 1);
10973
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
   239
by (auto_tac (claset(),
5b0d04078d2a empty_upd_none;
wenzelm
parents: 9400
diff changeset
   240
              simpset() addsimps [insert_Collect RS sym]));
8529
paulson
parents: 8259
diff changeset
   241
qed "finite_dom_map_of";
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   242
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   243
Goalw [dom_def] "dom(m++n) = dom n Un dom m";
8529
paulson
parents: 8259
diff changeset
   244
by Auto_tac;
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   245
qed "dom_override";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   246
Addsimps [dom_override];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   247
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   248
section "ran";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   249
5069
3ea049f7979d isatool fixgoal;
wenzelm
parents: 4990
diff changeset
   250
Goalw [ran_def] "ran empty = {}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
   251
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   252
qed "ran_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   253
Addsimps [ran_empty];
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   254
8160
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   255
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
   256
by Auto_tac;
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   257
qed "ran_empty'";
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   258
Addsimps[ran_empty'];
837a6b515005 added finite_range_updI, finite_range_map_of, finite_range_map_of_override
oheimb
parents: 7961
diff changeset
   259
5300
2b1ca524ace8 defined map_upd by translation via fun_upd
oheimb
parents: 5195
diff changeset
   260
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
   261
by Auto_tac;
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   262
by (subgoal_tac "~(aa = a)" 1);
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   263
by Auto_tac;
5195
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   264
qed "ran_map_upd";
277831ae7eac Map.update -> map_upd, Unpdate.update -> fun_upd
nipkow
parents: 5183
diff changeset
   265
Addsimps [ran_map_upd];