OsiConfig.h
Go to the documentation of this file.
1 /*
2  * Include file for the configuration of Osi.
3  *
4  * On systems where the code is configured with the configure script
5  * (i.e., compilation is always done with HAVE_CONFIG_H defined), this
6  * header file includes the automatically generated header file, and
7  * undefines macros that might configure with other Config.h files.
8  *
9  * On systems that are compiled in other ways (e.g., with the
10  * Developer Studio), a header files is included to define those
11  * macros that depend on the operating system and the compiler. The
12  * macros that define the configuration of the particular user setting
13  * (e.g., presence of other COIN packages or third party code) are set
14  * here. The project maintainer needs to remember to update this file
15  * and choose reasonable defines. A user can modify the default
16  * setting by editing this file here.
17  *
18  */
19 
20 #ifndef __OSICONFIG_H__
21 #define __OSICONFIG_H__
22 
23 #ifdef HAVE_CONFIG_H
24 #include "config_osi.h"
25 
26 /* undefine macros that could conflict with those in other config.h
27  files */
28 #undef PACKAGE
29 #undef PACKAGE_BUGREPORT
30 #undef PACKAGE_NAME
31 #undef PACKAGE_STRING
32 #undef PACKAGE_TARNAME
33 #undef PACKAGE_VERSION
34 #undef VERSION
35 
36 #else /* HAVE_CONFIG_H */
37 
38 /* include the COIN-wide system specific configure header */
39 #include "configall_system.h"
40 
41 /***************************************************************************/
42 /* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */
43 /***************************************************************************/
44 
45 /* Define to 1 if the Cbc package is used */
46 /* #define COIN_HAS_CBC 1 */
47 
48 /* Define to 1 if the Cgl package is used */
49 /* #define COIN_HAS_CGL */
50 
51 /*
52  Define to 1 if the Clp package is used. Don't undef this unless you really
53  know what you're doing.
54 */
55 #define COIN_HAS_CLP 1
56 
57 /*
58  Define to 1 if the CoinUtils package is used. Don't undef this unless you
59  really know what you're doing.
60 */
61 #define COIN_HAS_COINUTILS 1
62 
63 /* Define to 1 if the Cplex package is used */
64 /* #define COIN_HAS_CPX 1 */
65 
66 /* Define to 1 if the DyLP package is used */
67 /* #define COIN_HAS_DYLP 1 */
68 
69 /* Define to 1 if the FortMP package is used */
70 /* #define COIN_HAS_FMP 1 */
71 
72 /* Define to 1 if the Glpk package is used */
73 /* #define COIN_HAS_GLPK 1 */
74 
75 /* Define to 1 if the Mosek package is used */
76 /* #define COIN_HAS_MSK 1 */
77 
78 /*
79  Define to 1 if the Osi package is used. Not a good idea to undef this, for
80  obvious reasons.
81 */
82 #define COIN_HAS_OSI 1
83 
84 /* Define to 1 if the Osl package is used */
85 /* #define COIN_HAS_OSL 1 */
86 
87 /* Define to 1 if the Soplex package is used */
88 /* #define COIN_HAS_SPX 1 */
89 
90 /* Define to 1 if the Sym package is used */
91 /* #define COIN_HAS_SYM */
92 
93 /*
94  Define to 1 if the Vol package is used. Defined by default and useful to
95  clp, but not directly essential to Osi.
96 */
97 #define COIN_HAS_VOL 1
98 
99 /* Define to 1 if the Xpress package is used */
100 /* #define COIN_HAS_XPR 1 */
101 
102 /* Define to the debug sanity check level (0 is no test) */
103 #define COIN_OSI_CHECKLEVEL 0
104 
105 /* Define to the debug verbosity level (0 is no output) */
106 #define COIN_OSI_VERBOSITY 0
107 
108 /*
109  Define this variable to enable OsiDylp's informational printing features.
110 */
111 /* #define ODSI_INFOMSGS 1 */
112 
113 /*
114  Control OsiDylp's paranoid checks.
115  Legal values: 0 - off; 1 - normal; 2 - consistency (expensive)
116 */
117 /* #define ODSI_PARANOIA 1 */
118 
119 /*
120  Define this variable to enable support for dylp's statistics collection
121  features.
122 */
123 /* #define ODSI_STATISTICS */
124 
125 /*
126  For additional information about how to set OSICBC_DFLT_SOLVER,
127  OSICBC_DFLT_SOLVER_CLP, and OSICBC_DFLT_SOLVER_HPP, please see comments at
128  the beginning of OsiCbcSolverInterface.cpp. Unless you know what you're
129  doing, you should use clp with OsiCbc. Just uncomment the next three
130  defines.
131 */
132 /*
133  Define to the name of the default solver interface class, e.g.,
134  OsiClpSolverInterface.
135 */
136 /* #define OSICBC_DFLT_SOLVER OsiClpSolverInterface */
137 
138 /* Define this symbol if clp is the default solver. */
139 /* #define OSICBC_DFLT_SOLVER_CLP 1 */
140 
141 /*
142  Define to the name of the .hpp file for the default solver interface class,
143  e.g., "OsiClpSolverInterface.hpp" (include quotes)
144 */
145 /* #define OSICBC_DFLT_SOLVER_HPP "OsiClpSolverInterface.hpp" */
146 
147 /* Osi version */
148 #define OSI_VERSION "0.103.0"
149 
150 #endif /* HAVE_CONFIG_H */
151 
152 #endif /*__OSICONFIG_H__*/