We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e117b38 commit 53eca77Copy full SHA for 53eca77
src/StochasticVehicleScheduling/solution/exact_algorithms/column_generation.jl
@@ -88,7 +88,7 @@ function column_generation(
88
)
89
end
90
91
- c_low = objective_value(model)
+ c_low = Float64(objective_value(model))
92
columns = unique(cat(initial_paths, new_paths; dims=1))
93
return columns, c_low, value.(λ)
94
test/vsp.jl
@@ -2,6 +2,7 @@
2
using DecisionFocusedLearningBenchmarks
3
using DecisionFocusedLearningBenchmarks.StochasticVehicleScheduling
4
using Graphs
5
+ using Plots
6
7
b = StochasticVehicleSchedulingBenchmark(; nb_tasks=25, nb_scenarios=10)
8
0 commit comments