Ipopt Documentation  
 
Loading...
Searching...
No Matches
config_ipopt_default.h
Go to the documentation of this file.
1
2/***************************************************************************/
3/* HERE DEFINE THE PROJECT SPECIFIC PUBLIC MACROS */
4/* These are only in effect in a setting that doesn't use configure */
5/***************************************************************************/
6
7/* Version number of project */
8#define IPOPT_VERSION "3.14.15"
9
10/* Major Version number of project */
11#define IPOPT_VERSION_MAJOR 3
12
13/* Minor Version number of project */
14#define IPOPT_VERSION_MINOR 14
15
16/* Release Version number of project */
17#define IPOPT_VERSION_RELEASE 15
18
19/* Define to the C type corresponding to Fortran INTEGER
20 * @deprecated Use ipindex instead.
21 */
22#ifndef IPOPT_FORTRAN_INTEGER_TYPE
23#define IPOPT_FORTRAN_INTEGER_TYPE ipindex
24#endif
25
26#ifndef IPOPTLIB_EXPORT
27#if defined(_WIN32) && defined(DLL_EXPORT)
28#define IPOPTLIB_EXPORT __declspec(dllimport)
29#else
30#define IPOPTLIB_EXPORT
31#endif
32#endif
33
34#ifndef SIPOPTLIB_EXPORT
35#if defined(_WIN32) && defined(DLL_EXPORT)
36#define DIPOPTLIB_EXPORT __declspec(dllimport)
37#else
38#define DIPOPTLIB_EXPORT
39#endif
40#endif