Module Graph.Gmap

module type V_SRC = sig ... end
module type V_DST = sig ... end
module Vertex : functor (G_Src : V_SRC) -> functor (G_Dst : V_DST) -> sig ... end
module type E_SRC = sig ... end
module type E_DST = sig ... end
module Edge : functor (G_Src : E_SRC) -> functor (G_Dst : E_DST) -> sig ... end