CYCLUS
OsiCbcSolverInterface.hpp
Go to the documentation of this file.
1 #ifndef OsiCbcSolverInterface_HPP
2 #define OsiCbcSolverInterface_HPP
3 
4 #include "CbcConfig.h"
5 
6 // headers in this file below this pragma have all warnings shushed
7 #pragma GCC system_header
8 
9 // CBC_VERSION_MAJOR defined for Cbc > 2.5
10 #ifndef CBC_VERSION_MAJOR
12 #elif CBC_VERSION_MAJOR == 2 && CBC_VERSION_MINOR <= 8
14 #elif CBC_VERSION_MAJOR == 2 && CBC_VERSION_MINOR == 9
16 #else
17 #error "Cyclus cannot yet handle your version of CoinCBC. Please open an issue with your CoinCBC version."
18 #endif
19 
20 #endif