Add formatter
Some checks failed
Test / test (push) Has been cancelled

This commit is contained in:
2023-08-25 10:48:22 +02:00
parent dbcd569967
commit ae1345d547
44 changed files with 1191 additions and 865 deletions

View File

@ -1,7 +1,7 @@
function show(io::IO, n::Node)
print(io, "Node(", n.task, ")")
return print(io, "Node(", n.task, ")")
end
function show(io::IO, e::Edge)
print(io, "Edge(", e.edge[1], ", ", e.edge[2], ")")
return print(io, "Edge(", e.edge[1], ", ", e.edge[2], ")")
end