src/HOL/Map.ML
author oheimb
Fri, 01 May 1998 22:28:25 +0200
changeset 4883 c1aec06d1dca
parent 4838 196100237656
child 4926 0fd0b3f3bc25
permissions -rw-r--r--
added finite_dom_map_of and ran_update
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
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
     9
goalw thy [empty_def] "empty k = None";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    10
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    11
qed "empty_def2";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    12
Addsimps [empty_def2];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    13
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    14
goalw thy [update_def] "(m[a|->b])x = (if x=a then Some b else m x)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    15
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    16
qed "update_def2";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    17
Addsimps [update_def2];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    18
4526
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    19
qed_goal "update_same" thy "(t[k|->x]) k = Some x" 
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    20
	(K [Simp_tac 1]);
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    21
qed_goal "update_other" thy "!!X. l~=k ==> (t[k|->x]) l = t l"
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    22
	(K [Asm_simp_tac 1]);
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    23
qed_goal "update_triv" thy "!!X. t k = Some x ==> t[k|->x] = t"
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4526
diff changeset
    24
	(K [rtac ext 1, Asm_simp_tac 1]);
4526
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    25
(*Addsimps [update_same, update_other, update_triv];*)
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    26
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    27
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    28
section "++";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    29
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    30
goalw thy [override_def] "m ++ empty = m";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    31
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    32
qed "override_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    33
Addsimps [override_empty];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    34
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    35
goalw thy [override_def] "empty ++ m = m";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    36
by (Simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    37
by (rtac ext 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    38
by (split_tac [split_option_case] 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    39
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    40
qed "empty_override";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    41
Addsimps [empty_override];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    42
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    43
goalw thy [override_def]
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    44
 "((m ++ n) k = Some x) = (n k = Some x | n k = None & m k = Some x)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    45
by (simp_tac (simpset() addsplits [split_option_case]) 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    46
qed_spec_mp "override_Some_iff";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    47
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    48
bind_thm("override_SomeD", standard(override_Some_iff RS iffD1));
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    49
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    50
goalw thy [override_def]
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    51
 "((m ++ n) k = None) = (n k = None & m k = None)";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    52
by (simp_tac (simpset() addsplits [split_option_case]) 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    53
qed "override_None";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    54
AddIffs [override_None];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    55
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    56
goalw thy [override_def] "map_of(xs@ys) = map_of ys ++ map_of xs";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    57
by (induct_tac "xs" 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    58
by (Simp_tac 1);
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    59
by (rtac ext 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4526
diff changeset
    60
by (asm_simp_tac (simpset() addsplits [split_option_case]) 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    61
qed "map_of_append";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    62
Addsimps [map_of_append];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    63
4526
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    64
goal thy "map_of xs k = Some y --> (k,y):set xs";
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    65
by (list.induct_tac "xs" 1);
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    66
by  (Simp_tac 1);
4838
196100237656 cleanup for split_all_tac as wrapper in claset()
oheimb
parents: 4686
diff changeset
    67
by (split_all_tac 1);
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4526
diff changeset
    68
by (Asm_simp_tac 1);
4526
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    69
qed_spec_mp "map_of_SomeD";
6be35399125a added update_same, update_other, update_triv, and map_of_SomeD
oheimb
parents: 4423
diff changeset
    70
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    71
section "dom";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    72
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    73
goalw thy [dom_def] "dom empty = {}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    74
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    75
qed "dom_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    76
Addsimps [dom_empty];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    77
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    78
goalw thy [dom_def] "dom(m[a|->b]) = insert a (dom m)";
4686
74a12e86b20b Removed `addsplits [expand_if]'
nipkow
parents: 4526
diff changeset
    79
by (Simp_tac 1);
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    80
by (Blast_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    81
qed "dom_update";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    82
Addsimps [dom_update];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    83
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    84
qed_goalw "finite_dom_map_of" Map.thy [dom_def] "finite (dom (map_of l))" (K[
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    85
	list.induct_tac "l" 1,
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    86
	 ALLGOALS Simp_tac,
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    87
	stac (insert_Collect RS sym) 1,
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    88
	Asm_simp_tac 1]);
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
    89
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    90
goalw thy [dom_def] "dom(m++n) = dom n Un dom m";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    91
by (Blast_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    92
qed "dom_override";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    93
Addsimps [dom_override];
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    94
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    95
section "ran";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    96
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    97
goalw thy [ran_def] "ran empty = {}";
4423
a129b817b58a expandshort;
wenzelm
parents: 4089
diff changeset
    98
by (Simp_tac 1);
3981
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
    99
qed "ran_empty";
b4f93a8da835 Added the new theory Map.
nipkow
parents:
diff changeset
   100
Addsimps [ran_empty];
4883
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   101
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   102
goalw thy [ran_def] "!!X. m a = None ==> ran(m[a|->b]) = insert b (ran m)";
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   103
by Auto_tac;
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   104
by (subgoal_tac "~(aa = a)" 1);
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   105
by Auto_tac;
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   106
qed "ran_update";
c1aec06d1dca added finite_dom_map_of and ran_update
oheimb
parents: 4838
diff changeset
   107
Addsimps [ran_update];