Skip to content

Commit

Permalink
remove postponing of nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
hlefebvr committed Oct 26, 2023
1 parent 8d01843 commit 8d4aa7b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -544,13 +544,15 @@ void idol::Optimizers::BranchAndBound<NodeVarInfoT>::analyze(const BranchAndBoun

if (status == Fail) {

/*
if (m_n_postponed_nodes < m_max_postponed_nodes) {
*t_explore_children_flag = true;
std::cout << "Postponing Node " << t_node.id() << " since returned status is " << status << "." << std::endl;
idol_Log(Trace, "Postponing Node " << t_node.id() << " since returned status is " << status << ".");
++m_n_postponed_nodes;
return;
}
*/

set_status(Fail);
set_reason(NotSpecified);
Expand Down

0 comments on commit 8d4aa7b

Please sign in to comment.