src/HOL/Library/Mapping.thy
author haftmann
Fri, 02 Jul 2010 14:23:17 +0200
changeset 37693 b10444eb9c98
parent 37299 6315d1bd8388
child 37700 bd90378b8171
permissions -rw-r--r--
remove codegeneration-related theories from big library theory
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31459
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
     1
(* Author: Florian Haftmann, TU Muenchen *)
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
     2
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
     3
header {* An abstract view on maps for code generation. *}
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
     4
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
     5
theory Mapping
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
     6
imports Main
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
     7
begin
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
     8
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
     9
subsection {* Type definition and primitive operations *}
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    10
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    11
datatype ('a, 'b) mapping = Mapping "'a \<rightharpoonup> 'b"
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    12
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    13
definition empty :: "('a, 'b) mapping" where
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    14
  "empty = Mapping (\<lambda>_. None)"
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    15
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    16
primrec lookup :: "('a, 'b) mapping \<Rightarrow> 'a \<rightharpoonup> 'b" where
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    17
  "lookup (Mapping f) = f"
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    18
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    19
primrec update :: "'a \<Rightarrow> 'b \<Rightarrow> ('a, 'b) mapping \<Rightarrow> ('a, 'b) mapping" where
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    20
  "update k v (Mapping f) = Mapping (f (k \<mapsto> v))"
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    21
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    22
primrec delete :: "'a \<Rightarrow> ('a, 'b) mapping \<Rightarrow> ('a, 'b) mapping" where
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    23
  "delete k (Mapping f) = Mapping (f (k := None))"
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    24
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    25
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    26
subsection {* Derived operations *}
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    27
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    28
definition keys :: "('a, 'b) mapping \<Rightarrow> 'a set" where
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    29
  "keys m = dom (lookup m)"
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    30
35194
a6c573d13385 added ordered_keys
haftmann
parents: 35157
diff changeset
    31
definition ordered_keys :: "('a\<Colon>linorder, 'b) mapping \<Rightarrow> 'a list" where
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    32
  "ordered_keys m = (if finite (keys m) then sorted_list_of_set (keys m) else [])"
35194
a6c573d13385 added ordered_keys
haftmann
parents: 35157
diff changeset
    33
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    34
definition is_empty :: "('a, 'b) mapping \<Rightarrow> bool" where
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    35
  "is_empty m \<longleftrightarrow> keys m = {}"
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    36
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    37
definition size :: "('a, 'b) mapping \<Rightarrow> nat" where
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    38
  "size m = (if finite (keys m) then card (keys m) else 0)"
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    39
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    40
definition replace :: "'a \<Rightarrow> 'b \<Rightarrow> ('a, 'b) mapping \<Rightarrow> ('a, 'b) mapping" where
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    41
  "replace k v m = (if k \<in> keys m then update k v m else m)"
29814
15344c0899e1 added replace operation
haftmann
parents: 29708
diff changeset
    42
37026
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    43
definition default :: "'a \<Rightarrow> 'b \<Rightarrow> ('a, 'b) mapping \<Rightarrow> ('a, 'b) mapping" where
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    44
  "default k v m = (if k \<in> keys m then m else update k v m)"
37026
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    45
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    46
definition map_entry :: "'a \<Rightarrow> ('b \<Rightarrow> 'b) \<Rightarrow> ('a, 'b) mapping \<Rightarrow> ('a, 'b) mapping" where
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    47
  "map_entry k f m = (case lookup m k of None \<Rightarrow> m
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    48
    | Some v \<Rightarrow> update k (f v) m)" 
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    49
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    50
definition map_default :: "'a \<Rightarrow> 'b \<Rightarrow> ('b \<Rightarrow> 'b) \<Rightarrow> ('a, 'b) mapping \<Rightarrow> ('a, 'b) mapping" where
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    51
  "map_default k v f m = map_entry k f (default k v m)" 
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    52
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    53
definition tabulate :: "'a list \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> ('a, 'b) mapping" where
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    54
  "tabulate ks f = Mapping (map_of (map (\<lambda>k. (k, f k)) ks))"
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    55
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    56
definition bulkload :: "'a list \<Rightarrow> (nat, 'a) mapping" where
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    57
  "bulkload xs = Mapping (\<lambda>k. if k < length xs then Some (xs ! k) else None)"
29826
5132da6ebca3 added bulkload
haftmann
parents: 29814
diff changeset
    58
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    59
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    60
subsection {* Properties *}
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    61
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    62
lemma lookup_inject [simp]:
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    63
  "lookup m = lookup n \<longleftrightarrow> m = n"
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    64
  by (cases m, cases n) simp
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    65
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    66
lemma mapping_eqI:
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    67
  assumes "lookup m = lookup n"
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    68
  shows "m = n"
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    69
  using assms by simp
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    70
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    71
lemma keys_is_none_lookup [code_inline]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    72
  "k \<in> keys m \<longleftrightarrow> \<not> (Option.is_none (lookup m k))"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    73
  by (auto simp add: keys_def is_none_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
    74
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    75
lemma lookup_empty [simp]:
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    76
  "lookup empty = Map.empty"
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    77
  by (simp add: empty_def)
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    78
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    79
lemma lookup_update [simp]:
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    80
  "lookup (update k v m) = (lookup m) (k \<mapsto> v)"
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    81
  by (cases m) simp
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    82
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    83
lemma lookup_delete [simp]:
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    84
  "lookup (delete k m) = (lookup m) (k := None)"
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    85
  by (cases m) simp
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    86
37026
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    87
lemma lookup_map_entry [simp]:
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    88
  "lookup (map_entry k f m) = (lookup m) (k := Option.map f (lookup m k))"
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    89
  by (cases "lookup m k") (simp_all add: map_entry_def expand_fun_eq)
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
    90
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    91
lemma lookup_tabulate [simp]:
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    92
  "lookup (tabulate ks f) = (Some o f) |` set ks"
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    93
  by (induct ks) (auto simp add: tabulate_def restrict_map_def expand_fun_eq)
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    94
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    95
lemma lookup_bulkload [simp]:
29826
5132da6ebca3 added bulkload
haftmann
parents: 29814
diff changeset
    96
  "lookup (bulkload xs) = (\<lambda>k. if k < length xs then Some (xs ! k) else None)"
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
    97
  by (simp add: bulkload_def)
29826
5132da6ebca3 added bulkload
haftmann
parents: 29814
diff changeset
    98
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
    99
lemma update_update:
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   100
  "update k v (update k w m) = update k v m"
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   101
  "k \<noteq> l \<Longrightarrow> update k v (update l w m) = update l w (update k v m)"
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   102
  by (rule mapping_eqI, simp add: fun_upd_twist)+
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   103
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   104
lemma update_delete [simp]:
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   105
  "update k v (delete k m) = update k v m"
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   106
  by (rule mapping_eqI) simp
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   107
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   108
lemma delete_update:
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   109
  "delete k (update k v m) = delete k m"
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   110
  "k \<noteq> l \<Longrightarrow> delete k (update l v m) = update l v (delete k m)"
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   111
  by (rule mapping_eqI, simp add: fun_upd_twist)+
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   112
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   113
lemma delete_empty [simp]:
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   114
  "delete k empty = empty"
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   115
  by (rule mapping_eqI) simp
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   116
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   117
lemma replace_update:
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   118
  "k \<notin> keys m \<Longrightarrow> replace k v m = m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   119
  "k \<in> keys m \<Longrightarrow> replace k v m = update k v m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   120
  by (rule mapping_eqI) (auto simp add: replace_def fun_upd_twist)+
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   121
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   122
lemma size_empty [simp]:
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   123
  "size empty = 0"
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   124
  by (simp add: size_def keys_def)
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   125
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   126
lemma size_update:
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   127
  "finite (keys m) \<Longrightarrow> size (update k v m) =
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   128
    (if k \<in> keys m then size m else Suc (size m))"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   129
  by (auto simp add: size_def insert_dom keys_def)
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   130
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   131
lemma size_delete:
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   132
  "size (delete k m) = (if k \<in> keys m then size m - 1 else size m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   133
  by (simp add: size_def keys_def)
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   134
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   135
lemma size_tabulate [simp]:
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   136
  "size (tabulate ks f) = length (remdups ks)"
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   137
  by (simp add: size_def distinct_card [of "remdups ks", symmetric] comp_def keys_def)
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   138
29831
5dc920623bb1 Isar proof
haftmann
parents: 29828
diff changeset
   139
lemma bulkload_tabulate:
29826
5132da6ebca3 added bulkload
haftmann
parents: 29814
diff changeset
   140
  "bulkload xs = tabulate [0..<length xs] (nth xs)"
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   141
  by (rule mapping_eqI) (simp add: expand_fun_eq)
29826
5132da6ebca3 added bulkload
haftmann
parents: 29814
diff changeset
   142
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   143
lemma is_empty_empty: (*FIXME*)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   144
  "is_empty m \<longleftrightarrow> m = Mapping Map.empty"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   145
  by (cases m) (simp add: is_empty_def keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   146
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   147
lemma is_empty_empty' [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   148
  "is_empty empty"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   149
  by (simp add: is_empty_empty empty_def) 
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   150
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   151
lemma is_empty_update [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   152
  "\<not> is_empty (update k v m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   153
  by (cases m) (simp add: is_empty_empty)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   154
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   155
lemma is_empty_delete:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   156
  "is_empty (delete k m) \<longleftrightarrow> is_empty m \<or> keys m = {k}"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   157
  by (cases m) (auto simp add: is_empty_empty keys_def dom_eq_empty_conv [symmetric] simp del: dom_eq_empty_conv)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   158
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   159
lemma is_empty_replace [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   160
  "is_empty (replace k v m) \<longleftrightarrow> is_empty m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   161
  by (auto simp add: replace_def) (simp add: is_empty_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   162
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   163
lemma is_empty_default [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   164
  "\<not> is_empty (default k v m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   165
  by (auto simp add: default_def) (simp add: is_empty_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   166
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   167
lemma is_empty_map_entry [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   168
  "is_empty (map_entry k f m) \<longleftrightarrow> is_empty m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   169
  by (cases "lookup m k")
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   170
    (auto simp add: map_entry_def, simp add: is_empty_empty)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   171
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   172
lemma is_empty_map_default [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   173
  "\<not> is_empty (map_default k v f m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   174
  by (simp add: map_default_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   175
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   176
lemma keys_empty [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   177
  "keys empty = {}"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   178
  by (simp add: keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   179
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   180
lemma keys_update [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   181
  "keys (update k v m) = insert k (keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   182
  by (simp add: keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   183
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   184
lemma keys_delete [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   185
  "keys (delete k m) = keys m - {k}"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   186
  by (simp add: keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   187
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   188
lemma keys_replace [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   189
  "keys (replace k v m) = keys m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   190
  by (auto simp add: keys_def replace_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   191
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   192
lemma keys_default [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   193
  "keys (default k v m) = insert k (keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   194
  by (auto simp add: keys_def default_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   195
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   196
lemma keys_map_entry [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   197
  "keys (map_entry k f m) = keys m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   198
  by (auto simp add: keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   199
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   200
lemma keys_map_default [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   201
  "keys (map_default k v f m) = insert k (keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   202
  by (simp add: map_default_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   203
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   204
lemma keys_tabulate [simp]:
37026
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
   205
  "keys (tabulate ks f) = set ks"
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
   206
  by (simp add: tabulate_def keys_def map_of_map_restrict o_def)
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
   207
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   208
lemma keys_bulkload [simp]:
37026
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
   209
  "keys (bulkload xs) = {0..<length xs}"
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
   210
  by (simp add: keys_tabulate bulkload_tabulate)
7e8979a155ae operations default, map_entry, map_default; more lemmas
haftmann
parents: 36176
diff changeset
   211
37052
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   212
lemma distinct_ordered_keys [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   213
  "distinct (ordered_keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   214
  by (simp add: ordered_keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   215
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   216
lemma ordered_keys_infinite [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   217
  "\<not> finite (keys m) \<Longrightarrow> ordered_keys m = []"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   218
  by (simp add: ordered_keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   219
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   220
lemma ordered_keys_empty [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   221
  "ordered_keys empty = []"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   222
  by (simp add: ordered_keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   223
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   224
lemma ordered_keys_update [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   225
  "k \<in> keys m \<Longrightarrow> ordered_keys (update k v m) = ordered_keys m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   226
  "finite (keys m) \<Longrightarrow> k \<notin> keys m \<Longrightarrow> ordered_keys (update k v m) = insort k (ordered_keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   227
  by (simp_all add: ordered_keys_def) (auto simp only: sorted_list_of_set_insert [symmetric] insert_absorb)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   228
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   229
lemma ordered_keys_delete [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   230
  "ordered_keys (delete k m) = remove1 k (ordered_keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   231
proof (cases "finite (keys m)")
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   232
  case False then show ?thesis by simp
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   233
next
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   234
  case True note fin = True
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   235
  show ?thesis
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   236
  proof (cases "k \<in> keys m")
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   237
    case False with fin have "k \<notin> set (sorted_list_of_set (keys m))" by simp
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   238
    with False show ?thesis by (simp add: ordered_keys_def remove1_idem)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   239
  next
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   240
    case True with fin show ?thesis by (simp add: ordered_keys_def sorted_list_of_set_remove)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   241
  qed
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   242
qed
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   243
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   244
lemma ordered_keys_replace [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   245
  "ordered_keys (replace k v m) = ordered_keys m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   246
  by (simp add: replace_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   247
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   248
lemma ordered_keys_default [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   249
  "k \<in> keys m \<Longrightarrow> ordered_keys (default k v m) = ordered_keys m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   250
  "finite (keys m) \<Longrightarrow> k \<notin> keys m \<Longrightarrow> ordered_keys (default k v m) = insort k (ordered_keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   251
  by (simp_all add: default_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   252
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   253
lemma ordered_keys_map_entry [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   254
  "ordered_keys (map_entry k f m) = ordered_keys m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   255
  by (simp add: ordered_keys_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   256
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   257
lemma ordered_keys_map_default [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   258
  "k \<in> keys m \<Longrightarrow> ordered_keys (map_default k v f m) = ordered_keys m"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   259
  "finite (keys m) \<Longrightarrow> k \<notin> keys m \<Longrightarrow> ordered_keys (map_default k v f m) = insort k (ordered_keys m)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   260
  by (simp_all add: map_default_def)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   261
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   262
lemma ordered_keys_tabulate [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   263
  "ordered_keys (tabulate ks f) = sort (remdups ks)"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   264
  by (simp add: ordered_keys_def sorted_list_of_set_sort_remdups)
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   265
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   266
lemma ordered_keys_bulkload [simp]:
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   267
  "ordered_keys (bulkload ks) = [0..<length ks]"
80dd92673fca more lemmas about mappings, in particular keys
haftmann
parents: 37026
diff changeset
   268
  by (simp add: ordered_keys_def)
36110
4ab91a42666a lemma is_empty_empty
haftmann
parents: 35194
diff changeset
   269
31459
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   270
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   271
subsection {* Some technical code lemmas *}
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   272
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   273
lemma [code]:
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   274
  "mapping_case f m = f (Mapping.lookup m)"
31459
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   275
  by (cases m) simp
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   276
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   277
lemma [code]:
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   278
  "mapping_rec f m = f (Mapping.lookup m)"
31459
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   279
  by (cases m) simp
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   280
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   281
lemma [code]:
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   282
  "Nat.size (m :: (_, _) mapping) = 0"
31459
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   283
  by (cases m) simp
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   284
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   285
lemma [code]:
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   286
  "mapping_size f g m = 0"
31459
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   287
  by (cases m) simp
ae39b7b2a68a added trees implementing mappings
haftmann
parents: 30663
diff changeset
   288
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   289
37299
6315d1bd8388 hide default, map_entry, map_default
haftmann
parents: 37107
diff changeset
   290
hide_const (open) empty is_empty lookup update delete ordered_keys keys size
6315d1bd8388 hide default, map_entry, map_default
haftmann
parents: 37107
diff changeset
   291
  replace default map_entry map_default tabulate bulkload
35157
73cd6f78c86d more close integration with theory Map
haftmann
parents: 33640
diff changeset
   292
29708
e40b70d38909 added Mapping.thy to Library
haftmann
parents:
diff changeset
   293
end