Module Sig.GraphAlgo.I

module I: Sig.Table  with type key = vertex and type value = int
Tables of ints (to store a numbering of vertices for example).

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