src/HOL/Quotient_Examples/Lift_RBT.thy
author kuncar
Tue, 31 Jul 2012 13:55:39 +0200
changeset 48621 877df57629e3
parent 47888 45bf22d8a81d
child 48622 caaa1a02c650
permissions -rw-r--r--
a couple of additions to RBT formalization to allow us to implement RBT_Set
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
     1
(*  Title:      HOL/Quotient_Examples/Lift_RBT.thy
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
     2
    Author:     Lukas Bulwahn and Ondrej Kuncar
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
     3
*)
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
     4
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
     5
header {* Lifting operations of RBT trees *}
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
     6
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
     7
theory Lift_RBT 
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
     8
imports Main "~~/src/HOL/Library/RBT_Impl"
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
     9
begin
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    10
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
    11
(* TODO: Replace the ancient Library/RBT theory by this example of the lifting and transfer mechanism. *)
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
    12
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    13
subsection {* Type definition *}
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    14
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    15
typedef (open) ('a, 'b) rbt = "{t :: ('a\<Colon>linorder, 'b) RBT_Impl.rbt. is_rbt t}"
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    16
  morphisms impl_of RBT
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    17
proof -
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    18
  have "RBT_Impl.Empty \<in> ?rbt" by simp
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    19
  then show ?thesis ..
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    20
qed
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    21
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    22
lemma rbt_eq_iff:
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    23
  "t1 = t2 \<longleftrightarrow> impl_of t1 = impl_of t2"
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    24
  by (simp add: impl_of_inject)
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    25
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    26
lemma rbt_eqI:
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    27
  "impl_of t1 = impl_of t2 \<Longrightarrow> t1 = t2"
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    28
  by (simp add: rbt_eq_iff)
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    29
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    30
lemma is_rbt_impl_of [simp, intro]:
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    31
  "is_rbt (impl_of t)"
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    32
  using impl_of [of t] by simp
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    33
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    34
lemma RBT_impl_of [simp, code abstype]:
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    35
  "RBT (impl_of t) = t"
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    36
  by (simp add: impl_of_inverse)
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    37
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    38
subsection {* Primitive operations *}
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    39
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    40
setup_lifting type_definition_rbt
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    41
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    42
lift_definition lookup :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'a \<rightharpoonup> 'b" is "rbt_lookup" 
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    43
by simp
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    44
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    45
lift_definition empty :: "('a\<Colon>linorder, 'b) rbt" is RBT_Impl.Empty 
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    46
by (simp add: empty_def)
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    47
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    48
lift_definition insert :: "'a\<Colon>linorder \<Rightarrow> 'b \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is "rbt_insert" 
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    49
by simp
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    50
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    51
lift_definition delete :: "'a\<Colon>linorder \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is "rbt_delete" 
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    52
by simp
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    53
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    54
lift_definition entries :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a \<times> 'b) list" is RBT_Impl.entries
47093
0516a6c1ea59 store the quotient theorem for every quotient
kuncar
parents: 47092
diff changeset
    55
by simp
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    56
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    57
lift_definition keys :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'a list" is RBT_Impl.keys 
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    58
by simp
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
    59
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    60
lift_definition bulkload :: "('a\<Colon>linorder \<times> 'b) list \<Rightarrow> ('a, 'b) rbt" is "rbt_bulkload" 
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    61
by simp
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    62
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    63
lift_definition map_entry :: "'a \<Rightarrow> ('b \<Rightarrow> 'b) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is rbt_map_entry 
47308
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    64
by simp
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    65
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    66
lift_definition map :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is RBT_Impl.map
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    67
by simp
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    68
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    69
lift_definition fold :: "('a \<Rightarrow> 'b \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> ('a\<Colon>linorder, 'b) rbt \<Rightarrow> 'c \<Rightarrow> 'c"  is RBT_Impl.fold 
9caab698dbe4 new package Lifting - initial commit
kuncar
parents: 47097
diff changeset
    70
by simp
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    71
48621
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
    72
lift_definition union :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> ('a, 'b) rbt \<Rightarrow> ('a, 'b) rbt" is "rbt_union"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
    73
by (simp add: rbt_union_is_rbt)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
    74
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
    75
lift_definition foldi :: "('c \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b \<Rightarrow> 'c \<Rightarrow> 'c) \<Rightarrow> ('a :: linorder, 'b) rbt \<Rightarrow> 'c \<Rightarrow> 'c"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
    76
  is RBT_Impl.foldi by simp
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
    77
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
    78
export_code lookup empty insert delete entries keys bulkload map_entry map fold union foldi in SML
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    79
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    80
subsection {* Derived operations *}
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    81
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    82
definition is_empty :: "('a\<Colon>linorder, 'b) rbt \<Rightarrow> bool" where
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    83
  [code]: "is_empty t = (case impl_of t of RBT_Impl.Empty \<Rightarrow> True | _ \<Rightarrow> False)"
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    84
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    85
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    86
subsection {* Abstract lookup properties *}
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    87
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    88
lemma lookup_RBT:
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    89
  "is_rbt t \<Longrightarrow> lookup (RBT t) = rbt_lookup t"
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    90
  by (simp add: lookup_def RBT_inverse)
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    91
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    92
lemma lookup_impl_of:
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    93
  "rbt_lookup (impl_of t) = lookup t"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
    94
  by transfer (rule refl)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    95
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    96
lemma entries_impl_of:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    97
  "RBT_Impl.entries (impl_of t) = entries t"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
    98
  by transfer (rule refl)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
    99
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   100
lemma keys_impl_of:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   101
  "RBT_Impl.keys (impl_of t) = keys t"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   102
  by transfer (rule refl)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   103
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   104
lemma lookup_empty [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   105
  "lookup empty = Map.empty"
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   106
  by (simp add: empty_def lookup_RBT fun_eq_iff)
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   107
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   108
lemma lookup_insert [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   109
  "lookup (insert k v t) = (lookup t)(k \<mapsto> v)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   110
  by transfer (rule rbt_lookup_rbt_insert)
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
   111
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   112
lemma lookup_delete [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   113
  "lookup (delete k t) = (lookup t)(k := None)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   114
  by transfer (simp add: rbt_lookup_rbt_delete restrict_complement_singleton_eq)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   115
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   116
lemma map_of_entries [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   117
  "map_of (entries t) = lookup t"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   118
  by transfer (simp add: map_of_entries)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   119
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   120
lemma entries_lookup:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   121
  "entries t1 = entries t2 \<longleftrightarrow> lookup t1 = lookup t2"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   122
  by transfer (simp add: entries_rbt_lookup)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   123
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   124
lemma lookup_bulkload [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   125
  "lookup (bulkload xs) = map_of xs"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   126
  by transfer (rule rbt_lookup_rbt_bulkload)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   127
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   128
lemma lookup_map_entry [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   129
  "lookup (map_entry k f t) = (lookup t)(k := Option.map f (lookup t k))"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   130
  by transfer (rule rbt_lookup_rbt_map_entry)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   131
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   132
lemma lookup_map [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   133
  "lookup (map f t) k = Option.map (f k) (lookup t k)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   134
  by transfer (rule rbt_lookup_map)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   135
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   136
lemma fold_fold:
46133
d9fe85d3d2cd incorporated canonical fold combinator on lists into body of List theory; refactored passages on List.fold(l/r)
haftmann
parents: 45629
diff changeset
   137
  "fold f t = List.fold (prod_case f) (entries t)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   138
  by transfer (rule RBT_Impl.fold_def)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   139
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
   140
lemma impl_of_empty:
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
   141
  "impl_of empty = RBT_Impl.Empty"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   142
  by transfer (rule refl)
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
   143
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   144
lemma is_empty_empty [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   145
  "is_empty t \<longleftrightarrow> t = empty"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   146
  unfolding is_empty_def by transfer (simp split: rbt.split)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   147
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   148
lemma RBT_lookup_empty [simp]: (*FIXME*)
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
   149
  "rbt_lookup t = Map.empty \<longleftrightarrow> t = RBT_Impl.Empty"
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   150
  by (cases t) (auto simp add: fun_eq_iff)
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   151
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   152
lemma lookup_empty_empty [simp]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   153
  "lookup t = Map.empty \<longleftrightarrow> t = empty"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   154
  by transfer (rule RBT_lookup_empty)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   155
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   156
lemma sorted_keys [iff]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   157
  "sorted (keys t)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   158
  by transfer (simp add: RBT_Impl.keys_def rbt_sorted_entries)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   159
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   160
lemma distinct_keys [iff]:
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   161
  "distinct (keys t)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   162
  by transfer (simp add: RBT_Impl.keys_def distinct_entries)
45629
ef08425dd2d5 improved example to only use quotient_definitions; added lemmas to serve as possible replacement for the existing RBT theory
bulwahn
parents: 45577
diff changeset
   163
48621
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   164
lemma finite_dom_lookup [simp, intro!]: "finite (dom (lookup t))"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   165
  by transfer simp
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   166
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   167
lemma lookup_union: "lookup (union s t) = lookup s ++ lookup t"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   168
  by transfer (simp add: rbt_lookup_rbt_union)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   169
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   170
lemma lookup_in_tree: "(lookup t k = Some v) = ((k, v) \<in> set (entries t))"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   171
  by transfer (simp add: rbt_lookup_in_tree)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   172
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   173
lemma keys_entries: "(k \<in> set (keys t)) = (\<exists>v. (k, v) \<in> set (entries t))"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   174
  by transfer (simp add: keys_entries)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   175
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   176
lemma fold_def_alt:
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   177
  "fold f t = List.fold (prod_case f) (entries t)"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   178
  by transfer (auto simp: RBT_Impl.fold_def)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   179
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   180
lemma distinct_entries: "distinct (List.map fst (entries t))"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   181
  by transfer (simp add: distinct_entries)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   182
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   183
lemma non_empty_keys: "t \<noteq> Lift_RBT.empty \<Longrightarrow> keys t \<noteq> []"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   184
  by transfer (simp add: non_empty_rbt_keys)
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   185
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   186
lemma keys_def_alt:
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   187
  "keys t = List.map fst (entries t)"
877df57629e3 a couple of additions to RBT formalization to allow us to implement RBT_Set
kuncar
parents: 47888
diff changeset
   188
  by transfer (simp add: RBT_Impl.keys_def)
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
   189
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
   190
end