General nonlinear programming solver.
For a list of all members of this type, see MinConNLP Members.
System.Object
Imsl.Math.MinConNLP
Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.
MinConNLP
is based on the FORTRAN subroutine, DONLP2
, by Peter Spellucci and licensed from TU Darmstadt. MinConNLP
uses a sequential equality constrained quadratic programming method with an active set technique, and an alternative usage of a fully regularized mixed constrained subproblem in case of nonregular constraints (i.e. linear dependent gradients in the "working sets"). It uses a slightly modified version of the Pantoja-Mayne update for the Hessian of the Lagrangian, variable dual scaling and an improved Armjijo-type stepsize algorithm. Bounds on the variables are treated in a gradient-projection like fashion. Details may be found in the following two papers:
P. Spellucci: An SQP method for general nonlinear programs using only equality constrained subproblems. Math. Prog. 82, (1998), 413-448.
P. Spellucci: A new technique for inconsistent problems in the SQP method. Math. Meth. of Oper. Res. 47, (1998), 355-500. (published by Physica Verlag, Heidelberg, Germany).
The problem is stated as follows:
subject to where all problem functions are assumed to be continuously differentiable. Although default values are provided for optional input arguments, it may be necessary to adjust these values for some problems. Through the use of member functions,MinConNLP
allows for several parameters of the algorithm to be adjusted to account for specific characteristics of problems. The
DONLP2
Users Guide provides detailed descriptions of these parameters as well as strategies for maximizing the performance of the algorithm. In addition, the following are a number of guidelines to consider when using MinConNLP
:
SetGuess
. MinConNLP
. Selecting a higher order approximation method may be necessary for some problems. See property DifferentiationType
. BindingThreshold
. ierr
provided in the interface to the user supplied function F
can be very useful in cases when evaluation is requested at a point that is not possible or reasonable. For example, if evaluation at the requested point would result in a floating point exception, then setting ierr
to true
and returning without performing the evaluation will avoid the exception. MinConNLP
will then reduce the stepsize and try the step again. Note, if ierr
is set to true
for the initial guess, then an error is issued. Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll)
MinConNLP Members | Imsl.Math Namespace | Finite-difference Example | Gradient Example