We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da71640 commit 1165562Copy full SHA for 1165562
src/DOT/Dot.jl
@@ -19,7 +19,7 @@ function savedot(io::IO, g::LightGraphs.AbstractGraph, gname::String = "")
19
if isdir
20
for u in LightGraphs.vertices(g)
21
out_nbrs = LightGraphs.outneighbors(g, u)
22
- length(out_nbrs) == 0 && continue
+ length(out_nbrs) == 0 && continue
23
println(io, "\t" * string(u) * " -> {" * join(out_nbrs,',') * "}")
24
end
25
else
0 commit comments