module type G =sig..end
type t
module V:Sig.COMPARABLE
val pred : t -> V.t -> V.t listval succ : t -> V.t -> V.t listval fold_vertex : (V.t -> 'a -> 'a) -> t -> 'a -> 'aval iter_vertex : (V.t -> unit) -> t -> unitval nb_vertex : t -> intval create : ?size:int -> unit -> tval add_edge : t -> V.t -> V.t -> unit