Module Graph__DGraphSubTree
module type G = sig ... endmodule type Tree = sig ... endmodule type S = sig ... endmodule Make : functor (G : G) -> functor (Tree : Tree with type V.label = G.V.t and type E.label = unit) -> sig ... endmodule Make_from_dot_model : functor (Tree : Tree with type V.label = Graph.DGraphModel.DotG.V.t and type E.label = unit) -> sig ... end