Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyT1994 committed Nov 1, 2023
1 parent 888e80b commit a6ed4f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/traversals/trees_and_forests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ default_spanning_tree_alg() = BFS()

default_root_vertex(g) = last(findmax(eccentricities(g)))

function spanning_tree(g::AbstractNamedGraph; alg=default_spanning_tree_alg(), root_vertex=default_root_vertex(g))
function spanning_tree(
g::AbstractNamedGraph; alg=default_spanning_tree_alg(), root_vertex=default_root_vertex(g)
)
return spanning_tree(alg, g; root_vertex)
end

Expand Down

0 comments on commit a6ed4f7

Please sign in to comment.