Vocabularygraphviz.
notationInputsOutputsWord descriptionShorthand for
add-path. Meant to be a Factor replacement for the DOT language's more verbose path notation.
ExamplesInstead of writing
<digraph>
1 2 ->
2 3 ->
3 4 ->
you can write
<digraph>
{ 1 2 3 4 } ~->
whereas in the DOT language you'd write
digraph {
1 -> 2 -> 3 -> 4
}
See alsoadd-edge,
->Definition