VocabularygraphvizInputsNone
OutputsWord descriptionConstructs an empty, strict, directed
graph.
NotesBecause it's rare for
graph ids to be meaningful or useful,
<strict-digraph> automatically generates one, just as in
<anon>.
If you want, you can still give the resulting
graph a specific
id using standard words like
>>id. For example,
<strict-digraph> "G" >>id
In
strict graphs, there is at most one
edge between any two
nodes, so duplicates are ignored by Graphviz.
ExamplesUSING: graphviz prettyprint ;
<strict-digraph> graph? .
t
USING: accessors graphviz prettyprint sequences ;
<strict-digraph> statements>> empty? .
t
USING: accessors graphviz prettyprint ;
<strict-digraph> strict?>> .
t
USING: accessors graphviz prettyprint ;
<strict-digraph> directed?>> .
t
See alsograph,
<graph>,
<digraph>,
<strict-graph>Definition