Skip to content

Commit

Permalink
bump compat
Browse files Browse the repository at this point in the history
  • Loading branch information
BatyLeo committed Dec 7, 2024
1 parent e2c83b3 commit dff5a3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CITATION.bib
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ @misc{ConstrainedShortestPaths.jl
author = {Léo Baty and contributors},
title = {ConstrainedShortestPaths.jl},
url = {https://github.com/BatyLeo/ConstrainedShortestPaths.jl},
version = {v0.6.1},
version = {v0.6.2},
year = {2024},
month = {12}
}
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ConstrainedShortestPaths"
uuid = "b3798467-87dc-4d99-943d-35a1bd39e395"
authors = ["Léo Baty and contributors"]
version = "0.6.1"
version = "0.6.2"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand All @@ -15,7 +15,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
DataStructures = "0.18"
DocStringExtensions = "0.9"
Graphs = "1"
PiecewiseLinearFunctions = "0.4.3"
PiecewiseLinearFunctions = "0.4.4"
SparseArrays = "<0.0.1,1"
Statistics = "<0.0.1,1"
julia = "1.10"
Expand Down
2 changes: 1 addition & 1 deletion src/examples/stochastic_routing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ end
function Base.min(
r1::StochasticBackwardResource{true}, r2::StochasticBackwardResource{true}
)
new_g = fast_convex_meet.(r1.g, r2.g)
new_g = convex_meet.(r1.g, r2.g)
# new_g = remove_redundant_breakpoints.(convex_meet.(r1.g, r2.g); atol=1e-8)
return StochasticBackwardResource{true}(new_g)
end
Expand Down

0 comments on commit dff5a3e

Please sign in to comment.