@@ -2922,22 +2922,22 @@ void MipRaceRecord::report(const HighsLogOptions log_options) const {
29222922 HighsInt mip_race_concurrency = this ->concurrency ();
29232923 highsLogUser (log_options, HighsLogType::kInfo , " \n MipRaceRecord: " );
29242924 for (HighsInt instance = 0 ; instance < mip_race_concurrency; instance++)
2925- highsLogUser (log_options, HighsLogType::kInfo , " %16d " , int (instance));
2925+ highsLogUser (log_options, HighsLogType::kInfo , " %20d " , int (instance));
29262926 highsLogUser (log_options, HighsLogType::kInfo , " \n Terminated: " );
29272927 for (HighsInt instance = 0 ; instance < mip_race_concurrency; instance++)
2928- highsLogUser (log_options, HighsLogType::kInfo , " %16s " ,
2928+ highsLogUser (log_options, HighsLogType::kInfo , " %20s " ,
29292929 this ->terminated [instance] ? " T" : " F" );
29302930 highsLogUser (log_options, HighsLogType::kInfo , " \n StartWrite: " );
29312931 for (HighsInt instance = 0 ; instance < mip_race_concurrency; instance++)
2932- highsLogUser (log_options, HighsLogType::kInfo , " %16d " ,
2932+ highsLogUser (log_options, HighsLogType::kInfo , " %20d " ,
29332933 this ->incumbent [instance].start_write_incumbent );
29342934 highsLogUser (log_options, HighsLogType::kInfo , " \n Objective: " );
29352935 for (HighsInt instance = 0 ; instance < mip_race_concurrency; instance++)
2936- highsLogUser (log_options, HighsLogType::kInfo , " %16.8g " ,
2936+ highsLogUser (log_options, HighsLogType::kInfo , " %20.12g " ,
29372937 this ->incumbent [instance].objective );
29382938 highsLogUser (log_options, HighsLogType::kInfo , " \n FinishWrite: " );
29392939 for (HighsInt instance = 0 ; instance < mip_race_concurrency; instance++)
2940- highsLogUser (log_options, HighsLogType::kInfo , " %16d " ,
2940+ highsLogUser (log_options, HighsLogType::kInfo , " %20d " ,
29412941 this ->incumbent [instance].finish_write_incumbent );
29422942 highsLogUser (log_options, HighsLogType::kInfo , " \n " );
29432943}
@@ -2994,7 +2994,7 @@ void MipRace::report() const {
29942994 this ->record ->report (this ->log_options );
29952995 highsLogUser (this ->log_options , HighsLogType::kInfo , " LastIncumbentRead: " );
29962996 for (HighsInt instance = 0 ; instance < this ->concurrency (); instance++)
2997- highsLogUser (this ->log_options , HighsLogType::kInfo , " %16d " ,
2997+ highsLogUser (this ->log_options , HighsLogType::kInfo , " %20d " ,
29982998 this ->last_incumbent_read [instance]);
29992999 highsLogUser (this ->log_options , HighsLogType::kInfo , " \n\n " );
30003000}
0 commit comments