Skip to content

Commit

Permalink
return proper lower bound in MibS
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr committed Oct 21, 2024
1 parent f29dad1 commit 3a25419
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ void idol::Optimizers::Bilevel::MibS::hook_optimize() {
m_use_cplex_for_feasibility,
get_param_logs());
}

m_mibs->solve();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ idol::SolutionReason idol::impl::MibSFromFile::get_reason() const {
}

double idol::impl::MibSFromFile::get_best_bound() const {
return m_broker->getBestEstimateQuality();
return m_broker->getBestNode()->getQuality();
}

void idol::impl::MibSFromFile::make_variable_index_in_mps() {
Expand Down

0 comments on commit 3a25419

Please sign in to comment.