Vocabularygraphviz.
notationInputsOutputsWord descriptionShorthand for
add-edge. Makes directed
graphs read more like digraphs in the DOT language.
ExamplesInstead of writing
<digraph>
1 2 add-edge
3 4 add-edge
5 6 add-edge
it looks better to write
<digraph>
1 2 ->
3 4 ->
5 6 ->
Compare this with the DOT language, where you'd write
digraph {
1 -> 2
3 -> 4
5 -> 6
}
See alsoadd-edge,
~->Definition