module Neato:functor (
X
:
sig
Graph implementation. Sub-signature of
Sig.G
.type
t
module V:sig
..end
module E:sig
..end
val iter_vertex :(V.t -> unit) -> t -> unit
val iter_edges_e :(E.t -> unit) -> t -> unit
Graph, vertex and edge attributes.
val graph_attributes :t -> Graphviz.NeatoAttributes.graph list
val default_vertex_attributes :t -> Graphviz.NeatoAttributes.vertex list
val vertex_name :V.t -> string
val vertex_attributes :V.t -> Graphviz.NeatoAttributes.vertex list
val get_subgraph :V.t -> Graphviz.NeatoAttributes.subgraph option
The box (if exists) which the vertex belongs to. Boxes with same names are not distinguished and so they should have the same attributes.
val default_edge_attributes :t -> Graphviz.NeatoAttributes.edge list
val edge_attributes :E.t -> Graphviz.NeatoAttributes.edge list
end
) ->
sig
..end
Parameters: |
|
val set_command : string -> unit
Several functions provided by this module run the external program
neato. By default, this command is supposed to be in the default
path and is invoked by neato. The function
set_command
allows to set an alternative path at run time.
exception Error of string
val handle_error : ('a -> 'b) -> 'a -> 'b
val fprint_graph : Stdlib.Format.formatter -> X.t -> unit
fprint_graph ppf graph
pretty prints the graph graph
in
the CGL language on the formatter ppf
.
val output_graph : Stdlib.out_channel -> X.t -> unit
output_graph oc graph
pretty prints the graph graph
in the dot
language on the channel oc
.