module E:Sig.EDGEwith type vertex = vertex
Edges are Sig.ORDERED_TYPE.
type t
val compare : t -> t -> intEdges are directed.
type vertex
val src : t -> vertexEdge origin.
val dst : t -> vertexEdge destination.
Edges are labeled.
type label
val create : vertex -> label -> vertex -> tcreate v1 l v2 creates an edge from v1 to v2 with label l
val label : t -> labelGet the label of an edge.