Skip to content
Snippets Groups Projects
Verified Commit 59df068b authored by Lucas Ondel Yang's avatar Lucas Ondel Yang
Browse files

changed graphviz display

parent 29fc89c6
No related branches found
No related tags found
No related merge requests found
......@@ -162,7 +162,11 @@ function dot_write_nodes(io::IO, T, ω, ρ, λ)
for i in 1:size(T, 1)
if ! iszero(ω[i])
print(io, "$(i) [label=\"$i/", ω[i], "\", shape=\"doublecircle\"];")
if isone(ω[i])
print(io, "$(i) [label=\"$i\", shape=\"doublecircle\"];")
else
print(io, "$(i) [label=\"$i/", ω[i], "\", shape=\"doublecircle\"];")
end
end
end
end
......@@ -187,7 +191,10 @@ function dot_write_edges(io, T, ρ, λ)
end
function dot_write_edge(io, src, dst, label, weight)
val = typeof(weight) <: AbstractFloat ? round(weight, digits=3) : weight
print(io, "$src -> $dst [label=\"", label, "/", weight, "\"];")
if isone(weight)
print(io, "$src -> $dst [label=\"", label, "\"];")
else
print(io, "$src -> $dst [label=\"", label, "/", weight, "\"];")
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment