Changeset 2146 for trunk/Cbc/src/CbcModel.cpp
- Timestamp:
- Feb 27, 2015 11:24:47 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cbc/src/CbcModel.cpp
r2133 r2146 12399 12399 // We can switch off check 12400 12400 if ((specialOptions_&4) == 0 && (moreSpecialOptions2_&10) != 8) { 12401 if ((specialOptions_&2) == 0 && solverCharacteristics_->warmStart()) { 12401 // Be on safe side - unless very few integers and large 12402 bool allSlack = (specialOptions_&2) == 0 && solverCharacteristics_->warmStart(); 12403 if (numberIntegers_*4>solver_->getNumCols()||solver_->getNumCols()<10000) 12404 allSlack = true; 12405 if (allSlack) { 12402 12406 /* 12403 12407 Remove any existing warm start information to be sure there is no
Note: See TracChangeset
for help on using the changeset viewer.