@@ -75,11 +75,6 @@ HighsMipSolver::~HighsMipSolver() = default;
7575void HighsMipSolver::run () {
7676 modelstatus_ = HighsModelStatus::kNotset ;
7777
78- if (!submip)
79- highsLogUser (options_mip_->log_options , HighsLogType::kInfo ,
80- " instance%d: top run() %6.4f (MIP)\n " ,
81- int (this ->mip_race_ .my_instance ), this ->timer_ .read ());
82-
8378 if (submip) {
8479 analysis_.analyse_mip_time = false ;
8580 } else {
@@ -699,13 +694,8 @@ void HighsMipSolver::run() {
699694
700695void HighsMipSolver::cleanupSolve () {
701696 if (mipdata_->terminatorActive ()) {
702- mipdata_->terminatorReport ();
703697 if (mipdata_->terminatorTerminated ()) {
704698 // Indicate that this instance has been interrupted
705- highsLogUser (options_mip_->log_options , HighsLogType::kInfo ,
706- " instance%d: terminated %6.4f (%sMIP)\n " ,
707- int (this ->mipdata_ ->terminatorMyInstance ()),
708- this ->timer_ .read (), submip ? " sub-" : " " );
709699 modelstatus_ = HighsModelStatus::kHighsInterrupt ;
710700 } else if (!submip) {
711701 // When sub-MIPs call cleanupSolve(), they generally don't have
@@ -715,15 +705,8 @@ void HighsMipSolver::cleanupSolve() {
715705 // reached
716706 //
717707 // No other instance has terminated, so terminate
718- highsLogUser (options_mip_->log_options , HighsLogType::kInfo ,
719- " instance%d: terminate %6.4f (%sMIP)\n " ,
720- int (this ->mipdata_ ->terminatorMyInstance ()),
721- this ->timer_ .read (), submip ? " sub-" : " " );
722708 mipdata_->terminatorTerminate ();
723709 }
724- mipdata_->terminatorReport ();
725- // Report on any active MIP race
726- mipdata_->mipRaceReport ();
727710 }
728711
729712 // Force a final logging line
0 commit comments