CbcConfig.h
Go to the documentation of this file.
1 #ifndef HAVE_CONFIG_H
2 #define HAVE_CONFIG_H
3 #endif
4 /* $Id: CbcConfig.h 1477 2010-07-05 03:00:27Z lou $ */
5 /*
6  * Include file for the configuration of Cbc.
7  *
8  * On systems where the code is configured with the configure script
9  * (i.e., compilation is always done with HAVE_CONFIG_H defined), this
10  * header file includes the automatically generated header file, and
11  * undefines macros that might configure with other Config.h files.
12  *
13  * On systems that are compiled in other ways (e.g., with the
14  * Developer Studio), a header files is included to define those
15  * macros that depend on the operating system and the compiler. The
16  * macros that define the configuration of the particular user setting
17  * (e.g., presence of other COIN packages or third party code) are set
18  * here. The project maintainer needs to remember to update this file
19  * and choose reasonable defines. A user can modify the default
20  * setting by editing this file here.
21  *
22  */
23 
24 #ifndef __CBCCONFIG_H__
25 #define __CBCCONFIG_H__
26 
27 #ifdef HAVE_CONFIG_H
28 #include "config_cbc.h"
29 
30 /* undefine macros that could conflict with those in other config.h
31  files */
32 #undef PACKAGE
33 #undef PACKAGE_BUGREPORT
34 #undef PACKAGE_NAME
35 #undef PACKAGE_STRING
36 #undef PACKAGE_TARNAME
37 #undef PACKAGE_VERSION
38 #undef VERSION
39 
40 #else /* HAVE_CONFIG_H */
41 
42 /* include the COIN-wide system specific configure header */
43 #include "configall_system.h"
44 
45 /***************************************************************************/
46 /* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */
47 /***************************************************************************/
48 
49 /* Define to the debug sanity check level (0 is no test) */
50 #define COIN_CBC_CHECKLEVEL 0
51 
52 /* Define to the debug verbosity level (0 is no output) */
53 #define COIN_CBC_VERBOSITY 0
54 
55 /* Define to 1 if the Cbc package is used */
56 #define COIN_HAS_CBC 1
57 
58 /* Define to 1 if the Cgl package is used */
59 #define COIN_HAS_CGL 1
60 
61 /* Define to 1 if the Clp package is used */
62 #define COIN_HAS_CLP 1
63 
64 /* Define to 1 if the CoinUtils package is used */
65 #define COIN_HAS_COINUTILS 1
66 
67 /* Define to 1 if the Osi package is used */
68 #define COIN_HAS_OSI 1
69 
70 /* Define to 1 if the Vol package is used */
71 #define COIN_HAS_VOL 1
72 
73 /* Define to 1 if the Cplex package is used */
74 /* #undef COIN_HAS_CPX */
75 
76 /* Define to 1 if the Dylp package is used */
77 /* #undef COIN_HAS_DYLP */
78 
79 /* Define to 1 if the FortMP package is used */
80 /* #undef COIN_HAS_FMP */
81 
82 /* Define to 1 if the Glpk package is used */
83 /* #undef COIN_HAS_GLPK */
84 
85 /* Define to 1 if the Mosek package is used */
86 /* #undef COIN_HAS_MSK */
87 
88 /* Define to 1 if the Osl package is used */
89 /* #undef COIN_HAS_OSL */
90 
91 /* Define to 1 if the Soplex package is used */
92 /* #undef COIN_HAS_SPX */
93 
94 /* Define to 1 if the Sym package is used */
95 /* #undef COIN_HAS_SYM */
96 
97 /* Define to 1 if the Xpress package is used */
98 /* #undef COIN_HAS_XPR */
99 
100 /* Cbc version */
101 #define CBC_VERSION "2.5.0"
102 
103 #endif /* HAVE_CONFIG_H */
104 
105 #endif /* __CBCCONFIG_H__ */