e04wd is designed to minimize an arbitrary smooth function subject to constraints (which may include simple bounds on the variables, linear constraints and smooth nonlinear constraints) using a sequential quadratic programming (SQP) method. As many first derivatives as possible should be supplied by you; any unspecified derivatives are approximated by finite differences. It is not intended for large sparse problems.
e04wd may also be used for unconstrained, bound-constrained and linearly constrained optimization.
e04wd uses forward communication for evaluating the objective function, the nonlinear constraint functions, and any of their derivatives.
The initialization method (E04WCF not in this release) must have been called before to calling e04wd.

Syntax

C#
public static void e04wd(
	int n,
	int nclin,
	int ncnln,
	double[,] a,
	double[] bl,
	double[] bu,
	E04..::..E04WD_CONFUN confun,
	E04..::..E04WD_OBJFUN objfun,
	out int majits,
	int[] istate,
	double[] ccon,
	double[,] cjac,
	double[] clamda,
	out double objf,
	double[] grad,
	double[,] h,
	double[] x,
	E04..::..e04wdOptions options,
	out int ifail
)
Visual Basic
Public Shared Sub e04wd ( _
	n As Integer, _
	nclin As Integer, _
	ncnln As Integer, _
	a As Double(,), _
	bl As Double(), _
	bu As Double(), _
	confun As E04..::..E04WD_CONFUN, _
	objfun As E04..::..E04WD_OBJFUN, _
	<OutAttribute> ByRef majits As Integer, _
	istate As Integer(), _
	ccon As Double(), _
	cjac As Double(,), _
	clamda As Double(), _
	<OutAttribute> ByRef objf As Double, _
	grad As Double(), _
	h As Double(,), _
	x As Double(), _
	options As E04..::..e04wdOptions, _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void e04wd(
	int n, 
	int nclin, 
	int ncnln, 
	array<double,2>^ a, 
	array<double>^ bl, 
	array<double>^ bu, 
	E04..::..E04WD_CONFUN^ confun, 
	E04..::..E04WD_OBJFUN^ objfun, 
	[OutAttribute] int% majits, 
	array<int>^ istate, 
	array<double>^ ccon, 
	array<double,2>^ cjac, 
	array<double>^ clamda, 
	[OutAttribute] double% objf, 
	array<double>^ grad, 
	array<double,2>^ h, 
	array<double>^ x, 
	E04..::..e04wdOptions^ options, 
	[OutAttribute] int% ifail
)
F#
static member e04wd : 
        n : int * 
        nclin : int * 
        ncnln : int * 
        a : float[,] * 
        bl : float[] * 
        bu : float[] * 
        confun : E04..::..E04WD_CONFUN * 
        objfun : E04..::..E04WD_OBJFUN * 
        majits : int byref * 
        istate : int[] * 
        ccon : float[] * 
        cjac : float[,] * 
        clamda : float[] * 
        objf : float byref * 
        grad : float[] * 
        h : float[,] * 
        x : float[] * 
        options : E04..::..e04wdOptions * 
        ifail : int byref -> unit 

Parameters

n
Type: System..::..Int32
On entry: n, the number of variables.
Constraint: n>0.
nclin
Type: System..::..Int32
On entry: nL, the number of general linear constraints.
Constraint: nclin0.
ncnln
Type: System..::..Int32
On entry: nN, the number of nonlinear constraints.
Constraint: ncnln0.
a
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, dim2]
Note: dim1 must satisfy the constraint: dim1max1,nclin
Note: the second dimension of the array a must be at least n if nclin>0, and at least 1 otherwise.
On entry: the ith row of a contains the ith row of the matrix AL of general linear constraints in (1). That is, the ith row contains the coefficients of the ith general linear constraint, for i=1,2,,nclin.
If nclin=0, the array a is not referenced.
bl
Type: array<System..::..Double>[]()[][]
An array of size [n+nclin+ncnln]
On entry: bl must contain the lower bounds and bu the upper bounds for all the constraints, in the following order. The first n elements of each array must contain the bounds on the variables, the next nL elements the bounds for the general linear constraints (if any) and the next nN elements the bounds for the general nonlinear constraints (if any). To specify a nonexistent lower bound (i.e., lj=-), set bl[j-1]-bigbnd, and to specify a nonexistent upper bound (i.e., uj=+), set bu[j-1]bigbnd; where bigbnd is the optional parameter Infinite Bound Size. To specify the jth constraint as an equality, set bl[j-1]=bu[j-1]=β, say, where β<bigbnd.
Constraints:
  • bl[j-1]bu[j-1], for j=1,2,,n+nclin+ncnln;
  • if bl[j-1]=bu[j-1]=β, β<bigbnd.
bu
Type: array<System..::..Double>[]()[][]
An array of size [n+nclin+ncnln]
On entry: bl must contain the lower bounds and bu the upper bounds for all the constraints, in the following order. The first n elements of each array must contain the bounds on the variables, the next nL elements the bounds for the general linear constraints (if any) and the next nN elements the bounds for the general nonlinear constraints (if any). To specify a nonexistent lower bound (i.e., lj=-), set bl[j-1]-bigbnd, and to specify a nonexistent upper bound (i.e., uj=+), set bu[j-1]bigbnd; where bigbnd is the optional parameter Infinite Bound Size. To specify the jth constraint as an equality, set bl[j-1]=bu[j-1]=β, say, where β<bigbnd.
Constraints:
  • bl[j-1]bu[j-1], for j=1,2,,n+nclin+ncnln;
  • if bl[j-1]=bu[j-1]=β, β<bigbnd.
confun
Type: NagLibrary..::..E04..::..E04WD_CONFUN
confun must calculate the vector cx of nonlinear constraint functions and (optionally) its Jacobian, cx, for a specified n-vector x. If there are no nonlinear constraints (i.e., ncnln=0), e04wd will never call confun, so it may be the dummy method E04WDP. (E04WDP is included in the NAG Library). If there are nonlinear constraints, the first call to confun will occur before the first call to objfun.
If all constraint gradients (Jacobian elements) are known (i.e., Derivative Level=2 or 3), any constant elements may be assigned to cjac once only at the start of the optimization. An element of cjac that is not subsequently assigned in confun will retain its initial value throughout. Constant elements may be loaded in cjac during the first call to confun (signalled by the value of nstate=1). The ability to preload constants is useful when many Jacobian elements are identically zero, in which case cjac may be initialized to zero and nonzero elements may be reset by confun.
It must be emphasized that, if Derivative Level<2, unassigned elements of cjac are not treated as constant; they are estimated by finite differences, at nontrivial expense.

A delegate of type E04WD_CONFUN.

confun should be tested separately before being used in conjunction with e04wd. See also the description of the optional parameter Verify Level.
objfun
Type: NagLibrary..::..E04..::..E04WD_OBJFUN
objfun must calculate the objective function Fx and (optionally) its gradient gx=Fx for a specified n-vector x.

A delegate of type E04WD_OBJFUN.

objfun should be tested separately before being used in conjunction with e04wd. See also the description of the optional parameter Verify Level.
majits
Type: System..::..Int32%
On exit: the number of major iterations performed.
istate
Type: array<System..::..Int32>[]()[][]
An array of size [n+nclin+ncnln]
On entry: is an integer array that need not be initialized if e04wd is called with the Cold Start option (the default).
If optional parameter Warm Start has been chosen, every element of istate must be set. If e04wd has just been called on a problem with the same dimensions, istate already contains valid values. Otherwise, istate[j-1] should indicate whether either of the constraints rjxlj or rjxuj is expected to be active at a solution of (1).
The ordering of istate is the same as for bl, bu and rx, i.e., the first n components of istate refer to the upper and lower bounds on the variables, the next nclin refer to the bounds on ALx, and the last ncnln refer to the bounds on cx. Possible values of istate[i-1] follow:
0Neither rjxlj nor rjxuj is expected to be active.
1rjxlj is expected to be active.
2rjxuj is expected to be active.
3This may be used if lj=uj. Normally an equality constraint rjx=lj=uj is active at a solution.
The values 1, 2 or 3 all have the same effect when bl[j-1]=bu[j-1]. If necessary, e04wd will override your specification of istate, so that a poor choice will not cause the algorithm to fail.
On exit: describes the status of the constraints lrxu. For the jth lower or upper bound, j=1,2,,n+nclin+ncnln, the possible values of istate[j-1] are as follows (see Figure 1). δ is the appropriate feasibility tolerance.
-2(Region 1) The lower bound is violated by more than δ.
-1(Region 5) The upper bound is violated by more than δ.
-0(Region 3) Both bounds are satisfied by more than δ.
-1(Region 2) The lower bound is active (to within δ).
-2(Region 4) The upper bound is active (to within δ).
-3(Region 2=Region 4) The bounds are equal and the equality constraint is satisfied (to within δ).
These values of istate are labelled in the printed solution according to Table 1.
Region1234524
istate[j-1]-2102-13
Printed solution--LLFRUL++EQ
Table 1
Labels used in the printed solution for the regions in Figure 1
ccon
Type: array<System..::..Double>[]()[][]
An array of size [max1,ncnln]
On entry: ccon need not be initialized if the (default) optional parameter Cold Start is used.
For a Warm Start, and if ncnln>0, ccon contains values of the nonlinear constraint functions ci, for i=1,2,,ncnln, calculated in a previous call to e04wd.
On exit: if ncnln>0, ccon[i-1] contains the value of the ith nonlinear constraint function ci at the final iterate, for i=1,2,,ncnln.
If ncnln=0, the array ccon is not referenced.
cjac
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, dim2]
Note: dim1 must satisfy the constraint: dim1max1,ncnln
Note: the second dimension of the array cjac must be at least n if ncnln>0, and at least 1 otherwise.
On entry: in general, cjac need not be initialized before the call to e04wd. However, if Derivative Level=2 or 3, any constant elements of cjac may be initialized. Such elements need not be reassigned on subsequent calls to confun.
On exit: if ncnln>0, cjac contains the Jacobian matrix of the nonlinear constraint functions at the final iterate, i.e., cjac[i-1,j-1] contains the partial derivative of the ith constraint function with respect to the jth variable, for i=1,2,,ncnln and j=1,2,,n. (See the discussion of parameter cjac under confun.)
If ncnln=0, the array cjac is not referenced.
clamda
Type: array<System..::..Double>[]()[][]
An array of size [n+nclin+ncnln]
On entry: need not be set if the (default) optional parameter Cold Start is used.
If the optional parameter Warm Start has been chosen, clamda[j-1] must contain a multiplier estimate for each nonlinear constraint, with a sign that matches the status of the constraint specified by the istate array, for j=n+nclin+1,,n+nclin+ncnln. The remaining elements need not be set. If the jth constraint is defined as ‘inactive’ by the initial value of the istate array (i.e., istate[j-1]=0), clamda[j-1] should be zero; if the jth constraint is an inequality active at its lower bound (i.e., istate[j-1]=1), clamda[j-1] should be non-negative; if the jth constraint is an inequality active at its upper bound (i.e., istate[j-1]=2), clamda[j-1] should be non-positive. If necessary, the method will modify clamda to match these rules.
On exit: the values of the QP multipliers from the last QP subproblem. clamda[j-1] should be non-negative if istate[j-1]=1 and non-positive if istate[j-1]=2.
objf
Type: System..::..Double%
On exit: the value of the objective function at the final iterate.
grad
Type: array<System..::..Double>[]()[][]
An array of size [n]
On exit: the gradient of the objective function (or its finite difference approximation) at the final iterate.
h
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, dim2]
Note: dim1 must satisfy the constraint: dim1n unless optional parameter Hessian Limited Memory is in effect
Note: the second dimension of the array h must be at least n unless the optional parameter Hessian Limited Memory is in effect. If Hessian Limited Memory is in effect, array h is not referenced.
On entry: h need not be initialized if the (default) optional parameter Cold Start is used, and will be set to the identity.
If the optional parameter Warm Start has been chosen, h provides the initial approximation of the Hessian of the Lagrangian, i.e., h[i-1,j-1]2Lx,λxixj, where Lx,λ=Fx-cxTλ and λ is an estimate of the Lagrange multipliers. h must be a positive definite matrix.
On exit: contains the Hessian of the Lagrangian at the final estimate x.
x
Type: array<System..::..Double>[]()[][]
An array of size [n]
On entry: an initial estimate of the solution.
On exit: the final estimate of the solution.
options
Type: NagLibrary..::..E04..::..e04wdOptions
An Object of type E04.e04wdOptions. Used to configure optional parameters to this method.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

e04wd is designed to solve nonlinear programming problems – the minimization of a smooth nonlinear function subject to a set of constraints on the variables. e04wd is suitable for small dense problems. The problem is assumed to be stated in the following form:
minimizexRnFx  subject to  lxALxcxu, (1)
where Fx (the objective function) is a nonlinear scalar function, AL is an nL by n constant matrix, and cx is an nN-vector of nonlinear constraint functions. (The matrix AL and the vector cx may be empty.) The objective function and the constraint functions are assumed to be smooth, here meaning at least twice-continuously differentiable. (The method of e04wd will usually solve (1) if there are only isolated discontinuities away from the solution.) We also write rx for the vector of combined functions:
rx=xALxcxT.
Note that although the bounds on the variables could be included in the definition of the linear constraints, we prefer to distinguish between them for reasons of computational efficiency. For the same reason, the linear constraints should not be included in the definition of the nonlinear constraints. Upper and lower bounds are specified for all the variables and for all the constraints. An equality constraint on ri can be specified by setting li=ui. If certain bounds are not present, the associated elements of l or u can be set to special values that will be treated as - or +. (See the description of the optional parameter Infinite Bound Size.)
Figure 1 illustrates the feasible region for the jth pair of constraints ljrjxuj. The quantity of δ is the Feasibility Tolerance, which can be set by you (see [Optional Parameters]). The constraints ljrjuj are considered ‘satisfied’ if rj lies in Regions 2, 3 or 4, and ‘inactive’ if rj lies in Region 3. The constraint rjlj is considered ‘active’ in Region 2, and ‘violated’ in Region 1. Similarly, rjuj is active in Region 4, and violated in Region 5. For equality constraints (lj=uj), Regions 2 and 4 are the same and Region 3 is empty.

  Illustration of the constraints lj≤rjx≤uj
Figure 1: Illustration of the constraints ljrjxuj 
If there are no nonlinear constraints in (1) and F is linear or quadratic, then it will generally be more efficient to use one of e04mfe04nc or e04nf. If the problem is large and sparse and does have nonlinear constraints, then e04vh should be used, since e04wd treats all matrices as dense.
You must supply an initial estimate of the solution to (1), together with methods that define Fx and cx with as many first partial derivatives as possible; unspecified derivatives are approximated by finite differences; see [Description of the Optional Parameters] for a discussion of the optional parameter Derivative Level.
The objective function is defined by objfun, and the nonlinear constraints are defined by confun. Note that if there are any nonlinear constraints then the first call to confun will precede the first call to objfun.
For maximum reliability, it is preferable for you to provide all partial derivatives (see Chapter 8 of Gill et al. (1981), for a detailed discussion). If all gradients cannot be provided, it is similarly advisable to provide as many as possible. While developing objfun and confun, the optional parameter Verify Level should be used to check the calculation of any known gradients.
The method used by e04wd is based on NPOPT, which is part of the SNOPT package described in Gill et al. (2005b), and the algorithm it uses is described in detail in [Algorithmic Details].

References

Eldersveld S K (1991) Large-scale sequential quadratic programming algorithms PhD Thesis Department of Operations Research, Stanford University, Stanford
Fourer R (1982) Solving staircase linear programs by the simplex method Math. Programming 23 274–313
Gill P E, Murray W and Saunders M A (2002) SNOPT: An SQP Algorithm for Large-scale Constrained Optimization 12 979–1006 SIAM J. Optim.
Gill P E, Murray W and Saunders M A (2005a) Users' guide for SQOPT 7: a Fortran package for large-scale linear and quadratic programming Report NA 05-1 Department of Mathematics, University of California, San Diego http://www.ccom.ucsd.edu/~peg/papers/sqdoc7.pdf
Gill P E, Murray W and Saunders M A (2005b) Users' guide for SNOPT 7.1: a Fortran package for large-scale linear nonlinear programming Report NA 05-2 Department of Mathematics, University of California, San Diego http://www.ccom.ucsd.edu/~peg/papers/sndoc7.pdf
Gill P E, Murray W, Saunders M A and Wright M H (1986) Users' guide for NPSOL (Version 4.0): a Fortran package for nonlinear programming Report SOL 86-2 Department of Operations Research, Stanford University
Gill P E, Murray W, Saunders M A and Wright M H (1992) Some theoretical properties of an augmented Lagrangian merit function Advances in Optimization and Parallel Computing (ed P M Pardalos) 101–128 North Holland
Gill P E, Murray W and Wright M H (1981) Practical Optimization Academic Press
Hock W and Schittkowski K (1981) Test Examples for Nonlinear Programming Codes. Lecture Notes in Economics and Mathematical Systems 187 Springer–Verlag

Error Indicators and Warnings

Note: e04wd may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface (LDA, LDCJ, LDH) In these cases, an error in another parameter has usually caused an incorrect value to be inferred.
ifail=1
The initialization method (E04WCF not in this release) has not been called or at least one of leniw and lenrw is less than 600.
ifail=2
An input parameter is invalid. The output message provides more details of the invalid argument.
ifail=3
Requested accuracy could not be achieved.
A feasible solution has been found, but the requested accuracy in the dual infeasibilities could not be achieved. An abnormal termination has occurred, but e04wd is within 10-2 of satisfying the Major Optimality Tolerance. Check that the Major Optimality Tolerance is not too small.
ifail=4
The problem appears to be infeasible.
When the constraints are linear, this message is based on a relatively reliable indicator of infeasibility. Feasibility is measured with respect to the upper and lower bounds on the variables and slacks. Among all the points satisfying the general constraints Ax-s=0 (see (5) and (6) in [Major Iterations]), there is apparently no point that satisfies the bounds on x and s. Violations as small as the Minor Feasibility Tolerance are ignored, but at least one component of x or s violates a bound by more than the tolerance.
When nonlinear constraints are present, infeasibility is much harder to recognize correctly. Even if a feasible solution exists, the current linearization of the constraints may not contain a feasible point. In an attempt to deal with this situation, when solving each QP subproblem, e04wd is prepared to relax the bounds on the slacks associated with nonlinear rows.
If a QP subproblem proves to be infeasible or unbounded (or if the Lagrange multiplier estimates for the nonlinear constraints become large), e04wd enters so-called ‘nonlinear elastic’ mode. The subproblem includes the original QP objective and the sum of the infeasibilities – suitably weighted using the optional parameter Elastic Weight. In elastic mode, some of the bounds on the nonlinear rows are ‘elastic’ – i.e., they are allowed to violate their specific bounds. Variables subject to elastic bounds are known as elastic variables. An elastic variable is free to violate one or both of its original upper or lower bounds. If the original problem has a feasible solution and the elastic weight is sufficiently large, a feasible point eventually will be obtained for the perturbed constraints, and optimization can continue on the subproblem. If the nonlinear problem has no feasible solution, e04wd will tend to determine a ‘good’ infeasible point if the elastic weight is sufficiently large. (If the elastic weight were infinite, e04wd would locally minimize the nonlinear constraint violations subject to the linear constraints and bounds.)
Unfortunately, even though e04wd locally minimizes the nonlinear constraint violations, there may still exist other regions in which the nonlinear constraints are satisfied. Wherever possible, nonlinear constraints should be defined in such a way that feasible points are known to exist when the constraints are linearized.
ifail=5
The problem appears to be unbounded (or badly scaled).
For linear problems, unboundedness is detected by the simplex method when a nonbasic variable can be increased or decreased by an arbitrary amount without causing a basic variable to violate a bound. Consider adding an upper or lower bound to the variable. Also, examine the constraints that have nonzeros in the associated column, to see if they have been formulated as intended.
Very rarely, the scaling of the problem could be so poor that numerical error will give an erroneous indication of unboundedness. Consider using the optional parameter Scale Option.
For nonlinear problems, e04wd monitors both the size of the current objective function and the size of the change in the variables at each step. If either of these is very large (as judged by the unbounded parameters (see [Major Iteration Log])), the problem is terminated and declared unbounded. To avoid large function values, it may be necessary to impose bounds on some of the variables in order to keep them away from singularities in the nonlinear functions.
The message may indicate an abnormal termination while enforcing the limit on the constraint violations. This exit implies that the objective is not bounded below in the feasible region defined by expanding the bounds by the value of the Violation Limit.
ifail=6
Iteration limit reached.
Either the Iterations Limit or the Major Iterations Limit was exceeded before the required solution could be found. Check the iteration log to be sure that progress was being made. If so, and if you caused a basis file to be saved by using the optional parameter New Basis File, consider restarting the run using the optional parameter Old Basis File to see whether further progress can be made. If you have no basis file available, you might rerun the problem after increasing the optional parameters Minor Iterations Limit and/or Major Iterations Limit.
If none of the above limits have been reached, this error may mean that the problem appears to be more nonlinear than anticipated. The current set of basic and superbasic variables have been optimized as much as possible and a pricing operation (where a nonbasic variable is selected to become superbasic) is necessary to continue, but it can't continue as the number of superbasic variables has already reached the limit specified by the optional parameter Superbasics Limit. In general, raise the Superbasics Limit s by a reasonable amount, bearing in mind the storage needed for the reduced Hessian. (The Reduced Hessian Dimension h will also increase to s unless specified otherwise, and the associated storage will be about 12s2 words.) In some cases you may have to set h<s to conserve storage, but beware that the rate of convergence will probably fall off severely.
ifail=7
Numerical difficulties have been encountered and no further progress can be made.
Several circumstances could lead to this exit.
1. The user-supplied delegates objfun or confun could be returning accurate function values but inaccurate gradients (or vice versa). This is the most likely cause. Study the comments given for ifail=8, and do your best to ensure that the coding is correct.
2. The function and gradient values could be consistent, but their precision could be too low. For example, accidental use of a real data type when double precision was intended would lead to a relative function precision of about 10-6 instead of something like 10-15. The default Major Optimality Tolerance of 2×10-6 would need to be raised to about 10-3 for optimality to be declared (at a rather suboptimal point). Of course, it is better to revise the function coding to obtain as much precision as economically possible.
3. If function values are obtained from an expensive iterative process, they may be accurate to rather few significant figures, and gradients will probably not be available. One should specify but even then, if t is as large as 10-5 or 10-6 (only 5 or 6 significant figures), the same exit condition may occur. At present the only remedy is to increase the accuracy of the function calculation.
4. An LU factorization of the basis has just been obtained and used to recompute the basic variables xB, given the present values of the superbasic and nonbasic variables. A step of ‘iterative refinement’ has also been applied to increase the accuracy of xB. However, a row check has revealed that the resulting solution does not satisfy the current constraints Ax-s=0 sufficiently well.
This probably means that the current basis is very ill-conditioned. If there are some linear constraints and variables, try Scale Option=1 if scaling has not yet been used.
For certain highly structured basis matrices (notably those with band structure), a systematic growth may occur in the factor U. Consult the description of Umax and Growth in [Basis Factorization Statistics] and set the LU Factor Tolerance to 2.0 (or possibly even smaller, but not less than 1.0).
5. The first factorization attempt will have found the basis to be structurally or numerically singular. (Some diagonals of the triangular matrix U were respectively zero or smaller than a certain tolerance.) The associated variables are replaced by slacks and the modified basis is refactorized, but singularity persists. This must mean that the problem is badly scaled, or the LU Factor Tolerance is too much larger than 1.0. This is highly unlikely to occur.
ifail=8
Derivative appears to be incorrect.
If the message refers to the derivatives of the objective function, then a check has been made on some individual elements of the objective gradient array at the first point that satisfies the linear constraints. At least one component gradj-1 is being set to a value that disagrees markedly with its associated forward-difference estimate Fxj. (The relative difference between the computed and estimated values is 1.0 or more.) This exit is a safeguard, since e04wd will usually fail to make progress when the computed gradients are seriously inaccurate. In the process it may expend considerable effort before terminating with ifail=7.
Check the function and gradient computation very carefully in objfun. A simple omission could explain everything. If F or a component Fxj is very large, then give serious thought to scaling the function or the nonlinear variables.
If you feel certain that the computed grad[j-1] is correct (and that the forward-difference estimate is therefore wrong), you can specify Verify Level=0 to prevent individual elements from being checked. However, the optimization procedure may have difficulty.
If the message refers to derivatives of the constraints, then at least one of the computed constraint derivatives is significantly different from an estimate obtained by forward-differencing the vector cx. Follow the advice given above, trying to ensure that the arrays ccon and cjac are being set correctly in confun.
ifail=9
Undefined user-supplied function.
You have indicated that the problem functions are undefined by assigning the value mode=-1 on exit from objfun or confun. e04wd attempts to evaluate the problem functions closer to a point at which the functions are already known to be defined. This exit occurs if e04wd is unable to find a point at which the functions are defined. This will occur in the case of:
undefined functions with no recovery possible;
undefined functions at the first point;
undefined functions at the first feasible point; or
undefined functions when checking derivatives.
ifail=10
User requested termination.
You have indicated the wish to terminate solution of the current problem by setting mode to a value <-1 on exit from objfun or confun.
ifail=11
Internal memory allocation failed when attempting to obtain the required workspace. Please contact NAG.
ifail=12
Internal memory allocation was insufficient. Please contact NAG.
ifail=13
An error has occurred in the basis package, perhaps indicating incorrect setup of arrays. Set the optional parameter Print File and examine the output carefully for further information.
ifail=14
An unexpected error has occurred. Set the optional parameter Print File and examine the output carefully for further information.
ifail=-9000
An error occured, see message report.
ifail=-6000
Invalid Parameters value
ifail=-4000
Invalid dimension for array value
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

If ifail=0 on exit, then the vector returned in the array x is an estimate of the solution to an accuracy of approximately Major Optimality Tolerance.

Parallelism and Performance

None.

Further Comments

This section describes the final output produced by e04wd. Intermediate and other output are given in [Description of Monitoring Information].

The Final Output

If Print File>0, the final output, including a listing of the status of every variable and constraint will be sent to the channel numbers associated with Print File. The following describes the output for each variable. A full stop (.) is printed for any numerical value that is zero.
Variable gives the name (Variable) and index j, for j=1,2,,n, of the variable.
State gives the state of the variable (FR if neither bound is in the working set, EQ if a fixed variable, LL if on its lower bound, UL if on its upper bound, TF if temporarily fixed at its current value). If Value lies outside the upper or lower bounds by more than the Feasibility Tolerance, State will be ++ or -- respectively. (The latter situation can occur only when there is no feasible point for the bounds and linear constraints.)
A key is sometimes printed before State.
A Alternative optimum possible. The variable is active at one of its bounds, but its Lagrange multiplier is essentially zero. This means that if the variable were allowed to start moving away from its bound then there would be no change to the objective function. The values of the other free variables might change, giving a genuine alternative solution. However, if there are any degenerate variables (labelled D), the actual change might prove to be zero, since one of them could encounter a bound immediately. In either case the values of the Lagrange multipliers might also change.
D Degenerate. The variable is free, but it is equal to (or very close to) one of its bounds.
I Infeasible. The variable is currently violating one of its bounds by more than the Feasibility Tolerance.
Value is the value of the variable at the final iteration.
Lower bound is the lower bound specified for the variable. None indicates that bl[j-1]-bigbnd.
Upper bound is the upper bound specified for the variable. None indicates that bu[j-1]bigbnd.
Lagr multiplier is the Lagrange multiplier for the associated bound. This will be zero if State is FR unless bl[j-1]-bigbnd and bu[j-1]bigbnd, in which case the entry will be blank. If x is optimal, the multiplier should be non-negative if State is LL and non-positive if State is UL.
Slack is the difference between the variable Value and the nearer of its (finite) bounds bl[j-1] and bu[j-1]. A blank entry indicates that the associated variable is not bounded (i.e., bl[j-1]-bigbnd and bu[j-1]bigbnd).
The meaning of the output for linear and nonlinear constraints is the same as that given above for variables, with bl[j-1] and bu[j-1] replaced by bl[n+j-1] and bu[n+j-1] respectively, and with the following changes in the heading:
Linear constrnt gives the name (lincon) and index j, for j=1,2,,nL, of the linear constraint.
Nonlin constrnt gives the name (nlncon) and index (j-nL), for j=nL+1,,nL+nN, of the nonlinear constraint.
Note that movement off a constraint (as opposed to a variable moving away from its bound) can be interpreted as allowing the entry in the Slack column to become positive.
Numerical values are output with a fixed number of digits; they are not guaranteed to be accurate to this precision.

Example

This example is based on Problem 71 in Hock and Schittkowski (1981) and involves the minimization of the nonlinear function
Fx=x1x4x1+x2+x3+x3
subject to the bounds
1x151x251x351x45,
to the general linear constraint
x1+x2+x3+x420,
and to the nonlinear constraints
x12+x22+x32+x4240,x1x2x3x425.
The initial point, which is infeasible, is
x0=1,5,5,1T,
with Fx0=16.
The optimal solution (to five figures) is
x*=1.0,4.7430,3.8211,1.3794T,
and Fx*=17.014. One bound constraint and both nonlinear constraints are active at the solution.

Example program (C#): e04wde.cs

Example program data: e04wde.d

Example program results: e04wde.r

Algorithmic Details

Here we summarise the main features of the SQP algorithm used in e04wd and introduce some terminology used in the description of the method and its arguments. The SQP algorithm is fully described in Gill et al. (2002).

Constraints and Slack Variables

The upper and lower bounds on the nL+nN components of ALxcx are said to define the general constraints of the problem. e04wd converts the general constraints to equalities by introducing a set of slack variables s=s1,s2,,snL+nNT. For example, the linear constraint 52x1+3x2 is replaced by 2x1+3x2-s1=0 together with the bounded slack 5s1. The minimization problem (1) can therefore be written in the equivalent form
minimizex,sFx subject to ​ALxcx-s=0, lxsu. (2)
The general constraints become the equalities ALx-sL=0 and cx-sN=0, where sL and sN are the linear and nonlinear slacks.

Major Iterations

The basic structure of the SQP algorithm involves major and minor iterations. The major iterations generate a sequence of iterates xk that satisfy the linear constraints and converge to a point that satisfies the nonlinear constraints and the first-order conditions for optimality. At each iterate xk a QP subproblem is used to generate a search direction towards the next iterate xk+1. The constraints of the subproblem are formed from the linear constraints ALx-sL=0 and the linearized constraint
cxk+cxkx-xk-sN=0, (3)
where cxk denotes the Jacobian matrix, whose elements are the first derivatives of cx evaluated at xk. The QP constraints therefore comprise the nL+nN linear constraints
ALx-sL=0,cxkx-sN=-cxk+cxkxk, (4)
where x and s are bounded above and below by u and l as before. If the nL+nN×n matrix A and nL+nN-vector b are defined as
A=ALcxk and b=0-cxk+cxkxk, (5)
then the QP subproblem can be written as
minimizex,sqx,xk=gkTx-xk+12x-xkHkx-xk subject to ​Ax-s=b, lxsu, (6)
where qx,xk is a quadratic approximation to a modified Lagrangian function (see Gill et al. (2002)). The matrix Hk is a quasi-Newton approximation to the Hessian of the Lagrangian. A BGFS update is applied after each major iteration. If some of the variables enter the Lagrangian linearly the Hessian will have some zero rows and columns. If the nonlinear variables appear first, then only the leading nN rows and columns of the Hessian need to be approximated.

Minor Iterations

Solving the QP subproblem is itself an iterative procedure. Here, the iterations of the QP solver e04nq form the minor iterations of the SQP method. e04nq uses a reduced-Hessian active-set method implemented as a reduced-gradient method. At each minor iteration, the constraints Ax-s=b are partitioned into the form
BxB+SxS+NxN=b, (7)
where the basis matrix B is square and nonsingular, and the matrices S and N are the remaining columns of A-I. The vectors xB, xS and xN are the associated basic, superbasic and nonbasic variables respectively; they are a permutation of the elements of x and s. At a QP subproblem, the basic and superbasic variables will lie somewhere between their bounds, while the nonbasic variables will normally be equal to one of their bounds. At each iteration, xS is regarded as a set of independent variables that are free to move in any desired direction, namely one that will improve the value of the QP objective (or the sum of infeasibilities). The basic variables are then adjusted in order to ensure that x,s continues to satisfy Ax-s=b. The number of superbasic variables (nS, say) therefore indicates the number of degrees of freedom remaining after the constraints have been satisfied. In broad terms, nS is a measure of how nonlinear the problem is. In particular, nS will always be zero for LP problems.
If it appears that no improvement can be made with the current definition of B, S and N, a nonbasic variable is selected to be added to S, and the process is repeated with the value of nS increased by one. At all stages, if a basic or superbasic variable encounters one of its bounds, the variable is made nonbasic and the value of nS is decreased by one.
Associated with each of the nL+nN equality constraints Ax-s=b are the dual variables π. Similarly, each variable in x,s has an associated reduced gradient dj. The reduced gradients for the variables x are the quantities g-ATπ, where g is the gradient of the QP objective, and the reduced gradients for the slacks are the dual variables π. The QP subproblem is optimal if dj0 for all nonbasic variables at their lower bounds, dj0 for all nonbasic variables at their upper bounds, and dj=0 for other variables, including superbasics. In practice, an approximate QP solution x^k,s^k,π^k is found by relaxing these conditions.

The Merit Function

After a QP subproblem has been solved, new estimates of the solution are computed using a linesearch on the augmented Lagrangian merit function
Mx,s,π=Fx-πTcx-sN+12cx-sNTDcx-sN, (8)
where D is a diagonal matrix of penalty parameters Dii0, and π now refers to dual variables for the nonlinear constraints in (1). If xk,sk,πk denotes the current solution estimate and x^k,s^k,π^k denotes the QP solution, the linesearch determines a step αk 0<αk1 such that the new point
xk+1sk+1πk+1=xkskπk+αkx^k-xks^k-skπ^k-πk (9)
gives a sufficient decrease in the merit function M. When necessary, the penalties in D are increased by the minimum-norm perturbation that ensures descent for M (see Gill et al. (1992)). The value of sN is adjusted to minimize the merit function as a function of s before the solution of the QP subproblem (see Gill et al. (1986) and Eldersveld (1991)).

Treatment of Constraint Infeasibilities

e04wd makes explicit allowance for infeasible constraints. First, infeasible linear constraints are detected by solving the linear program
minimizex,v,weTv+w subject to ​lxALx-v+wu, v0, w0, (10)
where e is a vector of ones, and the nonlinear constraint bounds are temporarily excluded from l and u. This is equivalent to minimizing the sum of the general linear constraint violations subject to the bounds on x. (The sum is the 1-norm of the linear constraint violations. In the linear programming literature, the approach is called elastic programming.)
The linear constraints are infeasible if the optimal solution of (10) has v0 or w0. e04wd then terminates without computing the nonlinear functions.
Otherwise, all subsequent iterates satisfy the linear constraints. (Such a strategy allows linear constraints to be used to define a region in which the functions can be safely evaluated.) e04wd proceeds to solve nonlinear problems as given, using search directions obtained from the sequence of QP subproblems (see (6)).
If a QP subproblem proves to be infeasible or unbounded (or if the dual variables π for the nonlinear constraints become large), e04wd enters ‘elastic’ mode and thereafter solves the problem
minimizex,v,wFx+γeTv+w subject to ​lxALxcx-v+wu, v0, w0, (11)
where γ is a non-negative parameter (the elastic weight), and Fx+γeTv+w is called a composite objective (the 1 penalty function for the nonlinear constraints).
The value of γ may increase automatically by multiples of 10 if the optimal v and w continue to be nonzero. If γ is sufficiently large, this is equivalent to minimizing the sum of the nonlinear constraint violations subject to the linear constraints and bounds.
The initial value of γ is controlled by the optional parameter Elastic Weight.

Description of Monitoring Information

e04wd produces monitoring information, statistical information and information about the solution. [The Final Output] contains the final output information sent to unit Print File. This section contains other output information.

Major Iteration Log

This section describes the output to unit Print File if Major Print Level>0. One line of information is output every kth major iteration, where k is Print Frequency.
Label Description
Itns is the cumulative number of minor iterations.
Major is the current major iteration number.
Minors is the number of iterations required by both the feasibility and optimality phases of the QP subproblem. Generally, Minors will be 1 in the later iterations, since theoretical analysis predicts that the correct active set will be identified near the solution (see [Algorithmic Details]).
Step is the step length α taken along the current search direction p. The variables x have just been changed to x+αp. On reasonably well-behaved problems, the unit step will be taken as the solution is approached.
nCon or nObj nCon is the number of times confun has been called to evaluate the nonlinear problem functions. Evaluations needed for the estimation of the derivatives by finite differences are not included. nCon is printed as a guide to the amount of work required for the linesearch. If nN, the number of nonlinear constraints, is zero, nCon does not appear, but is replaced by nObj. This quantity is the number of calls made to objfun.
Feasible is the value of vmax (see (12)), the maximum component of the scaled nonlinear constraint residual (see the description of the optional parameter Major Feasibility Tolerance). The solution is regarded as acceptably feasible if Feasible is less than the Major Feasibility Tolerance. In this case, the entry is contained in parentheses.
If the constraints are linear, all iterates are feasible and this entry is not printed.
Optimal is the value of cmax (see (13)), the maximum complementary gap (see the description of the optional parameter Major Optimality Tolerance). It is an estimate of the degree of nonoptimality of the reduced costs. Both Feasible and Optimal are small in the neighbourhood of a solution.
MeritFunction or Objective is the value of the augmented Lagrangian merit function (see (8)). This function will decrease at each iteration unless it was necessary to increase the penalty parameters (see [The Merit Function]). As the solution is approached, MeritFunction will converge to the value of the objective at the solution.
In elastic mode, the merit function is a composite function involving the constraint violations weighted by the elastic weight.
If the constraints are linear, this item is labelled Objective, the value of the objective function. It will decrease monotonically to its optimal value.
L+U is the number of nonzeros representing the basis factors L and U on completion of the QP subproblem.
If nonlinear constraints are present, the basis factorization B=LU is computed at the start of the first minor iteration. At this stage, L+U=lenL+lenU, where lenL (see [Basis Factorization Statistics]) is the number of subdiagonal elements in the columns of a lower triangular matrix and lenU (see [Basis Factorization Statistics]) is the number of diagonal and superdiagonal elements in the rows of an upper-triangular matrix.
As columns of B are replaced during the minor iterations, L+U may fluctuate up or down but, in general, will tend to increase. As the solution is approached and the minor iterations decrease towards zero, L+U will reflect the number of nonzeros in the LU factors at the start of the QP subproblem.
If the constraints are linear, refactorization is subject only to the Factorization Frequency, and L+U will tend to increase between factorizations.
BSwap is the number of columns of the basis matrix B that were swapped with columns of S to improve the condition of B. The swaps are determined by an LU factorization of the rectangular matrix BS=BST with stability being favoured more than sparsity.
nS is the current number of superbasic variables.
condHz is an estimate of the condition number of RTR, itself an estimate of ZTHZ, the reduced Hessian of the Lagrangian. The condition number is the square of the ratio of the largest and smallest diagonals of the upper triangular matrix R, this being a lower bound on the condition number of RTR. condHz gives a rough indication of whether or not the optimization procedure is having difficulty. If ε is the relative machine precision being used, the SQP algorithm will make slow progress if condHz becomes as large as ε-1/2108, and will probably fail to find a better solution if condHz reaches ε-3/41012.
To guard against high values of condHz, attention should be given to the scaling of the variables and the constraints. In some cases it may be necessary to add upper or lower bounds to certain variables to keep them a reasonable distance from singularities in the nonlinear functions or their derivatives.
Penalty is the Euclidean norm of the vector of penalty parameters used in the augmented Lagrangian merit function (not printed if there are no nonlinear constraints).
The summary line may include additional code characters that indicate what happened during the course of the major iteration. These will follow the separator ‘_’ in the output.
Label Description
c central differences have been used to compute the unknown components of the objective and constraint gradients. A switch to central differences is made if either the linesearch gives a small step, or x is close to being optimal. In some cases, it may be necessary to re-solve the QP subproblem with the central difference gradient and Jacobian.
d during the linesearch it was necessary to decrease the step in order to obtain a maximum constraint violation conforming to the value of Violation Limit.
D you set mode=-1 on exit from objfun, indicating that the linesearch needed to be done with a smaller value of the step length α.
l the norm wise change in the variables was limited by the value of the Major Step Limit. If this output occurs repeatedly during later iterations, it may be worthwhile increasing the value of Major Step Limit.
i if e04wd is not in elastic mode, an i signifies that the QP subproblem is infeasible. This event triggers the start of nonlinear elastic mode, which remains in effect for all subsequent iterations. Once in elastic mode, the QP subproblems are associated with the elastic problem (11) (see [Treatment of Constraint Infeasibilities]).
If e04wd is already in elastic mode, an i indicates that the minimizer of the elastic subproblem does not satisfy the linearized constraints. (In this case, a feasible point for the usual QP subproblem may or may not exist.)
M an extra evaluation of the problem functions was needed to define an acceptable positive definite quasi-Newton update to the Lagrangian Hessian. This modification is only done when there are nonlinear constraints.
m this is the same as M except that it was also necessary to modify the update to include an augmented Lagrangian term.
n no positive definite BFGS update could be found. The approximate Hessian is unchanged from the previous iteration.
R the approximate Hessian has been reset by discarding all but the diagonal elements. This reset will be forced periodically by the Hessian Frequency and Hessian Updates keywords. However, it may also be necessary to reset an ill-conditioned Hessian from time to time.
r the approximate Hessian was reset after ten consecutive major iterations in which no BFGS update could be made. The diagonals of the approximate Hessian are retained if at least one update has been done since the last reset. Otherwise, the approximate Hessian is reset to the identity matrix.
s a self-scaled BFGS update was performed. This update is used when the Hessian approximation is diagonal, and hence always follows a Hessian reset.
t the minor iterations were terminated because of the Minor Iterations Limit.
T the minor iterations were terminated because of the New Superbasics Limit.
u the QP subproblem was unbounded.
w a weak solution of the QP subproblem was found.
z the Superbasics Limit was reached.

Minor Iteration Log

If Minor Print Level>0, one line of information is output to the Print file every kth minor iteration, where k is the specified Print Frequency. A heading is printed before the first such line following a basis factorization. The heading contains the items described below. In this description, a pricing operation is the process by which a nonbasic variable is selected to become superbasic (in addition to those already in the superbasic set). The selected variable is denoted by jq. Variable jq often becomes basic immediately. Otherwise it remains superbasic, unless it reaches its opposite bound and returns to the nonbasic set.
If Partial Price is in effect, variable jq is selected from App or Ipp, the ppth segments of the constraint matrix A-I.
Label Description
Itn the current iteration number.
LPmult or QPmult is the reduced cost (or reduced gradient) of the variable jq selected by the pricing procedure at the start of the present iteration. Algebraically, the reduced gradient is dj=gj-πTaj for j=jq, where gj is the gradient of the current objective function, π is the vector of dual variables for the QP subproblem, and aj is the jth column of A-I.
Note that the reduced cost is the 1-norm of the reduced-gradient vector at the start of the iteration, just after the pricing procedure.
LPstep or QPstep is the step length α taken along the current search direction p. The variables x have just been changed to x+αp. Write Step to stand for LPStep or QPStep, depending on the problem. If a variable is made superbasic during the current iteration (+SBS>0), Step will be the step to the nearest bound. During the solution of (11), the step can be greater than one only if the reduced Hessian is not positive definite.
nInf is the number of infeasibilities after the present iteration. This number will not increase unless the iterations are in elastic mode.
SumInf is the sum of infeasibilities after the present iteration, if nInf>0. The value usually decreases at each nonzero Step, but if it decreases by 2 or more, SumInf may occasionally increase.
rgNorm is the norm of the reduced-gradient vector at the start of the iteration. (It is the norm of the vector with elements dj for variables j in the superbasic set.) During the solution of subproblem (11) this norm will be approximately zero after a unit step. (The heading is not printed if the problem is linear.)
LPobjective, QPobjective or Elastic QPobj the QP objective function after the present iteration. In elastic mode, the heading is changed to Elastic QPobj. In either case, the value printed decreases monotonically.
+SBS is the variable jq selected by the pricing operation to be added to the superbasic set.
-SBS is the superbasic variable chosen to become nonbasic.
-BS is the basis variable removed (if any) to become nonbasic.
Pivot if column aq replaces the rth column of the basis B, Pivot is the rth element of a vector y satisfying By=aq. Wherever possible, Step is chosen to avoid extremely small values of Pivot (since they cause the basis to be nearly singular). In rare cases, it may be necessary to increase the Pivot Tolerance to exclude very small elements of y from consideration during the computation of Step.
L+U is the number of nonzeros representing the basis factors L and U. Immediately after a basis factorization B=LU, L+U is lenL+lenU, the number of subdiagonal elements in the columns of a lower triangular matrix and the number of diagonal and superdiagonal elements in the rows of an upper-triangular matrix. Further nonzeros are added to L when various columns of B are later replaced. As columns of B are replaced, the matrix U is maintained explicitly (in sparse form). The value of L will steadily increase, whereas the value of U may fluctuate up or down. Thus the value of L+U may fluctuate up or down (in general, it will tend to increase).
ncp is the number of compressions required to recover storage in the data structure for U. This includes the number of compressions needed during the previous basis factorization.
nS is the current number of superbasic variables. (The heading is not printed if the problem is linear.)
condHz see [Major Iteration Log]. (The heading is not printed if the problem is linear.)

Crash Statistics

If Major Print Level10 and System Information Yes has been specified, the following items are output to the Print file when Cold Start and no Backup Basis file is loaded. They refer to the number of columns that the Crash procedure selects during selected passes through A while searching for a triangular basis matrix.
Label Description
Slacks is the number of slacks selected initially.
Free cols is the number of free columns in the basis.
Preferred is the number of ‘preferred’ columns in the basis (i.e., istate[j-1]=3 for some jn).
Unit is the number of unit columns in the basis.
Double is the number of columns in the basis containing 2 nonzeros.
Triangle is the number of triangular columns in the basis.
Pad is the number of slacks used to pad the basis (to make it a nonsingular triangle).

Basis Factorization Statistics

If Major Print Level10, the first seven items in the list below are output to the Print file whenever the basis B or the rectangular matrix BS=BST is factorized before solution of the next QP subproblem. See [Description of the Optional Parameters] for a full description of an optional parameter.
Gaussian elimination is used to compute a sparse LU factorization of B or BS, where PLPT and PUQ are lower and upper triangular matrices for some permutation matrices P and Q. Stability is ensured as described under the optional parameter LU Factor Tolerance.
If Minor Print Level10, the same items are printed during the QP solution whenever the current B is factorized. In addition, if System Information Yes has been specified, the entries from Elems onwards are also printed.
Label Description
Factor the number of factorizations since the start of the run.
Demand a code giving the reason for the present factorization, as follows:
CodeMeaning
0First LU factorization.
1The number of updates reached the Factorization Frequency.
2The nonzeros in the updated factors have increased significantly.
7Not enough storage to update factors.
10Row residuals too large (see the description of the optional parameter Check Frequency).
11Ill-conditioning has caused inconsistent results.
Itn is the current minor iteration number.
Nonlin is the number of nonlinear variables in the current basis B.
Linear is the number of linear variables in B.
Slacks is the number of slack variables in B.
B BR BS or BT factorize is the type of LU factorization.
Bperiodic factorization of the basis B.
BRmore careful rank-revealing factorization of B using threshold rook pivoting. This occurs mainly at the start, if the first basis factors seem singular or ill-conditioned. Followed by a normal B factorize.
BSBS is factorized to choose a well-conditioned B from the current B S. Followed by a normal B factorize.
BTsame as BS except the current B is tried first and accepted if it appears to be not much more ill-conditioned than after the previous BS factorize.
m is the number of rows in B or BS.
n is the number of columns in B or BS. Preceded by ‘=’ or ‘>’ respectively.
Elems is the number of nonzero elements in B or BS.
Amax is the largest nonzero in B or BS.
Density is the percentage nonzero density of B or BS.
Merit/MerRP/MerCP is the average Markowitz merit count for the elements chosen to be the diagonals of PUQ. Each merit count is defined to be c-1r-1 where c and r are the number of nonzeros in the column and row containing the element at the time it is selected to be the next diagonal. Merit is the average of n such quantities. It gives an indication of how much work was required to preserve sparsity during the factorization. If LU Complete Pivoting or LU Rook Pivoting has been selected, this heading is changed to MerCP, respectively MerRP.
lenL is the number of nonzeros in L.
L+U is the number of nonzeros representing the basis factors L and U. Immediately after a basis factorization B=LU, L+U is lenL+lenU, the number of subdiagonal elements in the columns of a lower triangular matrix and the number of diagonal and superdiagonal elements in the rows of an upper-triangular matrix. Further nonzeros are added to L when various columns of B are later replaced. As columns of B are replaced, the matrix U is maintained explicitly (in sparse form). The value of L will steadily increase, whereas the value of U may fluctuate up or down. Thus the value of L+U may fluctuate up or down (in general, it will tend to increase).
Cmpressns is the number of times the data structure holding the partially factored matrix needed to be compressed to recover unused storage. Ideally this number should be zero. If it is more than 3 or 4, the amount of workspace available to e04wd should be increased for efficiency.
Incres is the percentage increase in the number of nonzeros in L and U relative to the number of nonzeros in B or BS.
Utri is the number of triangular rows of B or BS at the top of U.
lenU the number of nonzeros in U, including its diagonals.
Ltol is the largest subdiagonal element allowed in L. This is the specified LU Factor Tolerance or a smaller value that is currently being used for greater stability.
Umax the maximum nonzero element in U.
Ugrwth is the ratio Umax/Amax, which ideally should not be substantially larger than 10.0 or 100.0. If it is orders of magnitude larger, it may be advisable to reduce the LU Factor Tolerance to 5.0, 4.0, 3.0 or 2.0, say (but bigger than 1.0).
As long as Lmax is not large (say 5.0 or less), maxAmax,Umax/DUmin gives an estimate of the condition number B. If this is extremely large, the basis is nearly singular. Slacks are used to replace suspect columns of B and the modified basis is refactored.
Ltri is the number of triangular columns of B or BS at the left of L.
dense1 is the number of columns remaining when the density of the basis matrix being factorized reached 0.3.
Lmax is the actual maximum subdiagonal element in L (bounded by Ltol).
Akmax is the largest nonzero generated at any stage of the LU factorization. (Values much larger than Amax indicate instability.) Akmax is not printed if LU Partial Pivoting is selected.
Agrwth is the ratio Akmax/Amax. Values much larger than 100 (say) indicate instability. Growth is not printed if LU Partial Pivoting is selected.
bump is the size of the block to be factorized nontrivially after the triangular rows and columns of B or BS have been removed.
dense2 is the number of columns remaining when the density of the basis matrix being factorized reached 0.6. (The Markowitz pivot strategy searches fewer columns at that stage.)
DUmax is the largest diagonal of PUQ.
DUmin is the smallest diagonal of PUQ.
condU the ratio DUmax/DUmin, which estimates the condition number of U (and of B if Ltol is less than 5.0, say).

The Solution File

At the end of a run, the final solution may be output as a Solution file, according to Solution File. Some header information appears first to identify the problem and the final state of the optimization procedure. A ROWS section and a COLUMNS section then follow, giving one line of information for each row and column. The format used is similar to certain commercial systems, though there is no industry standard.
In general, numerical values are output with format f16.5. The maximum record length is 111 characters, including the first (carriage-control) character.
To reduce clutter, a full stop (.) is printed for any numerical value that is exactly zero. The values ±1 are also printed specially as 1.0 and -1.0. Infinite bounds (±1020 or larger) are printed as None.
A Solution file is intended to be read from disk by a self-contained program that extracts and saves certain values as required for possible further computation. Typically, the first 14 records would be ignored. Each subsequent record may be read . The end of the ROWS section is marked by a record that starts with a 1 and is otherwise blank. If this and the next 4 records are skipped, the COLUMNS section can then be read under the same format. (There should be no need for backspace statements.)

The ROWS section

General linear constraints take the form lAxu. The ith constraint is therefore of the form
ανixβ,
where νi is the ith row of A.
Internally, the constraints take the form Ax-s=0, where s is the set of slack variables (which happen to satisfy the bounds lsu). For the ith constraint it is the slack variable si that is directly available, and it is sometimes convenient to refer to its state. Nonlinear constraints αcix+vixβ are treated similarly, except that the row activity and degree of infeasibility are computed directly from cix+vix rather than si. A fullstop (.) is printed for any numerical value that is exactly zero.
Label Description
Number is the value of n+i. (This is used internally to refer to si in the intermediate output.)
Row gives the name of the ith row.
State the state of the ith row relative to the bounds α and β. The various states possible are as follows:
LL the row is at its lower limit, α.
UL the row is at its upper limit, β.
EQ the limits are the same (α=β).
FR si is nonbasic and currently zero, even though it is free to take any value between its bounds α and β.
BS si is basic.
SBS si is superbasic.
A key is sometimes printed before State. Note that unless the optional parameter Scale Option=0 is specified, the tests for assigning a key are applied to the variables of the scaled problem.
A Alternative optimum possible. The variable is nonbasic, but its reduced gradient is essentially zero. This means that if the variable were allowed to start moving away from its bound, there would be no change in the value of the objective function. The values of the other free variables might change, giving a genuine alternative solution. However, if there are any degenerate variables (labelled D), the actual change might prove to be zero, since one of them could encounter a bound immediately. In either case, the values of the Lagrange multipliers might also change.
D Degenerate. The variable is basic or superbasic, but it is equal (or very close) to one of its bounds.
I Infeasible. The variable is basic or superbasic and is currently violating one of its bounds by more than the value of the Feasibility Tolerance.
N Not precisely optimal. The variable is nonbasic or superbasic. If the value of the reduced gradient for the variable exceeds the value of the optional parameter Major Optimality Tolerance, the solution would not be declared optimal because the reduced gradient for the variable would not be considered negligible.
Activity is the value of vix (or cix+vix for nonlinear rows) at the final iterate.
Slack Activity is the value by which the row differs from its nearest bound. (For the free row (if any), it is set to Activity.)
Lower Limit is α, the lower bound on the row.
Upper Limit is β, the upper bound on the row.
Dual Activity is the value of the dual variable πi (the Lagrange multiplier for the ith constraint). The full vector π always satisfies BTπ=gB, where B is the current basis matrix and gB contains the associated gradients for the current objective function. For FP problems, πi is set to zero.
i gives the index i of the ith row.

The COLUMNS section

Let the jth component of x be the variable xj and assume that it satisfies the bounds αxjβ. A fullstop (.) is printed for any numerical value that is exactly zero.
Label Description
Number is the column number j. (This is used internally to refer to xj in the intermediate output.)
Column gives the name of xj.
State the state of xj relative to the bounds α and β. The various states possible are as follows:
LL xj is nonbasic at its lower limit, α.
UL xj is nonbasic at its upper limit, β.
EQ xj is nonbasic and fixed at the value α=β.
FR xj is nonbasic at some value strictly between its bounds: α<xj<β.
BS xj is basic. Usually α<xj<β.
SBS xj is superbasic. Usually α<xj<β.
A key is sometimes printed before State. Note that unless the optional parameter Scale Option=0 is specified, the tests for assigning a key are applied to the variables of the scaled problem.
A Alternative optimum possible. The variable is nonbasic, but its reduced gradient is essentially zero. This means that if the variable were allowed to start moving away from its bound, there would be no change in the value of the objective function. The values of the other free variables might change, giving a genuine alternative solution. However, if there are any degenerate variables (labelled D), the actual change might prove to be zero, since one of them could encounter a bound immediately. In either case, the values of the Lagrange multipliers might also change.
D Degenerate. The variable is basic or superbasic, but it is equal (or very close) to one of its bounds.
I Infeasible. The variable is basic or superbasic and is currently violating one of its bounds by more than the value of the Feasibility Tolerance.
N Not precisely optimal. The variable is nonbasic or superbasic. If the value of the reduced gradient for the variable exceeds the value of the optional parameter Major Optimality Tolerance, the solution would not be declared optimal because the reduced gradient for the variable would not be considered negligible.
Activity is the value of xj at the final iterate.
Obj Gradient is the value of gj at the final iterate. For FP problems, gj is set to zero.
Lower Limit is the lower bound specified for the variable. None indicates that bl[j-1]-bigbnd.
Upper Limit is the upper bound specified for the variable. None indicates that bu[j-1]bigbnd.
Reduced Gradnt is the value of the reduced gradient dj=gj-πTaj where aj is the jth column of the constraint matrix. For FP problems, dj is set to zero.
m + j is the value of m+j.
Note that movement off a constraint (as opposed to a variable moving away from its bound) can be interpreted as allowing the entry in the Slack Activity column to become positive.
Numerical values are output with a fixed number of digits; they are not guaranteed to be accurate to this precision.

The Summary File

If Summary File>0, the following information is output to the unit number associated with Summary File. (It is a brief summary of the output directed to unit Print File):
the optional parameters supplied via the option setting methods, if any;
the Basis file loaded, if any;
a brief major iteration log (see [Major Iteration Log]);
a brief minor iteration log (see [Minor Iteration Log]);
the exit condition, ifail;
a summary of the final iterate.

See Also