Changeset 1623 for trunk/Cbc/src/CbcModel.hpp
- Timestamp:
- Mar 25, 2011 3:05:04 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cbc/src/CbcModel.hpp
r1585 r1623 1737 1737 32768 more heuristics in sub trees 1738 1738 65536 no cuts in preprocessing 1739 131072 Time limits elapsed 1739 1740 */ 1740 1741 inline void setMoreSpecialOptions(int value) { … … 1744 1745 inline int moreSpecialOptions() const { 1745 1746 return moreSpecialOptions_; 1747 } 1748 /// Set time method 1749 inline void setUseElapsedTime(bool yesNo) { 1750 if (yesNo) 1751 moreSpecialOptions_ |= 131072; 1752 else 1753 moreSpecialOptions_ &= ~131072; 1754 } 1755 /// Get time method 1756 inline bool useElapsedTime() const { 1757 return (moreSpecialOptions_&131072)!=0; 1746 1758 } 1747 1759 /// Go to dantzig pivot selection if easy problem (clp only) … … 2436 2448 int specialOptions_; 2437 2449 /** More special options 2438 at present bottom 3 bits used for shadow price mode 2450 at present bottom 6 bits used for shadow price mode 2451 1024 for experimental hotstart 2452 2048,4096 breaking out of cuts 2453 8192 slowly increase minimum drop 2454 16384 gomory 2455 32768 more heuristics in sub trees 2456 65536 no cuts in preprocessing 2457 131072 Time limits elapsed 2439 2458 */ 2440 2459 int moreSpecialOptions_;
Note: See TracChangeset
for help on using the changeset viewer.