Skip to content

Commit

Permalink
I don't know why yet, but generating ISICs when only the lower-level …
Browse files Browse the repository at this point in the history
…solution is integral seems not to work properly.
  • Loading branch information
tkralphs committed Nov 26, 2023
1 parent 6ae82f3 commit ad5e3a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/MibSCutGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6036,7 +6036,8 @@ MibSCutGenerator::generateConstraints(BcpsConstraintPool &conPool)
//and should always be false (see BlisTreeNode.cpp)
return (false);

}else if (bS->isLowerIntegral_ || useFractionalCuts ||
}else if (//bS->isLowerIntegral_ ||
useFractionalCuts ||
(useFractionalCutsRootOnly && localModel_->activeNode_->getDepth() == 0)){

if (useImprovingDirectionIC == PARAM_ON){
Expand Down

0 comments on commit ad5e3a1

Please sign in to comment.