File: bobyqa.h

package info (click to toggle)
nlopt 2.4.2%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,368 kB
  • sloc: ansic: 22,387; cpp: 20,233; sh: 11,475; python: 323; makefile: 244; fortran: 108
file content (13 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef BOBYQA_H
#define BOBYQA_H 1

#include "nlopt-util.h"
#include "nlopt.h"

extern nlopt_result bobyqa(int n, int npt, double *x, 
			   const double *lb, const double *ub,
			   const double *dx, 
			   nlopt_stopping *stop, double *minf,
			   nlopt_func f, void *f_data);

#endif /* BOBYQA_H */