Module type Graph.T

module type T = sig .. end

A graph.


module V: Alphabet.T 

Vertices.

module E: Alphabet.T 

Edges.

val src : E.t -> V.t

Source.

val tgt : E.t -> V.t

Target.