Skip to content

Commit dff5a3e

Browse files
committed
bump compat
1 parent e2c83b3 commit dff5a3e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CITATION.bib

+1-1
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.1},
5+
version = {v0.6.2},
66
year = {2024},
77
month = {12}
88
}

Project.toml

+2-2
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.1"
4+
version = "0.6.2"
55

66
[deps]
77
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
@@ -15,7 +15,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1515
DataStructures = "0.18"
1616
DocStringExtensions = "0.9"
1717
Graphs = "1"
18-
PiecewiseLinearFunctions = "0.4.3"
18+
PiecewiseLinearFunctions = "0.4.4"
1919
SparseArrays = "<0.0.1,1"
2020
Statistics = "<0.0.1,1"
2121
julia = "1.10"

src/examples/stochastic_routing.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ end
7373
function Base.min(
7474
r1::StochasticBackwardResource{true}, r2::StochasticBackwardResource{true}
7575
)
76-
new_g = fast_convex_meet.(r1.g, r2.g)
76+
new_g = convex_meet.(r1.g, r2.g)
7777
# new_g = remove_redundant_breakpoints.(convex_meet.(r1.g, r2.g); atol=1e-8)
7878
return StochasticBackwardResource{true}(new_g)
7979
end

0 commit comments

Comments
 (0)