chiark / gitweb /
recommend building in a subdir
[nlopt.git] / bobyqa / bobyqa.h
1 #ifndef BOBYQA_H
2 #define BOBYQA_H 1
3
4 #include "nlopt-util.h"
5 #include "nlopt.h"
6
7 extern nlopt_result bobyqa(int n, int npt, double *x, 
8                            const double *lb, const double *ub,
9                            const double *dx, 
10                            nlopt_stopping *stop, double *minf,
11                            nlopt_func f, void *f_data);
12
13 #endif /* BOBYQA_H */