module Make:
Instantiates a module which creates graph layouts from xdot files
| Parameters: |
|
module HV:Hashtbl.Swith type key = G.V.t
module HE:Map.Swith type key = G.E.t
type graph_layout = {
|
vertex_layouts : |
|
edge_layouts : |
|
cluster_layouts : |
|
bbox : |
Main layout type
exception DotError of string
val layout_of_xdot : xdot_file:string -> G.t -> graph_layoutExtracts a layout of an xdot file
val layout_of_dot : ?cmd:string -> dot_file:string -> G.t -> graph_layoutUsing the dot file and graphviz, create an xdot and extracts its layout.