Module XDot.Make

Parameters

module G : sig ... end

Signature

module HV : sig ... end
module HE : sig ... end
type graph_layout = {
  1. vertex_layouts : node_layout HV.t;
  2. edge_layouts : edge_layout HE.t;
  3. cluster_layouts : (string, cluster_layout) Hashtbl.t;
  4. bbox : bounding_box;
}
exception DotError of string
val layout_of_xdot : xdot_file:string -> G.t -> graph_layout
val layout_of_dot : ?cmd:string -> dot_file:string -> G.t -> graph_layout