File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,9 @@ static const char nlopt_algorithm_names[NLOPT_NUM_ALGORITHMS][256] = {
46
46
#ifdef NLOPT_CXX
47
47
"StoGO (global, derivative-based)" ,
48
48
"StoGO with randomized search (global, derivative-based)" ,
49
- "AGS (global, no-derivative)"
50
49
#else
51
50
"StoGO (NOT COMPILED)" ,
52
51
"StoGO randomized (NOT COMPILED)" ,
53
- "AGS (NOT COMPILED)"
54
52
#endif
55
53
"original L-BFGS code by Nocedal et al. (NOT COMPILED)" ,
56
54
"Limited-memory BFGS (L-BFGS) (local, derivative-based)" ,
@@ -85,6 +83,11 @@ static const char nlopt_algorithm_names[NLOPT_NUM_ALGORITHMS][256] = {
85
83
"Sequential Quadratic Programming (SQP) (local, derivative)" ,
86
84
"CCSA (Conservative Convex Separable Approximations) with simple quadratic approximations (local, derivative)" ,
87
85
"ESCH evolutionary strategy" ,
86
+ #ifdef NLOPT_CXX
87
+ "AGS (global, no-derivative)" ,
88
+ #else
89
+ "AGS (NOT COMPILED)" ,
90
+ #endif
88
91
};
89
92
90
93
const char * NLOPT_STDCALL nlopt_algorithm_name (nlopt_algorithm a )
You can’t perform that action at this time.
0 commit comments