Module type Sig.Table

module type Table = sig .. end
Tables for associating information to vertices. (When using bigarrays, we need different modules for different value types.)

type t 
type key 
type value 
val create : int -> t
val set : t -> key -> value -> unit
val get : t -> key -> value