Skip to content

Commit

Permalink
Reverted to sensible kMaxTotalEffort and kMaxEffortSinceLastImproveme…
Browse files Browse the repository at this point in the history
…nt for ctest
  • Loading branch information
jajhall committed Dec 12, 2024
1 parent 7ec2874 commit c9888c9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/mip/HighsFeasibilityJump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ HighsModelStatus HighsMipSolverData::feasibilityJump() {
"with a 64-bit HighsInt: skipping Feasibility Jump\n");
return HighsModelStatus::kNotset;
#else
const size_t kMaxTotalEffort = std::pow(2, 30); // Originally 1e6
const size_t kMaxTotalEffort =
std::pow(2, 20); // 30 for larger probs; Originally 1e6
const size_t kMaxEffortSinceLastImprovement =
std::pow(2, 25); // Originally 1e3
std::pow(2, 15); // 25 for larger probs; Originally 1e3

bool found_integer_feasible_solution = false;
std::vector<double> col_value(model->num_col_, 0.0);
Expand Down

0 comments on commit c9888c9

Please sign in to comment.