00001 /* $Id: CouenneConfig.h 141 2009-06-03 04:19:19Z pbelotti $ */ 00002 /* 00003 * Include file for the configuration of Couenne. 00004 * 00005 * On systems where the code is configured with the configure script 00006 * (i.e., compilation is always done with HAVE_CONFIG_H defined), this 00007 * header file includes the automatically generated header file, and 00008 * undefines macros that might configure with other Config.h files. 00009 * 00010 * On systems that are compiled in other ways (e.g., with the 00011 * Developer Studio), a header files is included to define those 00012 * macros that depend on the operating system and the compiler. The 00013 * macros that define the configuration of the particular user setting 00014 * (e.g., presence of other COIN packages or third party code) are set 00015 * here. The project maintainer needs to remember to update this file 00016 * and choose reasonable defines. A user can modify the default 00017 * setting by editing this file here. 00018 * 00019 */ 00020 00021 #ifndef __COUENNECONFIG_H__ 00022 00023 #ifdef HAVE_CONFIG_H 00024 #include "config_couenne.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 the debug sanity check level (0 is no test) */ 00046 #define COIN_COUENNE_CHECKLEVEL 0 00047 00048 /* Define to the debug verbosity level (0 is no output) */ 00049 #define COIN_COUENNE_VERBOSITY 0 00050 00051 /* If defined, the Ampl Solver Library is available. */ 00052 /* #undef COIN_HAS_ASL */ 00053 00054 #endif /* HAVE_CONFIG_H */ 00055 00056 #endif /*__HAVE_COUENNE_CONFIG_H__*/