Skip to content

Commit f9441d1

Browse files
committed
Fix typo
1 parent 0672e05 commit f9441d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/mip/HighsImplications.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ void HighsImplications::cleanupVarbounds(HighsInt col) {
718718
HighsInt numVubs = 0;
719719
vubs[col].for_each([&](HighsInt vubCol, VarBound& vub) { numVubs++; });
720720
HighsInt numVlbs = 0;
721-
vlbs[col].for_each([&](HighsInt vlbCol, VarBound& vub) { numVlbs++; });
721+
vlbs[col].for_each([&](HighsInt vlbCol, VarBound& vlb) { numVlbs++; });
722722
numVarBounds -= numVubs + numVlbs;
723723
vlbs[col].clear();
724724
vubs[col].clear();

0 commit comments

Comments
 (0)