You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In graphviz, the format of the file (whether the first line is digraph or graph) determines whether -> or -- arrows are allowed, and whether dir will default to none or normal.
This is neat but
we normally deal with json, which makes no such distinction
currently we don't have any graph-level attributes in json (although maybe we will someday)
graphlib-dot supplies isDirected but we throw it out since we pretend graphviz is a special case of json (!)
I dunno, maybe this is misguided, but the proposal is that maybe directedness is a property of the layout algorithm, and we could default dir by reading a flag on the algorithm?
Anyway, right now simple-viewer gives inconsistent results depending whether you start in graphviz mode or not, and something should be done!
The text was updated successfully, but these errors were encountered:
In graphviz, the format of the file (whether the first line is
digraph
orgraph
) determines whether->
or--
arrows are allowed, and whether dir will default tonone
ornormal
.This is neat but
isDirected
but we throw it out since we pretend graphviz is a special case of json (!)I dunno, maybe this is misguided, but the proposal is that maybe directedness is a property of the layout algorithm, and we could default
dir
by reading a flag on the algorithm?Anyway, right now simple-viewer gives inconsistent results depending whether you start in graphviz mode or not, and something should be done!
The text was updated successfully, but these errors were encountered: