README 859 字节
Newer Older
S
stevenj 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
NLopt is a library for nonlinear local and global optimization, for
functions with and without gradient information.  It is designed as
as simple, unified interface and packaging of several free/open-source
nonlinear optimization libraries.

It is compiled and installed with the standard GNU autoconf/automake
commands:
	./configure
	make
	make install
(See './configure --help' or the INSTALL file for other options.)

Once it is installed, #include <nlopt.h> in your C/C++ programs and
link it with -lnlopt -lm.  You may need to use the C++ compiler to link
in order to include the C++ libraries (which are used internally by NLopt,
even though it has a C API).

18 19 20
The minimization function, nlopt_minimize, is described in the man
page (api/nlopt_minimize.3, which is installed by 'make install'.

S
stevenj 已提交
21
Interfaces for other languages may be added in the future.