00001 /* 00002 * Include file for the configuration of Ipopt. 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 __IPOPTCONFIG_H__ 00021 #define __IPOPTCONFIG_H__ 00022 00023 #ifdef HAVE_CONFIG_H 00024 #include "config_ipopt.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 #define IPOPT_VERSION "3.8.3" 00042 00043 /***************************************************************************/ 00044 /* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */ 00045 /***************************************************************************/ 00046 00047 /* Define to the debug sanity check level (0 is no test) */ 00048 #define COIN_IPOPT_CHECKLEVEL 0 00049 00050 /* Define to the debug verbosity level (0 is no output) */ 00051 #define COIN_IPOPT_VERBOSITY 0 00052 00053 /* If defined, the Ampl Solver Library is available. */ 00054 #define COIN_HAS_ASL 1 00055 00056 /* If defined, the BLAS Library is available. */ 00057 #define COIN_HAS_BLAS 1 00058 00059 /* Define to 1 if the Ipopt package is used */ 00060 #define COIN_HAS_IPOPT 1 00061 00062 /* If defined, the LAPACK Library is available. */ 00063 #define COIN_HAS_LAPACK 1 00064 00065 /* If defined, the METIS library is available. */ 00066 /* #undef COIN_HAS_METIS */ 00067 00068 /* If defined, the MUMPS library is available. */ 00069 /* #undef COIN_HAS_MUMPS */ 00070 00071 /* Define to 1 if the linear solver loader should be compiled to allow dynamic 00072 loading of shared libraries with linear solvers */ 00073 /* #undef HAVE_LINEARSOLVERLOADER */ 00074 00075 /* Define to 1 if MA27 is available */ 00076 #define HAVE_MA27 1 00077 00078 /* Define to 1 if MA28 is available */ 00079 /* #undef HAVE_MA28 */ 00080 00081 /* Define to 1 if MA57 is available */ 00082 /* #undef HAVE_MA57 */ 00083 00084 /* Define to 1 if MC19 is available */ 00085 #define HAVE_MC19 1 00086 00087 /* Define to 1 if Pardiso is available */ 00088 /* #undef HAVE_PARDISO */ 00089 00090 /* Define to 1 if you are using at least a 4.0 version of Pardiso */ 00091 #define HAVE_PARDISO_NEWINTERFACE 1 00092 00093 /* Define to 1 if you are using the parallel version of Pardiso */ 00094 /* #undef HAVE_PARDISO_PARALLEL */ 00095 00096 /* Define to 1 if WSMP is available */ 00097 /* #undef HAVE_WSMP */ 00098 00099 #endif /* HAVE_CONFIG_H */ 00100 00101 /* Type of Fortran integer translated into C */ 00102 typedef FORTRAN_INTEGER_TYPE ipfint; 00103 00104 #endif /*__IPOPTCONFIG_H__*/