Changes in stable/2.9/Cbc/src/CbcHeuristic.cpp [2162:2143]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/2.9/Cbc/src/CbcHeuristic.cpp
r2162 r2143 2420 2420 way = -1.0; 2421 2421 improvement = downImprovement; 2422 if (isInteger&¤tValue<lowerValue+0.99)2423 continue; // no good2424 2422 } else if (upImprovement > 0.0 && currentValue < upperValue) { 2425 2423 way = 1.0; 2426 2424 improvement = upImprovement; 2427 if (isInteger&¤tValue>upperValue-0.99)2428 continue; // no good2429 2425 } 2430 2426 if (way) {
Note: See TracChangeset
for help on using the changeset viewer.