Module Dot.Make
Parameters
Signature
val place : ?orient:[ `TB | `LR | `BT | `RL ] -> node list -> edge list -> B.t list * Mlpost.Path.t list
place ~orient nodes edges
returns a concrete representation of the abstract directed graph composed bynodes
linked byedges
. The concrete representation is composed by the list of all the boxlikes ofnodes
placed by dot and by the list of paths representing theedges
drawn by dot- parameter orient
specifies the orientation of the graph :
- `TB top to bottom (default)
- `LR left to right
- `BT bottom to top
- `RL right to left