src/HOL/Quotient_Examples/Lift_RBT.thy
author Andreas Lochbihler
Thu, 31 May 2012 16:58:38 +0200
changeset 48051 53a0df441e20
parent 47888 45bf22d8a81d
child 48621 877df57629e3
permissions -rw-r--r--
unify Card_Univ and Cardinality
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
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
    72
export_code lookup empty insert delete entries keys bulkload map_entry map fold 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
    73
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
    74
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
    75
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
    76
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
    77
  [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
    78
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 {* 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
    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
lemma lookup_RBT:
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    83
  "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
    84
  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
    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
lemma lookup_impl_of:
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
    87
  "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
    88
  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
    89
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
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
    91
  "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
    92
  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
    93
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
    94
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
    95
  "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
    96
  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
    97
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
    98
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
    99
  "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
   100
  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
   101
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
   102
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
   103
  "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
   104
  by transfer (rule rbt_lookup_rbt_insert)
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
   105
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
   106
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
   107
  "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
   108
  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
   109
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
   110
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
   111
  "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
   112
  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
   113
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
   114
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
   115
  "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
   116
  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
   117
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
   118
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
   119
  "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
   120
  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
   121
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
   122
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
   123
  "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
   124
  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
   125
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
   126
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
   127
  "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
   128
  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
   129
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
   130
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
   131
  "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
   132
  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
   133
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
   134
lemma impl_of_empty:
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
   135
  "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
   136
  by transfer (rule refl)
47097
987cb55cac44 fix example files
kuncar
parents: 47093
diff changeset
   137
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
   138
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
   139
  "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
   140
  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
   141
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
   142
lemma RBT_lookup_empty [simp]: (*FIXME*)
47451
ab606e685d52 adapt to changes in RBT_Impl
Andreas Lochbihler
parents: 47308
diff changeset
   143
  "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
   144
  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
   145
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
   146
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
   147
  "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
   148
  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
   149
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
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
   151
  "sorted (keys t)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   152
  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
   153
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
   154
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
   155
  "distinct (keys t)"
47888
45bf22d8a81d using the new transfer method to obtain abstract properties of RBT trees
bulwahn
parents: 47451
diff changeset
   156
  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
   157
45577
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
   158
33b964e117bd adding another example for lifting definitions
bulwahn
parents:
diff changeset
   159
end