Skip to content

Commit 385bd33

Browse files
committed
Hopefully removed merge conflicts
1 parent e31f37e commit 385bd33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/presolve/HPresolve.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)