Changeset 1733
- Timestamp:
- Sep 25, 2011 11:40:30 AM (9 years ago)
- Location:
- trunk/Cbc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cbc
- Property svn:mergeinfo changed
/stable/2.7/Cbc merged: 1732
- Property svn:mergeinfo changed
-
trunk/Cbc/src/CbcModel.hpp
r1725 r1733 895 895 numberIterations_ += value; 896 896 } 897 /// Get how many Nodes it took to solve the problem .897 /// Get how many Nodes it took to solve the problem (including those in complete fathoming B&B inside CLP). 898 898 inline int getNodeCount() const { 899 899 return numberNodes_; … … 902 902 inline void incrementNodeCount(int value) { 903 903 numberNodes_ += value; 904 } 905 /// Get how many Nodes were enumerated in complete fathoming B&B inside CLP 906 inline int getExtraNodeCount() const { 907 return numberExtraNodes_; 904 908 } 905 909 /** Final status of problem
Note: See TracChangeset
for help on using the changeset viewer.