We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0672e05 commit f9441d1Copy full SHA for f9441d1
highs/mip/HighsImplications.cpp
@@ -718,7 +718,7 @@ void HighsImplications::cleanupVarbounds(HighsInt col) {
718
HighsInt numVubs = 0;
719
vubs[col].for_each([&](HighsInt vubCol, VarBound& vub) { numVubs++; });
720
HighsInt numVlbs = 0;
721
- vlbs[col].for_each([&](HighsInt vlbCol, VarBound& vub) { numVlbs++; });
+ vlbs[col].for_each([&](HighsInt vlbCol, VarBound& vlb) { numVlbs++; });
722
numVarBounds -= numVubs + numVlbs;
723
vlbs[col].clear();
724
vubs[col].clear();
0 commit comments