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