Skip to content

Commit

Permalink
add tolerance for cut separation
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr committed Sep 25, 2023
1 parent 9594f27 commit 896e1e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void idol::impl::CutSeparation::operator()(CallbackEvent t_event) {

m_separation_problem->set_solution_index(k);

if (k == 0 && m_separation_problem->get_best_obj() >= 0) {
if (k == 0 && m_separation_problem->get_best_obj() >= 1e-3) {
break;
}

Expand Down

0 comments on commit 896e1e1

Please sign in to comment.