Skip to content

Commit 357f31c

Browse files
committed
fix
1 parent 07d00ab commit 357f31c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/StochasticVehicleScheduling/solution/exact_algorithms/column_generation.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ function column_generation(
9393
c_upp, y, _ = compute_solution_from_selected_columns(instance, paths)
9494

9595
# If relaxation requested or solution is optimal, return
96-
if c_upp c_low || only_relaxation
97-
return value.(λ),
98-
objective_value(model), cat(initial_paths, new_paths; dims=1), dual.(con),
99-
dual.(cons)
100-
end
96+
# if c_upp ≈ c_low || only_relaxation
97+
# return value.(λ),
98+
# objective_value(model), cat(initial_paths, new_paths; dims=1), dual.(con),
99+
# dual.(cons)
100+
# end
101101

102102
# @info "hello"
103103
# # else, try to close the gap

0 commit comments

Comments
 (0)