- Timestamp:
- Jul 31, 2011 10:46:42 AM (10 years ago)
- Location:
- stable/2.7/Cbc/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/2.7/Cbc/src/CbcModel.hpp
r1675 r1711 1888 1888 //@} 1889 1889 1890 /// To do with threads1890 ///@name Multithreading 1891 1891 //@{ 1892 /// Indicates whether Cbc library has been compiled with multithreading support 1893 static bool haveMultiThreadSupport(); 1892 1894 /// Get pointer to masterthread 1893 1895 CbcThread * masterThread() const { … … 1984 1986 //@} 1985 1987 1986 /// semi-private i.e. users should not use1988 ///@name semi-private i.e. users should not use 1987 1989 //@{ 1988 1990 /// Get how many Nodes it took to solve the problem. -
stable/2.7/Cbc/src/CbcThread.cpp
r1573 r1711 1895 1895 } 1896 1896 } 1897 1898 /// Indicates whether Cbc library has been compiled with multithreading support 1899 bool CbcModel::haveMultiThreadSupport() { return true; } 1900 1897 1901 #else 1898 // Dummy so file not empty1899 1902 // Default constructor 1900 1903 CbcBaseModel::CbcBaseModel() {} 1901 #endif 1902 1904 1905 bool CbcModel::haveMultiThreadSupport() { return false; } 1906 #endif 1907
Note: See TracChangeset
for help on using the changeset viewer.