Skip to content

Commit

Permalink
Added statement of returned_model_status
Browse files Browse the repository at this point in the history
  • Loading branch information
jajhall committed Jan 16, 2025
1 parent 2f596eb commit 0038fc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/mip/HighsMipSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ void HighsMipSolver::run() {
const bool bailout_after_feasibility_jump = false;
if (bailout_after_feasibility_jump) {
highsLogUser(options_mip_->log_options, HighsLogType::kInfo,
"HighsMipSolver: Bailing out after Feasibility Jump\n");
"HighsMipSolver: Bailing out after Feasibility Jump with "
"model status = %s\n",
utilModelStatusToString(returned_model_status).c_str());
modelstatus_ = returned_model_status;
cleanupSolve();
return;
Expand Down

0 comments on commit 0038fc5

Please sign in to comment.