chiark / gitweb /
changed nlopt_minimize_c to nlopt_minimize_constrained, added man page
authorstevenj <stevenj@alum.mit.edu>
Sat, 23 Aug 2008 00:19:35 +0000 (20:19 -0400)
committerstevenj <stevenj@alum.mit.edu>
Sat, 23 Aug 2008 00:19:35 +0000 (20:19 -0400)
darcs-hash:20080823001935-c8de0-6cae0c5a23250434c82bb8395a5176551a07c831.gz

api/Makefile.am
api/nlopt.c
api/nlopt.h
api/nlopt_minimize.3
api/nlopt_minimize_constrained.3 [new file with mode: 0644]
mma/README

index 3a616b1fdf042eb202765bfc35fc6fb56f4c48a2..87b20a52fd149b01a2bf4e041a3a96bc2318c5a1 100644 (file)
@@ -2,6 +2,6 @@ AM_CPPFLAGS = -I$(top_srcdir)/cdirect -I$(top_srcdir)/direct -I$(top_srcdir)/sto
 
 include_HEADERS = nlopt.h
 noinst_LTLIBRARIES = libapi.la
-dist_man_MANS = nlopt_minimize.3
+dist_man_MANS = nlopt_minimize.3 nlopt_minimize_constrained.3
 
 libapi_la_SOURCES = nlopt.c nlopt.h
index b370894bbb8e4e1244bbb2904b9f92df23a2b6bb..f42409e1d0f8aba6e544c73ad0b6f8a2feb8ffa2 100644 (file)
@@ -203,7 +203,8 @@ static nlopt_result nlopt_minimize_(
      nlopt_stopping stop;
 
      /* some basic argument checks */
-     if (!minf || !f) return NLOPT_INVALID_ARGS;
+     if (!minf || !f || n < 0 || m < 0
+         || (m > 0 && !fc)) return NLOPT_INVALID_ARGS;
      if (n == 0) { /* trivial case: no degrees of freedom */
          *minf = f(n, x, NULL, f_data);
          return NLOPT_SUCCESS;
@@ -424,7 +425,7 @@ static nlopt_result nlopt_minimize_(
      return NLOPT_SUCCESS;
 }
 
-nlopt_result nlopt_minimize_c(
+nlopt_result nlopt_minimize_constrained(
      nlopt_algorithm algorithm,
      int n, nlopt_func f, void *f_data,
      int m, nlopt_func fc, void *fc_data, ptrdiff_t fc_datum_size,
@@ -465,7 +466,8 @@ nlopt_result nlopt_minimize(
      double xtol_rel, const double *xtol_abs,
      int maxeval, double maxtime)
 {
-     return nlopt_minimize_c(algorithm, n, f, f_data, 0, NULL, NULL, 0,
-                            lb, ub, x, minf, minf_max, ftol_rel, ftol_abs,
-                            xtol_rel, xtol_abs, maxeval, maxtime);
+     return nlopt_minimize_constrained(
+         algorithm, n, f, f_data, 0, NULL, NULL, 0,
+         lb, ub, x, minf, minf_max, ftol_rel, ftol_abs,
+         xtol_rel, xtol_abs, maxeval, maxtime);
 }
index fa7629a6bbceeaed8bf25bb1268b7c2e3554242a..8138644bd13ff56eeded3386b0478cc3e888ff57 100644 (file)
@@ -91,7 +91,7 @@ extern nlopt_result nlopt_minimize(
      double xtol_rel, const double *xtol_abs,
      int maxeval, double maxtime);
 
-extern nlopt_result nlopt_minimize_c(
+extern nlopt_result nlopt_minimize_constrained(
      nlopt_algorithm algorithm,
      int n, nlopt_func f, void *f_data,
      int m, nlopt_func fc, void *fc_data, ptrdiff_t fc_datum_size,
index 0e6631c89a7a9773f7d4e0b5795a8a02bfb95624..e8b5995aedbbf68ce996a514127f54814d87dba5 100644 (file)
@@ -75,6 +75,7 @@ and others find only a local minimum.
 The
 .B nlopt_minimize
 function is a wrapper around several free/open-source minimization packages.
+as well as some new implementations of published optimization algorithms.
 You could, of course, compile and call these packages separately, and in
 some cases this will provide greater flexibility than is available via the
 .B nlopt_minimize
@@ -160,11 +161,18 @@ IEEE-754 floating-point infinity, which (in ANSI C99) is represented by
 the macro INFINITY in math.h.  Alternatively, for older C versions
 you may also use the macro HUGE_VAL (also in math.h).
 .sp
-With some of the algorithms, you may also employ arbitrary nonlinear
-constraints on the input variables.  This is indicated by returning NaN
-(not a number) or Inf (infinity) from your objective function whenever
-a forbidden point is requested.  See above for how to specify infinity;
-NaN is specified by the macro NAN in math.h (for ANSI C99).
+With some of the algorithms, especially those that do not require
+derivative information, a simple (but not especially efficient) way
+to implement arbitrary nonlinear constraints is to return Inf (see
+above) whenever the constraints are violated by a given input
+.IR x .
+More generally, there are various ways to implement constraints
+by adding "penalty terms" to your objective function, which are
+described in the optimization literature.
+A much more efficient way to specify nonlinear constraints is 
+provided by the
+.BR nlopt_minimize_constrained ()
+function (described in its own manual page).
 .SH ALGORITHMS
 The 
 .I algorithm
@@ -228,7 +236,10 @@ objective) for its local searches, and performs the global search by a
 branch-and-bound technique.  Only bound-constrained optimization
 is supported.  There is also another variant of this algorithm,
 .BR NLOPT_GD_STOGO_RAND ,
-which is a randomized version of the StoGO search scheme.
+which is a randomized version of the StoGO search scheme.  The StoGO
+algorithms are only available if NLopt is compiled with C++ enabled,
+and should be linked via -lnlopt_cxx (via a C++ compiler, in order
+to link the C++ standard libraries).
 .TP 
 .B NLOPT_LN_SUBPLEX
 Perform a local (L) derivative-free (N) optimization, starting at
@@ -299,6 +310,18 @@ and
 for derivative/nonderivative searches, respectively).  There are also
 two other variants, \fBNLOPT_GD_MLSL\fR and \fBNLOPT_GN_MLSL\fR, which use
 pseudo-random numbers (instead of an LDS) as in the original MLSL algorithm.
+.TP
+.B NLOPT_LD_MMA
+Local (L) gradient-based (D) optimization using the method of moving
+asymptotes (MMA), or rather a refined version of the algorithm as
+published by Svanberg (2002).  (NLopt uses an independent free
+implementation of Svanberg's algorithm.)  The
+.B NLOPT_LD_MMA
+algorithm supports both bound-constrained and unconstrained optimization,
+and also supports an arbitrary number (\fIm\fR) of nonlinear constraints
+via the
+.BR nlopt_minimize_constrained ()
+function.
 .SH STOPPING CRITERIA
 Multiple stopping criteria for the optimization are supported, as
 specified by the following arguments to
@@ -439,3 +462,5 @@ termination condition that is consistently supported right now is
 Written by Steven G. Johnson.
 .PP
 Copyright (c) 2007 Massachusetts Institute of Technology.
+.SH "SEE ALSO"
+nlopt_minimize_constrained(3)
diff --git a/api/nlopt_minimize_constrained.3 b/api/nlopt_minimize_constrained.3
new file mode 100644 (file)
index 0000000..dbf942f
--- /dev/null
@@ -0,0 +1,563 @@
+.\" 
+.\" Copyright (c) 2007 Massachusetts Institute of Technology
+.\" 
+.\" Copying and distribution of this file, with or without modification,
+.\" are permitted in any medium without royalty provided the copyright
+.\" notice and this notice are preserved.
+.\"
+.TH NLOPT_MINIMIZE_CONSTRAINED 3  2007-08-23 "MIT" "NLopt programming manual"
+.SH NAME
+nlopt_minimize_constrained \- Minimize a multivariate nonlinear function subject to nonlinear constraints
+.SH SYNOPSIS
+.nf
+.B #include <nlopt.h>
+.sp
+.BI "nlopt_result nlopt_minimize_constrained(nlopt_algorithm " "algorithm" ,
+.br
+.BI "                            int " "n" ,
+.BI "                            nlopt_func " "f" ,
+.BI "                            void* " "f_data" ,
+.BI "                            int " "m" ,
+.BI "                            nlopt_func " "c" ,
+.BI "                            void* " "fc_data" ,
+.BI "                            ptrdiff_t " "fc_datum_size" ,
+.BI "                            const double* " "lb" ,
+.BI "                            const double* " "ub" ,
+.BI "                            double* " "x" ,
+.BI "                            double* " "minf" ,
+.BI "                            double " "minf_max" ,
+.BI "                            double " "ftol_rel" ,
+.BI "                            double " "ftol_abs" ,
+.BI "                            double " "xtol_rel" ,
+.BI "                            const double* " "xtol_abs" ,
+.BI "                            int " "maxeval" ,
+.BI "                            double " "maxtime" );
+.sp
+You should link the resulting program with the linker flags
+-lnlopt -lm on Unix.
+.fi
+.SH DESCRIPTION
+.BR nlopt_minimize_constrained ()
+attempts to minimize a nonlinear function
+.I f
+of
+.I n
+design variables, subject to 
+.I m
+nonlinear constraints described by the function
+.I fc
+(see below), using the specified
+.IR algorithm .
+The minimum function value found is returned in
+.IR minf ,
+with the corresponding design variable values returned in the array
+.I x
+of length
+.IR n .
+The input values in
+.I x
+should be a starting guess for the optimum.
+The inputs
+.I lb
+and
+.I ub
+are arrays of length
+.I n
+containing lower and upper bounds, respectively, on the design variables
+.IR x .
+The other parameters specify stopping criteria (tolerances, the maximum
+number of function evaluations, etcetera) and other information as described
+in more detail below.  The return value is a integer code indicating success
+(positive) or failure (negative), as described below.
+.PP
+By changing the parameter
+.I algorithm
+among several predefined constants described below, one can switch easily
+between a variety of minimization algorithms.  Some of these algorithms
+require the gradient (derivatives) of the function to be supplied via
+.IR f ,
+and other algorithms do not require derivatives.  Some of the
+algorithms attempt to find a global minimum within the given bounds,
+and others find only a local minimum.  Some of the algorithms can handle
+nonlinear constraints, but most of the algorithms only handle the
+case where
+.I m
+is zero (no explicit nonlinear constraints).
+.PP
+The
+.B nlopt_minimize_constrained
+function is a wrapper around several free/open-source minimization packages,
+as well as some new implementations of published optimization algorithms.
+You could, of course, compile and call these packages separately, and in
+some cases this will provide greater flexibility than is available via the
+.B nlopt_minimize_constrained
+interface.  However, depending upon the specific function being minimized,
+the different algorithms will vary in effectiveness.  The intent of
+.B nlopt_minimize_constrained
+is to allow you to quickly switch between algorithms in order to experiment
+with them for your problem, by providing a simple unified interface to
+these subroutines.
+.SH OBJECTIVE FUNCTION
+.BR nlopt_minimize_constrained ()
+minimizes an objective function
+.I f
+of the form:
+.sp
+.BI "      double f(int " "n" , 
+.br
+.BI "               const double* " "x" , 
+.br
+.BI "               double* " "grad" , 
+.br
+.BI "               void* " "f_data" );
+.sp
+The return value should be the value of the function at the point
+.IR x ,
+where
+.I x
+points to an array of length
+.I n
+of the design variables.  The dimension
+.I n
+is identical to the one passed to
+.BR nlopt_minimize_constrained ().
+.sp
+In addition, if the argument
+.I grad
+is not NULL, then
+.I grad
+points to an array of length
+.I n
+which should (upon return) be set to the gradient of the function with
+respect to the design variables at
+.IR x .
+That is,
+.IR grad[i]
+should upon return contain the partial derivative df/dx[i],
+for 0 <= i < n, if
+.I grad
+is non-NULL.
+Not all of the optimization algorithms (below) use the gradient information:
+for algorithms listed as "derivative-free," the 
+.I grad
+argument will always be NULL and need never be computed.  (For
+algorithms that do use gradient information, however,
+.I grad
+may still be NULL for some calls.)
+.sp
+The 
+.I f_data
+argument is the same as the one passed to 
+.BR nlopt_minimize_constrained (),
+and may be used to pass any additional data through to the function.
+(That is, it may be a pointer to some caller-defined data
+structure/type containing information your function needs, which you
+convert from void* by a typecast.)
+.sp
+.SH BOUND CONSTRAINTS
+Most of the algorithms in NLopt are designed for minimization of functions
+with simple bound constraints on the inputs.  That is, the input vectors
+x[i] are constrainted to lie in a hyperrectangle lb[i] <= x[i] <= ub[i] for
+0 <= i < n, where
+.I lb
+and
+.I ub
+are the two arrays passed to
+.BR nlopt_minimize_constrained ().
+.sp
+However, a few of the algorithms support partially or totally
+unconstrained optimization, as noted below, where a (totally or
+partially) unconstrained design variable is indicated by a lower bound
+equal to -Inf and/or an upper bound equal to +Inf.  Here, Inf is the
+IEEE-754 floating-point infinity, which (in ANSI C99) is represented by
+the macro INFINITY in math.h.  Alternatively, for older C versions
+you may also use the macro HUGE_VAL (also in math.h).
+.sp
+With some of the algorithms, especially those that do not require
+derivative information, a simple (but not especially efficient) way
+to implement arbitrary nonlinear constraints is to return Inf (see
+above) whenever the constraints are violated by a given input
+.IR x .
+More generally, there are various ways to implement constraints
+by adding "penalty terms" to your objective function, which are
+described in the optimization literature.
+A much more efficient way to specify nonlinear constraints is described
+below, but is only supported by a small subset of the algorithms.
+.SH NONLINEAR CONSTRAINTS
+The
+.B nlopt_minimize_constrained
+function also allows you to specify
+.I m
+nonlinear constraints via the function
+.IR fc ,
+where
+.I m
+is any nonnegative integer.  However, nonzero
+.I m
+is currently only supported by the
+.B NLOPT_LD_MMA
+algorithm below.
+.sp
+In particular, the nonlinear constraints are of the form 
+\fIfc\fR(\fIx\fR) <= 0, where the function
+.I fc
+is of the same form as the objective function described above:
+.sp
+.BI "      double fc(int " "n" , 
+.br
+.BI "                const double* " "x" , 
+.br
+.BI "                double* " "grad" , 
+.br
+.BI "                void* " "fc_datum" );
+.sp
+The return value should be the value of the constraint at the point
+.IR x ,
+where
+the dimension
+.I n
+is identical to the one passed to
+.BR nlopt_minimize_constrained ().
+As for the objective function, if the argument
+.I grad
+is not NULL, then
+.I grad
+points to an array of length
+.I n
+which should (upon return) be set to the gradient of the function with
+respect to 
+.IR x .
+(For any algorithm listed as "derivative-free" below, the
+.I grad
+argument will always be NULL and need never be computed.)
+.sp
+The 
+.I fc_datum
+argument is based on the
+.I fc_data
+argument passed to
+.BR nlopt_minimize_constrained (),
+and may be used to pass any additional data through to the function,
+and is used to distinguish between different constraints.
+.sp
+In particular, the constraint function
+.I fc
+will be called
+.I m
+times for each
+.IR x ,
+and the i-th constraint (0 <= i <= 
+.IR m )
+will be passed an
+.I fc_datum
+argument equal to
+.I fc_data
+offset by i * 
+.IR fc_datum_size .
+For example, suppose that you have a data structure of type "foo"
+that describes the data needed by each constraint, and you store
+the information for the constraints in an array "foo data[m]".  In
+this case, you would pass "data" as the
+.I fc_data
+parameter to
+.BR nlopt_minimize_constrained ,
+and "sizeof(foo)" as the 
+.I fc_datum_size
+parameter.  Then, your 
+.I fc
+function would be called 
+.I m
+times for each point, and be passed data[0] through data[m-1] in sequence.
+.SH ALGORITHMS
+The 
+.I algorithm
+parameter specifies the optimization algorithm (for more detail on
+these, see the README files in the source-code subdirectories), and
+can take on any of the following constant values.  Constants with
+.B _G{N,D}_
+in their names
+refer to global optimization methods, whereas
+.B _L{N,D}_
+refers to local optimization methods (that try to find a local minimum
+starting from the starting guess
+.IR x ).
+Constants with
+.B _{G,L}N_
+refer to non-gradient (derivative-free) algorithms that do not require the
+objective function to supply a gradient, whereas
+.B _{G,L}D_
+refers to derivative-based algorithms that require the objective
+function to supply a gradient.  (Especially for local optimization,
+derivative-based algorithms are generally superior to derivative-free
+ones: the gradient is good to have 
+.I if 
+you can compute it cheaply, e.g. via an adjoint method.)
+.TP 
+.B NLOPT_GN_DIRECT_L
+Perform a global (G) derivative-free (N) optimization using the
+DIRECT-L search algorithm by Jones et al. as modified by Gablonsky et
+al. to be more weighted towards local search.  Does not support
+unconstrainted optimization.  There are also several other variants of
+the DIRECT algorithm that are supported:
+.BR NLOPT_GLOBAL_DIRECT ,
+which is the original DIRECT algorithm;
+.BR NLOPT_GLOBAL_DIRECT_L_RAND ,
+a slightly randomized version of DIRECT-L that may be better in
+high-dimensional search spaces;
+.BR NLOPT_GLOBAL_DIRECT_NOSCAL ,
+.BR NLOPT_GLOBAL_DIRECT_L_NOSCAL ,
+and
+.BR NLOPT_GLOBAL_DIRECT_L_RAND_NOSCAL ,
+which are versions of DIRECT where the dimensions are not rescaled to
+a unit hypercube (which means that dimensions with larger bounds are
+given more weight).
+.TP 
+.B NLOPT_GN_ORIG_DIRECT_L
+A global (G) derivative-free optimization using the DIRECT-L algorithm
+as above, along with
+.B NLOPT_GN_ORIG_DIRECT
+which is the original DIRECT algorithm.  Unlike 
+.B NLOPT_GN_DIRECT_L 
+above, these two algorithms refer to code based on the original
+Fortran code of Gablonsky et al., which has some hard-coded
+limitations on the number of subdivisions etc. and does not support
+all of the NLopt stopping criteria, but on the other hand supports
+arbitrary nonlinear constraints as described above.
+.TP 
+.B NLOPT_GD_STOGO
+Global (G) optimization using the StoGO algorithm by Madsen et al.  StoGO
+exploits gradient information (D) (which must be supplied by the
+objective) for its local searches, and performs the global search by a
+branch-and-bound technique.  Only bound-constrained optimization
+is supported.  There is also another variant of this algorithm,
+.BR NLOPT_GD_STOGO_RAND ,
+which is a randomized version of the StoGO search scheme.  The StoGO
+algorithms are only available if NLopt is compiled with C++ enabled,
+and should be linked via -lnlopt_cxx (via a C++ compiler, in order
+to link the C++ standard libraries).
+.TP 
+.B NLOPT_LN_SUBPLEX
+Perform a local (L) derivative-free (N) optimization, starting at
+.IR x ,
+using the Subplex algorithm of Rowan et al., which is an improved
+variant of Nelder-Mead simplex algorithm.  (Like Nelder-Mead, Subplex
+often works well in practice, even for discontinuous objectives, but
+there is no rigorous guarantee that it will converge.)  Subplex is
+best for unconstrained optimization, but constrained optimization also
+works (both for simple bound constraints via
+.I lb
+and
+.I ub
+as well as nonlinear constraints as described above).
+.TP
+.B NLOPT_LN_PRAXIS
+Local (L) derivative-free (N) optimization using the principal-axis
+method, based on code by Richard Brent.  Designed for unconstrained
+optimization, although bound constraints are supported too (via a
+potentially inefficient method).
+.TP
+.B NLOPT_LD_LBFGS
+Local (L) gradient-based (D) optimization using the limited-memory BFGS
+(L-BFGS) algorithm.  (The objective function must supply the
+gradient.)  Unconstrained optimization is supported in addition to
+simple bound constraints (see above).  Based on an implementation by
+Luksan et al.
+.TP
+.B NLOPT_LD_VAR2
+Local (L) gradient-based (D) optimization using a shifted limited-memory
+variable-metric method based on code by Luksan et al., supporting both
+unconstrained and bound-constrained optimization.  
+.B NLOPT_LD_VAR2
+uses a rank-2 method, while 
+.B .B NLOPT_LD_VAR1
+is another variant using a rank-1 method.
+.TP
+.B NLOPT_LD_TNEWTON_PRECOND_RESTART
+Local (L) gradient-based (D) optimization using an
+LBFGS-preconditioned truncated Newton method with steepest-descent
+restarting, based on code by Luksan et al., supporting both
+unconstrained and bound-constrained optimization.  There are several
+other variants of this algorithm:
+.B NLOPT_LD_TNEWTON_PRECOND 
+(same without restarting), 
+.B NLOPT_LD_TNEWTON_RESTART
+(same without preconditioning), and
+.B NLOPT_LD_TNEWTON
+(same without restarting or preconditioning).
+.TP
+.B NLOPT_GN_CRS2_LM
+Global (G) derivative-free (N) optimization using controlled random
+search (CRS2) algorithm of Price, with the "local mutation" (LM)
+modification suggested by Kaelo and Ali.
+.TP
+\fBNLOPT_GD_MLSL_LDS\fR, \fBNLOPT_GN_MLSL_LDS\fR
+Global (G) derivative-based (D) or derivative-free (N) optimization
+using the multi-level single-linkage (MLSL) algorithm with a
+low-discrepancy sequence (LDS).  This algorithm executes a quasi-random
+(LDS) sequence of local searches, with a clustering heuristic to
+avoid multiple local searches for the same local minimum.  The local
+search uses the derivative/nonderivative algorithm set by
+.I nlopt_set_local_search_algorithm
+(currently defaulting to
+.I NLOPT_LD_LBFGS
+and
+.I NLOPT_LN_SUBPLEX
+for derivative/nonderivative searches, respectively).  There are also
+two other variants, \fBNLOPT_GD_MLSL\fR and \fBNLOPT_GN_MLSL\fR, which use
+pseudo-random numbers (instead of an LDS) as in the original MLSL algorithm.
+.TP
+.B NLOPT_LD_MMA
+Local (L) gradient-based (D) optimization using the method of moving
+asymptotes (MMA), or rather a refined version of the algorithm as
+published by Svanberg (2002).  (NLopt uses an independent free
+implementation of Svanberg's algorithm.)  The
+.B NLOPT_LD_MMA
+algorithm supports both bound-constrained and unconstrained optimization,
+and also supports an arbitrary number (\fIm\fR) of nonlinear constraints
+as described above.
+.SH STOPPING CRITERIA
+Multiple stopping criteria for the optimization are supported, as
+specified by the following arguments to
+.BR nlopt_minimize_constrained ().
+The optimization halts whenever any one of these criteria is
+satisfied.  In some cases, the precise interpretation of the stopping
+criterion depends on the optimization algorithm above (although we
+have tried to make them as consistent as reasonably possible), and
+some algorithms do not support all of the stopping criteria.
+.sp
+Important: you do not need to use all of the stopping criteria!  In most
+cases, you only need one or two, and can set the remainder to values where
+they do nothing (as described below).
+.TP
+.B minf_max
+Stop when a function value less than or equal to
+.I minf_max
+is found.  Set to -Inf or NaN (see constraints section above) to disable.
+.TP
+.B ftol_rel
+Relative tolerance on function value: stop when an optimization step
+(or an estimate of the minimum) changes the function value by less
+than
+.I ftol_rel
+multiplied by the absolute value of the function value.  (If there is any chance that your minimum function value is close to zero, you might want to set an absolute tolerance with
+.I ftol_abs
+as well.)  Disabled if non-positive.
+.TP
+.B ftol_abs
+Absolute tolerance on function value: stop when an optimization step
+(or an estimate of the minimum) changes the function value by less
+than
+.IR ftol_abs .
+Disabled if non-positive.
+.TP
+.B xtol_rel
+Relative tolerance on design variables: stop when an optimization step
+(or an estimate of the minimum) changes every design variable by less
+than
+.I xtol_rel
+multiplied by the absolute value of the design variable.  (If there is
+any chance that an optimal design variable is close to zero, you
+might want to set an absolute tolerance with
+.I xtol_abs
+as well.)  Disabled if non-positive.
+.TP
+.B xtol_abs
+Pointer to an array of length
+.I
+n giving absolute tolerances on design variables: stop when an
+optimization step (or an estimate of the minimum) changes every design
+variable
+.IR x [i]
+by less than
+.IR xtol_abs [i].
+Disabled if non-positive, or if
+.I xtol_abs
+is NULL.
+.TP
+.B maxeval
+Stop when the number of function evaluations exceeds
+.IR maxeval .
+(This is not a strict maximum: the number of function evaluations may
+exceed
+.I maxeval 
+slightly, depending upon the algorithm.)  Disabled
+if non-positive.
+.TP
+.B maxtime
+Stop when the optimization time (in seconds) exceeds
+.IR maxtime .
+(This is not a strict maximum: the time may
+exceed
+.I maxtime
+slightly, depending upon the algorithm and on how slow your function
+evaluation is.)  Disabled if non-positive.
+.SH RETURN VALUE
+The value returned is one of the following enumerated constants.
+.SS Successful termination (positive return values):
+.TP
+.B NLOPT_SUCCESS
+Generic success return value.
+.TP
+.B NLOPT_MINF_MAX_REACHED
+Optimization stopped because
+.I minf_max
+(above) was reached.
+.TP
+.B NLOPT_FTOL_REACHED
+Optimization stopped because
+.I ftol_rel
+or
+.I ftol_abs
+(above) was reached.
+.TP
+.B NLOPT_XTOL_REACHED
+Optimization stopped because
+.I xtol_rel
+or
+.I xtol_abs
+(above) was reached.
+.TP
+.B NLOPT_MAXEVAL_REACHED
+Optimization stopped because
+.I maxeval
+(above) was reached.
+.TP
+.B NLOPT_MAXTIME_REACHED
+Optimization stopped because
+.I maxtime
+(above) was reached.
+.SS Error codes (negative return values):
+.TP
+.B NLOPT_FAILURE
+Generic failure code.
+.TP
+.B NLOPT_INVALID_ARGS
+Invalid arguments (e.g. lower bounds are bigger than upper bounds, an
+unknown algorithm was specified, etcetera).
+.TP
+.B NLOPT_OUT_OF_MEMORY
+Ran out of memory.
+.SH PSEUDORANDOM NUMBERS
+For stochastic optimization algorithms, we use pseudorandom numbers generated
+by the Mersenne Twister algorithm, based on code from Makoto Matsumoto.
+By default, the seed for the random numbers is generated from the system
+time, so that they will be different each time you run the program.  If
+you want to use deterministic random numbers, you can set the seed by
+calling:
+.sp
+.BI "            void nlopt_srand(unsigned long " "seed" );
+.sp
+Some of the algorithms also support using low-discrepancy sequences (LDS),
+sometimes known as quasi-random numbers.  NLopt uses the Sobol LDS, which
+is implemented for up to 1111 dimensions.
+.SH BUGS
+Currently the NLopt library is in pre-alpha stage.  Most algorithms
+currently do not support all termination conditions: the only
+termination condition that is consistently supported right now is
+.BR maxeval .
+.SH AUTHORS
+Written by Steven G. Johnson.
+.PP
+Copyright (c) 2007-2008 Massachusetts Institute of Technology.
+.SH "SEE ALSO"
+nlopt_minimize(3)
index 07fa109cba02f15d79f0054eb4d5af6d9bb2a5f7..01c57c37ffd6065c79cab586a0cdae09bdd2d157 100644 (file)
@@ -5,13 +5,11 @@ algorithm for gradient-based local optimization, as described in:
        methods based on conservative convex separable approximations,"
        SIAM J. Optim. 12 (2), p. 555-573 (2002).
 
-However, in the case of NLopt, because we have no constraints other
-than the bound constraints on the input variables, MMA reduces to an
-extremely simple algorithm.  This doesn't mean it's a bad algorithm --
-it may be especially suited to topology optimization problems where
-the optimal design variables are almost always slammed against their
-constraints -- just that this implementation doesn't really do justice
-to the power of MMA for nonlinearly constrained problems.
+In fact, this algorithm is much more general than most of the other
+algorithms in NLopt, in that it handles an arbitrary set of nonlinear
+(differentiable) constraints as well, in a very efficient manner.
+I've implemented the full nonlinear-constrained MMA algorithm, and it
+is exported under the nlopt_minimize_constrained API.
 
 It is under the same MIT license as the rest of my code in NLopt (see
 ../COPYRIGHT).