module Dot:functor (X:sigtypetmodule V:sig..endmodule E:sig..endval iter_vertex :(V.t -> unit) -> t -> unitval iter_edges_e :(E.t -> unit) -> t -> unitval graph_attributes :t -> Graphviz.DotAttributes.graph listval default_vertex_attributes :t -> Graphviz.DotAttributes.vertex listval vertex_name :V.t -> stringval vertex_attributes :V.t -> Graphviz.DotAttributes.vertex listval default_edge_attributes :t -> Graphviz.DotAttributes.edge listval edge_attributes :E.t -> Graphviz.DotAttributes.edge listval get_subgraph :V.t -> Graphviz.DotAttributes.subgraph optionend) ->sig..end
| Parameters: |
|
val fprint_graph : Format.formatter -> X.t -> unitfprint_graph ppf graph pretty prints the graph graph in
the CGL language on the formatter ppf.val output_graph : Pervasives.out_channel -> X.t -> unitoutput_graph oc graph pretty prints the graph graph in the dot
language on the channel oc.