VocabularygraphvizInputsNoneOutputsWord descriptionConstructs an empty, non-strict, undirected graph.NotesBecause it's rare for graph id s to be meaningful or useful, <graph> 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, <graph> "G" >>id
ExamplesUSING: graphviz prettyprint ;
<graph> graph? .
t
USING: accessors graphviz prettyprint sequences ;
<graph> statements>> empty? .
t
USING: accessors graphviz prettyprint ;
<graph> strict?>> .
f
USING: accessors graphviz prettyprint ;
<graph> directed?>> .
f
See alsograph, <digraph>, <strict-graph>, <strict-digraph>Definition