Skip to content

Commit 82ee7f5

Browse files
committed
Add comment on when ninfmin > 0
1 parent be510a1 commit 82ee7f5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

highs/mip/HighsDomain.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3215,6 +3215,8 @@ bool HighsDomain::ConflictSet::explainInfeasibility() {
32153215
HighsInt ninfmin;
32163216
HighsCDouble minAct;
32173217
globaldom.computeMinActivity(0, len, inds, vals, ninfmin, minAct);
3218+
// This case should only happen when a globally unbounded column is bounded
3219+
// in the local domain, e.g., by a branching choice in some heuristic.
32183220
if (ninfmin > 0) return false;
32193221

32203222
return explainInfeasibilityLeq(inds, vals, len, rhs, double(minAct));

0 commit comments

Comments
 (0)