Skip to content

Commit 2dac438

Browse files
authored
Update src/shortestpaths/bellman-ford.jl
1 parent 12cd075 commit 2dac438

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/shortestpaths/bellman-ford.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ function enumerate_paths(state::AbstractPathState, vs::AbstractVector{<:Integer}
120120
all_paths = Vector{T}[Vector{eltype(state.parents)}() for _ in 1:length(vs)]
121121
enumerate_paths!(all_paths, state, vs)
122122
end
123-
124123
enumerate_paths(state::AbstractPathState, v::Integer) = enumerate_paths(state, v:v)[1]
125124
function enumerate_paths(state::AbstractPathState)
126125
return enumerate_paths(state, 1:length(state.parents))

0 commit comments

Comments
 (0)