Theory Trie_Map

theory Trie_Map
imports RBT_Map Trie_Fun
section "Tries via Search Trees"

theory Trie_Map
imports
  RBT_Map
  Trie_Fun
begin

text ‹An implementation of tries based on maps implemented by red-black trees.
Works for any kind of search tree.›

text ‹Implementation of map:›

type_synonym 'a mapi = "'a rbt"

datatype 'a trie_map = Nd bool "('a * 'a trie_map) mapi"

text ‹In principle one should be able to given an implementation of tries
once and for all for any map implementation and not just for a specific one (RBT) as done here.
But because the map (@{typ "'a rbt"}) is used in a datatype, the HOL type system does not support this.

However, the development below works verbatim for any map implementation, eg ‹Tree_Map›,
and not just ‹RBT_Map›, except for the termination lemma ‹lookup_size›.›

lemma lookup_size[termination_simp]:
  fixes t :: "('a::linorder * 'a trie_map) rbt"
  shows "lookup t a = Some b ⟹ size b < Suc (size_tree (λab. Suc (size (snd ab))) (λx. 0) t)"
apply(induction t a rule: lookup.induct)
apply(auto split: if_splits)
done

fun isin :: "('a::linorder) trie_map ⇒ 'a list ⇒ bool" where
"isin (Nd b m) [] = b" |
"isin (Nd b m) (x # xs) = (case lookup m x of None ⇒ False | Some t ⇒ isin t xs)"

fun insert :: "('a::linorder) list ⇒ 'a trie_map ⇒ 'a trie_map" where
"insert [] (Nd b m) = Nd True m" |
"insert (x#xs) (Nd b m) =
  Nd b (update x (insert xs (case lookup m x of None ⇒ Nd False Leaf | Some t ⇒ t)) m)"

fun delete :: "('a::linorder) list ⇒ 'a trie_map ⇒ 'a trie_map" where
"delete [] (Nd b m) = Nd False m" |
"delete (x#xs) (Nd b m) = Nd b
   (case lookup m x of
      None ⇒ m |
      Some t ⇒ update x (delete xs t) m)"


subsection "Correctness"

text ‹Proof by stepwise refinement. First abstract to type @{typ "'a trie"}.›

fun abs :: "'a::linorder trie_map ⇒ 'a trie" where
"abs (Nd b t) = Trie_Fun.Nd b (λa. map_option abs (lookup t a))"

fun invar :: "('a::linorder)trie_map ⇒ bool" where
"invar (Nd b m) = (M.invar m ∧ (∀a t. lookup m a = Some t ⟶ invar t))"

lemma isin_abs: "isin t xs = Trie_Fun.isin (abs t) xs"
apply(induction t xs rule: isin.induct)
apply(auto split: option.split)
done

lemma abs_insert: "invar t ⟹ abs(insert xs t) = Trie_Fun.insert xs (abs t)"
apply(induction xs t rule: insert.induct)
apply(auto simp: M.map_specs RBT_Set.empty_def[symmetric] split: option.split)
done

lemma abs_delete: "invar t ⟹ abs(delete xs t) = Trie_Fun.delete xs (abs t)"
apply(induction xs t rule: delete.induct)
apply(auto simp: M.map_specs split: option.split)
done

lemma invar_insert: "invar t ⟹ invar (insert xs t)"
apply(induction xs t rule: insert.induct)
apply(auto simp: M.map_specs RBT_Set.empty_def[symmetric] split: option.split)
done

lemma invar_delete: "invar t ⟹ invar (delete xs t)"
apply(induction xs t rule: delete.induct)
apply(auto simp: M.map_specs split: option.split)
done

text ‹Overall correctness w.r.t. the ‹Set› ADT:›

interpretation S2: Set
where empty = "Nd False Leaf" and isin = isin and insert = insert and delete = delete
and set = "set o abs" and invar = invar
proof (standard, goal_cases)
  case 1 show ?case by (simp)
next
  case 2 thus ?case by (simp add: isin_set isin_abs)
next
  case 3 thus ?case by (simp add: set_insert abs_insert)
next
  case 4 thus ?case by (simp add: set_delete abs_delete)
next
  case 5 thus ?case by (simp add: M.map_specs RBT_Set.empty_def[symmetric])
next
  case 6 thus ?case by (simp add: invar_insert)
next
  case 7 thus ?case by (simp add: invar_delete)
qed


end