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 69c1a12 commit 7f2399cCopy full SHA for 7f2399c
src/CoinDynamicConflictGraph.cpp
@@ -164,7 +164,7 @@ CoinDynamicConflictGraph::CoinDynamicConflictGraph (
164
for (size_t j = start[idxRow]; j < (size_t)start[idxRow] + length[idxRow]; j++) {
165
const size_t idxCol = idxs[j];
166
const double coefCol = coefs[j] * mult;
167
- const bool isBinary = ((colType[idxCol] != 0) && (colLB[idxCol] == 1.0 || colLB[idxCol] == 0.0)
+ const bool isBinary = ((colType[idxCol] != 0) && (colLB[idxCol] == 0.0)
168
&& (colUB[idxCol] == 0.0 || colUB[idxCol] == 1.0));
169
170
if (!isBinary) {
0 commit comments