Skip to content

Commit d324f1f

Browse files
committed
Cleanup and bump version
1 parent d72dc78 commit d324f1f

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

CITATION.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ @misc{ConstrainedShortestPaths.jl
22
author = {Léo Baty and contributors},
33
title = {ConstrainedShortestPaths.jl},
44
url = {https://github.com/BatyLeo/ConstrainedShortestPaths.jl},
5-
version = {v0.6.2},
5+
version = {v0.6.3},
66
year = {2024},
77
month = {12}
88
}

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ConstrainedShortestPaths"
22
uuid = "b3798467-87dc-4d99-943d-35a1bd39e395"
33
authors = ["Léo Baty and contributors"]
4-
version = "0.6.2"
4+
version = "0.6.3"
55

66
[deps]
77
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"

src/algorithms.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ function compute_bounds(instance::CSPInstance{T,G,FR,BR}; kwargs...) where {T,G,
1010
@assert vertices_order[1] == destination_vertex
1111

1212
bounds = Dict{Int,BR}()
13-
# bounds = Vector{typeof(instance.destination_backward_resource)}(undef, nv(graph))
1413
bounds[destination_vertex] = instance.destination_backward_resource
1514

1615
for vertex in vertices_order[2:end]

src/utils/utils.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ end
1010
# Remove all elements in Mw that are dominated by rq
1111
function remove_dominated!(Mw::AbstractVector{R}, rq::R) where {R}
1212
filter!(r -> !(rq <= r), Mw)
13-
# to_delete = Int[]
14-
# for (i, r) in enumerate(Mw)
15-
# if rq <= r
16-
# push!(to_delete, i)
17-
# end
18-
# end
19-
# deleteat!(Mw, to_delete)
2013
return nothing
2114
end
2215

0 commit comments

Comments
 (0)