chiark / gitweb /
added first version of MLSL multistart-type algorithm
[nlopt.git] / api / nlopt.h
1 #ifndef NLOPT_H
2 #define NLOPT_H
3
4 #ifdef __cplusplus
5 extern "C"
6 {
7 #endif /* __cplusplus */
8
9 typedef double (*nlopt_func)(int n, const double *x,
10                              double *gradient, /* NULL if not needed */
11                              void *func_data);
12
13 typedef enum {
14      /* Naming conventions:
15
16         NLOPT_{G/L}{D/N}_* 
17             = global/local derivative/no-derivative optimization, 
18               respectively 
19  
20         *_RAND algorithms involve some randomization.
21
22         *_NOSCAL algorithms are *not* scaled to a unit hypercube
23                  (i.e. they are sensitive to the units of x)
24         */
25
26      NLOPT_GN_DIRECT = 0,
27      NLOPT_GN_DIRECT_L,
28      NLOPT_GN_DIRECT_L_RAND,
29      NLOPT_GN_DIRECT_NOSCAL,
30      NLOPT_GN_DIRECT_L_NOSCAL,
31      NLOPT_GN_DIRECT_L_RAND_NOSCAL,
32
33      NLOPT_GN_ORIG_DIRECT,
34      NLOPT_GN_ORIG_DIRECT_L,
35
36      NLOPT_LN_SUBPLEX,
37
38      NLOPT_GD_STOGO,
39      NLOPT_GD_STOGO_RAND,
40
41      NLOPT_LD_LBFGS,
42
43      NLOPT_LN_PRAXIS,
44
45      NLOPT_LD_VAR1,
46      NLOPT_LD_VAR2,
47
48      NLOPT_LD_TNEWTON,
49      NLOPT_LD_TNEWTON_RESTART,
50      NLOPT_LD_TNEWTON_PRECOND,
51      NLOPT_LD_TNEWTON_PRECOND_RESTART,
52
53      NLOPT_GN_CRS2_LM,
54
55      NLOPT_GN_MLSL,
56      NLOPT_GD_MLSL,
57      NLOPT_GN_MLSL_LDS,
58      NLOPT_GD_MLSL_LDS,
59
60      NLOPT_NUM_ALGORITHMS /* not an algorithm, just the number of them */
61 } nlopt_algorithm;
62
63 extern const char *nlopt_algorithm_name(nlopt_algorithm a);
64
65 typedef enum {
66      NLOPT_FAILURE = -1, /* generic failure code */
67      NLOPT_INVALID_ARGS = -2,
68      NLOPT_OUT_OF_MEMORY = -3,
69
70      NLOPT_SUCCESS = 1, /* generic success code */
71      NLOPT_MINF_MAX_REACHED = 2,
72      NLOPT_FTOL_REACHED = 3,
73      NLOPT_XTOL_REACHED = 4,
74      NLOPT_MAXEVAL_REACHED = 5,
75      NLOPT_MAXTIME_REACHED = 6
76 } nlopt_result;
77
78 extern nlopt_result nlopt_minimize(
79      nlopt_algorithm algorithm,
80      int n, nlopt_func f, void *f_data,
81      const double *lb, const double *ub, /* bounds */
82      double *x, /* in: initial guess, out: minimizer */
83      double *minf, /* out: minimum */
84      double minf_max, double ftol_rel, double ftol_abs,
85      double xtol_rel, const double *xtol_abs,
86      int maxeval, double maxtime);
87
88 extern void nlopt_srand(unsigned long seed);
89 extern void nlopt_srand_time(void);
90
91 extern void nlopt_version(int *major, int *minor, int *bugfix);
92
93 extern void nlopt_get_local_search_algorithm(nlopt_algorithm *deriv,
94                                              nlopt_algorithm *nonderiv,
95                                              int *maxeval);
96 extern void nlopt_set_local_search_algorithm(nlopt_algorithm deriv,
97                                              nlopt_algorithm nonderiv,
98                                              int maxeval);
99
100 #ifdef __cplusplus
101 }  /* extern "C" */
102 #endif /* __cplusplus */
103
104 #endif