B0_dotDot graph generation.
Note. No support for ports. Should be too hard to add though.
References
val empty : 'a seqAn empty sequence.
edge ~atts id id' is an edge from id to id' with attribute atts if specified.
nod ~atts id is a node with id id and attributes atts if specified.
atts kind atts are attributes atts for kind.
subgraph ~id sts is subgraph id (default unlabelled) with statements sts.
graph ~id ~strict g sts is according to g a graph or digraph id (default unlabelled) with statements sts. If strict is true (defaults to false) multi-edges are not created.
val buffer_add : Stdlib.Buffer.t -> t -> unitbuffer_add b g adds the dot graph g to b.
val to_string : t -> stringto_string g is the dot graph g as a string.
val output : Stdlib.Out_channel.t -> t -> unitoutput oc g outputs the dot graph g on b.