You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wheeldetect/3part/Cyclops/3rd/nlopt
bobpan 273cc505b4 添加wheel工程,用于轮毂型号识别 5 years ago
..
deprecated/nlopt2.2.1 添加wheel工程,用于轮毂型号识别 5 years ago
matlab 添加wheel工程,用于轮毂型号识别 5 years ago
x86 添加wheel工程,用于轮毂型号识别 5 years ago
COPYING 添加wheel工程,用于轮毂型号识别 5 years ago
COPYRIGHT 添加wheel工程,用于轮毂型号识别 5 years ago
NEWS 添加wheel工程,用于轮毂型号识别 5 years ago
README 添加wheel工程,用于轮毂型号识别 5 years ago
README-WINDOWS 添加wheel工程,用于轮毂型号识别 5 years ago
libnlopt-0.def 添加wheel工程,用于轮毂型号识别 5 years ago
libnlopt-0.dll 添加wheel工程,用于轮毂型号识别 5 years ago
libnlopt-0.lib 添加wheel工程,用于轮毂型号识别 5 years ago
nlopt-python.cpp 添加wheel工程,用于轮毂型号识别 5 years ago
nlopt.f 添加wheel工程,用于轮毂型号识别 5 years ago
nlopt.h 添加wheel工程,用于轮毂型号识别 5 years ago
nlopt.hpp 添加wheel工程,用于轮毂型号识别 5 years ago
nlopt.py 添加wheel工程,用于轮毂型号识别 5 years ago
setup.py 添加wheel工程,用于轮毂型号识别 5 years ago

README

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 the standard GNU autoconf/automake
commands:

    ./configure
    make
    make install

See `./configure --help` or the `INSTALL` file for other options.  To
build the latest development sources:

    git clone git://github.com/stevengj/nlopt
    cd nlopt
    sh autogen.sh
    make

(To build from git, you will need GNU autoconf, automake, and libtool
installed, along with SWIG and Unix tools such as m4, perl, and sed.)

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](http://en.wikipedia.org/wiki/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.