Skip to content

Commit a9b69a5

Browse files
authored
Merge pull request ERGO-Code#2327 from ERGO-Code/fix-2320
Fix ERGO-Code#2320
2 parents f74f972 + ed4fd9f commit a9b69a5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

highs/mip/HighsCliqueTable.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,6 +1105,10 @@ void HighsCliqueTable::extractCliquesFromCut(const HighsMipSolver& mipsolver,
11051105
}
11061106
}
11071107

1108+
if (rhs - minact < 0.0) {
1109+
minact = rhs;
1110+
}
1111+
11081112
for (HighsInt i = 0; i != len; ++i) {
11091113
if (mipsolver.variableType(inds[i]) == HighsVarType::kContinuous) continue;
11101114

0 commit comments

Comments
 (0)