File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4587,7 +4587,7 @@ HPresolve::Result HPresolve::removeDependentEquations(
45874587 highsLogUser (options->log_options , HighsLogType::kInfo ,
45884588 " Dependent equations search running on %d equations with time "
45894589 " limit of %.2fs\n " ,
4590- int (matrix.num_col_ ), time_limit);
4590+ static_cast < int > (matrix.num_col_ ), time_limit);
45914591 double time_taken = -this ->timer ->read ();
45924592 HighsInt build_return = factor.build ();
45934593 time_taken += this ->timer ->read ();
@@ -4633,8 +4633,8 @@ HPresolve::Result HPresolve::removeDependentEquations(
46334633 highsLogUser (options->log_options , HighsLogType::kInfo ,
46344634 " Dependent equations search removed %d rows and %d nonzeros "
46354635 " in %.2fs (limit = %.2fs)\n " ,
4636- int (num_removed_row), int (num_removed_nz), time_taken ,
4637- time_limit);
4636+ static_cast < int > (num_removed_row),
4637+ static_cast < int >(num_removed_nz), time_taken, time_limit);
46384638
46394639 if (num_fictitious_rows_skipped)
46404640 highsLogDev (options->log_options , HighsLogType::kInfo ,
You can’t perform that action at this time.
0 commit comments