00001 /* 00002 * Include file for the configuration of Osi. 00003 * 00004 * On systems where the code is configured with the configure script 00005 * (i.e., compilation is always done with HAVE_CONFIG_H defined), this 00006 * header file includes the automatically generated header file, and 00007 * undefines macros that might configure with other Config.h files. 00008 * 00009 * On systems that are compiled in other ways (e.g., with the 00010 * Developer Studio), a header files is included to define those 00011 * macros that depend on the operating system and the compiler. The 00012 * macros that define the configuration of the particular user setting 00013 * (e.g., presence of other COIN packages or third party code) are set 00014 * here. The project maintainer needs to remember to update this file 00015 * and choose reasonable defines. A user can modify the default 00016 * setting by editing this file here. 00017 * 00018 */ 00019 00020 #ifndef __OSICONFIG_H__ 00021 #define __OSICONFIG_H__ 00022 00023 #ifdef HAVE_CONFIG_H 00024 #include "config_osi.h" 00025 00026 /* undefine macros that could conflict with those in other config.h 00027 files */ 00028 #undef PACKAGE 00029 #undef PACKAGE_BUGREPORT 00030 #undef PACKAGE_NAME 00031 #undef PACKAGE_STRING 00032 #undef PACKAGE_TARNAME 00033 #undef PACKAGE_VERSION 00034 #undef VERSION 00035 00036 #else /* HAVE_CONFIG_H */ 00037 00038 /* include the COIN-wide system specific configure header */ 00039 #include "configall_system.h" 00040 00041 /***************************************************************************/ 00042 /* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */ 00043 /***************************************************************************/ 00044 00045 /* Define to 1 if the Cbc package is used */ 00046 /* #define COIN_HAS_CBC 1 */ 00047 00048 /* Define to 1 if the Cgl package is used */ 00049 /* #define COIN_HAS_CGL */ 00050 00051 /* 00052 Define to 1 if the Clp package is used. Don't undef this unless you really 00053 know what you're doing. 00054 */ 00055 #define COIN_HAS_CLP 1 00056 00057 /* 00058 Define to 1 if the CoinUtils package is used. Don't undef this unless you 00059 really know what you're doing. 00060 */ 00061 #define COIN_HAS_COINUTILS 1 00062 00063 /* Define to 1 if the Cplex package is used */ 00064 /* #define COIN_HAS_CPX 1 */ 00065 00066 /* Define to 1 if the DyLP package is used */ 00067 /* #define COIN_HAS_DYLP 1 */ 00068 00069 /* Define to 1 if the FortMP package is used */ 00070 /* #define COIN_HAS_FMP 1 */ 00071 00072 /* Define to 1 if the Glpk package is used */ 00073 /* #define COIN_HAS_GLPK 1 */ 00074 00075 /* Define to 1 if the Mosek package is used */ 00076 /* #define COIN_HAS_MSK 1 */ 00077 00078 /* 00079 Define to 1 if the Osi package is used. Not a good idea to undef this, for 00080 obvious reasons. 00081 */ 00082 #define COIN_HAS_OSI 1 00083 00084 /* Define to 1 if the Osl package is used */ 00085 /* #define COIN_HAS_OSL 1 */ 00086 00087 /* Define to 1 if the Soplex package is used */ 00088 /* #define COIN_HAS_SPX 1 */ 00089 00090 /* Define to 1 if the Sym package is used */ 00091 /* #define COIN_HAS_SYM */ 00092 00093 /* 00094 Define to 1 if the Vol package is used. Defined by default and useful to 00095 clp, but not directly essential to Osi. 00096 */ 00097 #define COIN_HAS_VOL 1 00098 00099 /* Define to 1 if the Xpress package is used */ 00100 /* #define COIN_HAS_XPR 1 */ 00101 00102 /* Define to the debug sanity check level (0 is no test) */ 00103 #define COIN_OSI_CHECKLEVEL 0 00104 00105 /* Define to the debug verbosity level (0 is no output) */ 00106 #define COIN_OSI_VERBOSITY 0 00107 00108 /* 00109 Define this variable to enable OsiDylp's informational printing features. 00110 */ 00111 /* #define ODSI_INFOMSGS 1 */ 00112 00113 /* 00114 Control OsiDylp's paranoid checks. 00115 Legal values: 0 - off; 1 - normal; 2 - consistency (expensive) 00116 */ 00117 /* #define ODSI_PARANOIA 1 */ 00118 00119 /* 00120 Define this variable to enable support for dylp's statistics collection 00121 features. 00122 */ 00123 /* #define ODSI_STATISTICS */ 00124 00125 /* 00126 For additional information about how to set OSICBC_DFLT_SOLVER, 00127 OSICBC_DFLT_SOLVER_CLP, and OSICBC_DFLT_SOLVER_HPP, please see comments at 00128 the beginning of OsiCbcSolverInterface.cpp. Unless you know what you're 00129 doing, you should use clp with OsiCbc. Just uncomment the next three 00130 defines. 00131 */ 00132 /* 00133 Define to the name of the default solver interface class, e.g., 00134 OsiClpSolverInterface. 00135 */ 00136 /* #define OSICBC_DFLT_SOLVER OsiClpSolverInterface */ 00137 00138 /* Define this symbol if clp is the default solver. */ 00139 /* #define OSICBC_DFLT_SOLVER_CLP 1 */ 00140 00141 /* 00142 Define to the name of the .hpp file for the default solver interface class, 00143 e.g., "OsiClpSolverInterface.hpp" (include quotes) 00144 */ 00145 /* #define OSICBC_DFLT_SOLVER_HPP "OsiClpSolverInterface.hpp" */ 00146 00147 /* Osi version */ 00148 #define OSI_VERSION "0.103.0" 00149 00150 #endif /* HAVE_CONFIG_H */ 00151 00152 #endif /*__OSICONFIG_H__*/