@@ -372,7 +372,8 @@ void HighsMipSolverData::finishAnalyticCenterComputation(
372372 }
373373 if (nfixed > 0 )
374374 highsLogDev (mipsolver.options_mip_ ->log_options , HighsLogType::kInfo ,
375- " Fixing %d columns (%d integers) sitting at bound at analytic center\n " ,
375+ " Fixing %d columns (%d integers) sitting at bound at "
376+ " analytic center\n " ,
376377 int (nfixed), int (nintfixed));
377378 mipsolver.mipdata_ ->domain .propagate ();
378379 if (mipsolver.mipdata_ ->domain .infeasible ()) return ;
@@ -404,29 +405,28 @@ void HighsMipSolverData::finishSymmetryDetection(
404405 taskGroup.sync ();
405406
406407 symmetries = std::move (symData->symmetries );
407- std::string symmetry_time = mipsolver.options_mip_ ->timeless_log ? " " :
408- highsFormatToString (" %.1fs" , symData->detectionTime );
408+ std::string symmetry_time =
409+ mipsolver.options_mip_ ->timeless_log
410+ ? " "
411+ : highsFormatToString (" %.1fs" , symData->detectionTime );
409412 highsLogUser (mipsolver.options_mip_ ->log_options , HighsLogType::kInfo ,
410- " \n Symmetry detection completed in%s\n " ,
411- symmetry_time.c_str ());
413+ " \n Symmetry detection completed in%s\n " , symmetry_time.c_str ());
412414
413415 if (symmetries.numGenerators == 0 ) {
414416 detectSymmetries = false ;
415417 highsLogUser (mipsolver.options_mip_ ->log_options , HighsLogType::kInfo ,
416418 " No symmetry present\n\n " );
417419 } else if (symmetries.orbitopes .size () == 0 ) {
418420 highsLogUser (mipsolver.options_mip_ ->log_options , HighsLogType::kInfo ,
419- " Found %d generator(s)\n\n " ,
420- int (symmetries.numGenerators ));
421+ " Found %d generator(s)\n\n " , int (symmetries.numGenerators ));
421422
422423 } else {
423424 if (symmetries.numPerms != 0 ) {
424- highsLogUser (
425- mipsolver.options_mip_ ->log_options , HighsLogType::kInfo ,
426- " Found %d generator(s) and %d full orbitope(s) acting on %d columns\n\n " ,
427- int (symmetries.numPerms ),
428- int (symmetries.orbitopes .size ()),
429- int (symmetries.columnToOrbitope .size ()));
425+ highsLogUser (mipsolver.options_mip_ ->log_options , HighsLogType::kInfo ,
426+ " Found %d generator(s) and %d full orbitope(s) acting on %d "
427+ " columns\n\n " ,
428+ int (symmetries.numPerms ), int (symmetries.orbitopes .size ()),
429+ int (symmetries.columnToOrbitope .size ()));
430430 } else {
431431 highsLogUser (mipsolver.options_mip_ ->log_options , HighsLogType::kInfo ,
432432 " Found %d full orbitope(s) acting on %d columns\n\n " ,
0 commit comments