Skip to content

Commit 558e02b

Browse files
committed
Change expshift type from HighsInt to int
1 parent b47fdef commit 558e02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/mip/HighsRedcostFixing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ void HighsRedcostFixing::addRootRedcost(const HighsMipSolver& mipsolver,
213213
}
214214
}
215215
HighsInt maxNumStepsExp = 10;
216-
HighsInt expshift = 0;
216+
int expshift = 0;
217217
std::frexp(numRedcostLargeDomainCols / 10, &expshift);
218218
if (expshift > 5) {
219219
expshift = std::min(expshift, maxNumStepsExp);

0 commit comments

Comments
 (0)