Shuffle files and functions around for more consistent naming and smaller files
This commit is contained in:
7
src/node/print.jl
Normal file
7
src/node/print.jl
Normal file
@ -0,0 +1,7 @@
|
||||
function show(io::IO, n::Node)
|
||||
print(io, "Node(", n.task, ")")
|
||||
end
|
||||
|
||||
function show(io::IO, e::Edge)
|
||||
print(io, "Edge(", e.edge[1], ", ", e.edge[2], ")")
|
||||
end
|
Reference in New Issue
Block a user