module type G =Minimal graph signature for Dijkstra's algorithm. Sub-signature ofsig..end
Sig.G.type t
module V:Sig.COMPARABLE
module E:sig..end
val iter_vertex : (V.t -> unit) -> t -> unitval iter_succ : (V.t -> unit) -> t -> V.t -> unitval iter_succ_e : (E.t -> unit) -> t -> V.t -> unitval fold_edges_e : (E.t -> 'a -> 'a) -> t -> 'a -> 'aval nb_vertex : t -> int