Module Graph.E

Edges

type t
val compare : t -> t -> int
val src : t -> V.t
val dst : t -> V.t
type label = int
val create : V.t -> label -> V.t -> t

create v1 l v2 creates an edge from v1 to v2 with label l

val label : t -> label
type vertex = V.t