Skip to content

Commit b41588b

Browse files
committed
Changed >= to > in definition of comparison for Highs::multiobjectiveSolve()
1 parent 19b13ec commit b41588b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

highs/lp_data/HighsInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3952,7 +3952,7 @@ bool Highs::hasRepeatedLinearObjectivePriorities(
39523952

39533953
static bool comparison(std::pair<HighsInt, HighsInt> x1,
39543954
std::pair<HighsInt, HighsInt> x2) {
3955-
return x1.first >= x2.first;
3955+
return x1.first > x2.first;
39563956
}
39573957

39583958
HighsStatus Highs::returnFromLexicographicOptimization(

0 commit comments

Comments
 (0)