chiark / gitweb /
Merge pull request #139 from jschueller/doc
[nlopt.git] / stogo / stogo_config.h
1 #ifndef STOGO_CONFIG_H
2 #define STOGO_CONFIG_H
3
4 /* Compiler flags to enable/disable various options in the code */
5
6 /* To obtain extra information on the global search process: */
7 /* #define GS_DEBUG */
8
9 /* To obtain info on the local search process: */
10 /* #define LS_DEBUG */
11
12 /* Initialization strategy in the local search (INI1,INI2 or INI3) */
13 #define INI2
14
15 /* Use the more pessimistic strategy for lower bound estimation */
16 /* #define LB2 */
17
18 #endif