Skip to content
/ nlopt Public
forked from stevengj/nlopt

library for nonlinear optimization, wrapping many algorithms for global and local, constrained or unconstrained, optimization

License

Unknown, MIT licenses found

Licenses found

Unknown
COPYING
MIT
COPYRIGHT
Notifications You must be signed in to change notification settings

ajspeck/nlopt

 
 

Repository files navigation

Build Status

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.

The latest release and a complete manual may be found at the NLopt home page: http://ab-initio.mit.edu/nlopt

It is compiled and installed with CMake build system:

cmake .
sudo make install

See CMakeLists.txt file for cmake options. To build the latest development sources:

git clone git://github.com/stevengj/nlopt
cd nlopt
cmake .
make

(To build from git, you will need SWIG.)

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).

The minimization function, nlopt_minimize, is described in the man page (api/nlopt_minimize.3, which is installed by make install. See also the manual on our web page.

There are also interfaces for Fortran, Python, Matlab, Octave, OCaml, GNU Guile, GNU R, Lua, and Julia. Interfaces for other languages may be added in the future.

About

library for nonlinear optimization, wrapping many algorithms for global and local, constrained or unconstrained, optimization

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
COPYING
MIT
COPYRIGHT

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 68.3%
  • Fortran 18.8%
  • C++ 5.7%
  • Roff 3.5%
  • CMake 2.2%
  • MATLAB 1.4%
  • Other 0.1%