There was an error while loading. Please reload this page.
1 parent d2aa743 commit 65a3d5eCopy full SHA for 65a3d5e
examples/finished/nodesel_hybridestim.py
@@ -101,7 +101,7 @@ def nodeselect(self):
101
lowerbound = self.scip.getLowerbound()
102
cutoffbound = self.scip.getCutoffbound()
103
104
- # If we didn't find a solution yet, use only 20% of the gap as cutoff bound
+ # If we didn't find a solution yet, tighten the cutoff bound to 20% of the range between it and the lowerbound.
105
if self.scip.getNSols() == 0:
106
cutoffbound = lowerbound + 0.2 * (cutoffbound - lowerbound)
107
0 commit comments