chiark / gitweb /
8045cb651293b60cd8dbdfaab344a2c81a3f0462
[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_NUM_ALGORITHMS /* not an algorithm, just the number of them */
46 } nlopt_algorithm;
47
48 extern const char *nlopt_algorithm_name(nlopt_algorithm a);
49
50 typedef enum {
51      NLOPT_FAILURE = -1, /* generic failure code */
52      NLOPT_INVALID_ARGS = -2,
53      NLOPT_OUT_OF_MEMORY = -3,
54
55      NLOPT_SUCCESS = 1, /* generic success code */
56      NLOPT_MINF_MAX_REACHED = 2,
57      NLOPT_FTOL_REACHED = 3,
58      NLOPT_XTOL_REACHED = 4,
59      NLOPT_MAXEVAL_REACHED = 5,
60      NLOPT_MAXTIME_REACHED = 6
61 } nlopt_result;
62
63 extern nlopt_result nlopt_minimize(
64      nlopt_algorithm algorithm,
65      int n, nlopt_func f, void *f_data,
66      const double *lb, const double *ub, /* bounds */
67      double *x, /* in: initial guess, out: minimizer */
68      double *minf, /* out: minimum */
69      double minf_max, double ftol_rel, double ftol_abs,
70      double xtol_rel, const double *xtol_abs,
71      int maxeval, double maxtime);
72
73 extern void nlopt_srand(unsigned long seed);
74 extern void nlopt_srand_time(void);
75
76 extern void nlopt_version(int *major, int *minor, int *bugfix);
77
78 extern void nlopt_get_local_search_algorithm(nlopt_algorithm *deriv,
79                                              nlopt_algorithm *nonderiv,
80                                              int *maxeval);
81 extern void nlopt_set_local_search_algorithm(nlopt_algorithm deriv,
82                                              nlopt_algorithm nonderiv,
83                                              int maxeval);
84
85 #ifdef __cplusplus
86 }  /* extern "C" */
87 #endif /* __cplusplus */
88
89 #endif