NAG FL Interface
e04ncf  (lsq_lincon_solve_old)
e04nca (lsq_lincon_solve)

Note: this routine uses optional parameters to define choices in the problem specification and in the details of the algorithm. If you wish to use default settings for all of the optional parameters, you need only read Sections 1 to 10 of this document. If, however, you wish to reset some or all of the settings please refer to Section 11 for a detailed description of the algorithm, to Section 12 for a detailed description of the specification of the optional parameters and to Section 13 for a detailed description of the monitoring information produced by the routine.
Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e04ncf/​e04nca solves linearly constrained linear least squares problems and convex quadratic programming problems. It is not intended for large sparse problems.
e04nca is a version of e04ncf that has additional arguments in order to make it safe for use in multithreaded applications (see Section 5). The initialization routine e04wbf must have been called before calling e04nca.

2 Specification

2.1 Specification for e04ncf

Fortran Interface
Subroutine e04ncf ( m, n, nclin, ldc, lda, c, bl, bu, cvec, istate, kx, x, a, b, iter, obj, clamda, iwork, liwork, work, lwork, ifail)
Integer, Intent (In) :: m, n, nclin, ldc, lda, liwork, lwork
Integer, Intent (Inout) :: istate(n+nclin), kx(n), ifail
Integer, Intent (Out) :: iter, iwork(liwork)
Real (Kind=nag_wp), Intent (In) :: c(ldc,*), bl(n+nclin), bu(n+nclin), cvec(*)
Real (Kind=nag_wp), Intent (Inout) :: x(n), a(lda,*), b(*)
Real (Kind=nag_wp), Intent (Out) :: obj, clamda(n+nclin), work(lwork)
C Header Interface
#include <nag.h>
void  e04ncf_ (const Integer *m, const Integer *n, const Integer *nclin, const Integer *ldc, const Integer *lda, const double c[], const double bl[], const double bu[], const double cvec[], Integer istate[], Integer kx[], double x[], double a[], double b[], Integer *iter, double *obj, double clamda[], Integer iwork[], const Integer *liwork, double work[], const Integer *lwork, Integer *ifail)

2.2 Specification for e04nca

Fortran Interface
Subroutine e04nca ( m, n, nclin, ldc, lda, c, bl, bu, cvec, istate, kx, x, a, b, iter, obj, clamda, iwork, liwork, work, lwork, lwsav, iwsav, rwsav, ifail)
Integer, Intent (In) :: m, n, nclin, ldc, lda, liwork, lwork
Integer, Intent (Inout) :: istate(n+nclin), kx(n), iwsav(610), ifail
Integer, Intent (Out) :: iter, iwork(liwork)
Real (Kind=nag_wp), Intent (In) :: c(ldc,*), bl(n+nclin), bu(n+nclin), cvec(*)
Real (Kind=nag_wp), Intent (Inout) :: x(n), a(lda,*), b(*), rwsav(475)
Real (Kind=nag_wp), Intent (Out) :: obj, clamda(n+nclin), work(lwork)
Logical, Intent (Inout) :: lwsav(120)
C Header Interface
#include <nag.h>
void  e04nca_ (const Integer *m, const Integer *n, const Integer *nclin, const Integer *ldc, const Integer *lda, const double c[], const double bl[], const double bu[], const double cvec[], Integer istate[], Integer kx[], double x[], double a[], double b[], Integer *iter, double *obj, double clamda[], Integer iwork[], const Integer *liwork, double work[], const Integer *lwork, logical lwsav[], Integer iwsav[], double rwsav[], Integer *ifail)
Before calling e04nca, or either of the option setting routines e04nda or e04nea, e04wbf must be called. The specification for e04wbf is:
Fortran Interface
Subroutine e04wbf ( rname, cwsav, lcwsav, lwsav, llwsav, iwsav, liwsav, rwsav, lrwsav, ifail)
Integer, Intent (In) :: lcwsav, llwsav, liwsav, lrwsav
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: iwsav(liwsav)
Real (Kind=nag_wp), Intent (Out) :: rwsav(lrwsav)
Logical, Intent (Out) :: lwsav(llwsav)
Character (*), Intent (In) :: rname
Character (80), Intent (Out) :: cwsav(lcwsav)
C Header Interface
#include <nag.h>
void  e04wbf_ (const char *rname, char cwsav[], const Integer *lcwsav, logical lwsav[], const Integer *llwsav, Integer iwsav[], const Integer *liwsav, double rwsav[], const Integer *lrwsav, Integer *ifail, const Charlen length_rname, const Charlen length_cwsav)
e04wbf should be called with rname='e04nca'. lcwsav, llwsav, liwsav and lrwsav, the declared lengths of cwsav, lwsav, iwsav and rwsav respectively, must satisfy:
The contents of the arrays cwsav, lwsav, iwsav and rwsav must not be altered between calling routines e04nca, e04nda, e04nea and e04wbf.

3 Description

e04ncf/​e04nca is designed to solve a class of quadratic programming problems of the following general form:
minimize xRn F(x)  subject to  l{ x Cx } u (1)
where c is an nL×n matrix and the objective function F(x) may be specified in a variety of ways depending upon the particular problem to be solved. The available forms for F(x) are listed in Table 1, in which the prefixes FP, LP, QP and LS stand for ‘feasible point’, ‘linear programming’, ‘quadratic programming’ and ‘least squares’ respectively, c is an n-element vector, b is an m element vector and z denotes the Euclidean length of z.
Table 1
Problem type F(x) Matrix A
FP None Not applicable
LP cTx Not applicable
QP1 cTx+12xTAx n×n symmetric positive semidefinite
QP2 cTx+12xTAx n×n symmetric positive semidefinite
QP3 cTx+12xTATAx m×n upper trapezoidal
QP4 cTx+12xTATAx m×n upper trapezoidal
LS1 cTx+12b-Ax2 m×n
LS2 cTx+12b-Ax2 m×n
LS3 cTx+12b-Ax2 m×n upper trapezoidal
LS4 cTx+12b-Ax2 m×n upper trapezoidal
In the standard LS problem F(x) will usually have the form LS1, and in the standard convex QP problem F(x) will usually have the form QP2. The default problem type is LS1 and other objective functions are selected by using the optional parameter Problem Type.
When A is upper trapezoidal it will usually be the case that m=n, so that A is upper triangular, but full generality has been allowed for in the specification of the problem. The upper trapezoidal form is intended for cases where a previous factorization, such as a QR factorization, has been performed.
The constraints involving c are called the general constraints. Note that upper and lower bounds are specified for all the variables and for all the general constraints. An equality constraint 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.)
The defining feature of a quadratic function F(x) is that the second-derivative matrix H (the Hessian matrix) is constant. For the LP case H=0; for QP1 and QP2, H=A; for QP3 and QP4, H=ATA and for LS1 (the default), LS2, LS3 and LS4, H=ATA.
Problems of type QP3 and QP4 for which A is not in upper trapezoidal form should be solved as types LS1 and LS2 respectively, with b=0.
For problems of type LS, we refer to A as the least squares matrix, or the matrix of observations and to b as the vector of observations.
You must supply an initial estimate of the solution.
If H is nonsingular then e04ncf/​e04nca will obtain the unique (global) minimum. If H is singular then the solution may still be a global minimum if all active constraints have nonzero Lagrange multipliers. Otherwise the solution obtained will be either a weak minimum (i.e., with a unique optimal objective value, but an infinite set of optimal x), or else the objective function is unbounded below in the feasible region. The last case can only occur when F(x) contains an explicit linear term (as in problems LP, QP2, QP4, LS2 and LS4).
The method used by e04ncf/​e04nca is described in detail in Section 11.

4 References

Gill P E, Hammarling S, Murray W, Saunders M A and Wright M H (1986) Users' guide for LSSOL (Version 1.0) Report SOL 86-1 Department of Operations Research, Stanford University
Gill P E, Murray W, Saunders M A and Wright M H (1984) Procedures for optimization problems with a mixture of bounds and general linear constraints ACM Trans. Math. Software 10 282–298
Gill P E, Murray W and Wright M H (1981) Practical Optimization Academic Press
Stoer J (1971) On the numerical solution of constrained least squares problems SIAM J. Numer. Anal. 8 382–411

5 Arguments

1: m Integer Input
On entry: m, the number of rows in the matrix A. If the problem is specified as type FP or LP, m is not referenced and is assumed to be zero.
If the problem is of type QP, m will usually be n, the number of variables. However, a value of m less than n is appropriate for QP3 or QP4 if A is an upper trapezoidal matrix with m rows. Similarly, m may be used to define the dimension of a leading block of nonzeros in the Hessian matrices of QP1 or QP2, in which case the last (n-m) rows and columns of a are assumed to be zero. In the QP case, m should not be greater than n; if it is, the last (m-n) rows of A are ignored.
If the problem is of type LS1 (the default) or specified as type LS2, LS3 or LS4, m is also the dimension of the array b. Note that all possibilities (m<n, m=n and m>n) are allowed in this case.
Constraint: m>0 if the problem is not of type FP or LP.
2: n Integer Input
On entry: n, the number of variables.
Constraint: n>0.
3: nclin Integer Input
On entry: nL, the number of general linear constraints.
Constraint: nclin0.
4: ldc Integer Input
On entry: the first dimension of the array c as declared in the (sub)program from which e04ncf/​e04nca is called.
Constraint: ldcmax(1,nclin).
5: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which e04ncf/​e04nca is called.
Constraint: ldamax(1,m).
6: c(ldc,*) Real (Kind=nag_wp) array Input
Note: the second dimension of the array c must be at least n if nclin>0, and at least 1 otherwise.
On entry: the ith row of c must contain the coefficients of the ith general constraint, for i=1,2,,nclin.
If nclin=0, c is not referenced.
7: bl(n+nclin) Real (Kind=nag_wp) array Input
8: bu(n+nclin) Real (Kind=nag_wp) array Input
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, and the next nL elements must contain the bounds for the general linear constraints (if any). To specify a nonexistent lower bound (i.e., lj=-), set bl(j)-bigbnd, and to specify a nonexistent upper bound (i.e., uj=+), set bu(j)bigbnd; the default value of bigbnd is 1020, but this may be changed by the optional parameter Infinite Bound Size. To specify the jth constraint as an equality, set bu(j)=bl(j)=β, say, where |β|<bigbnd.
Constraints:
  • bl(j)bu(j), for j=1,2,,n+nclin;
  • if bl(j)=bu(j)=β, |β|<bigbnd.
9: cvec(*) Real (Kind=nag_wp) array Input
Note: the dimension of the array cvec must be at least n if the problem is of type LP, QP2, QP4, LS2 or LS4, and at least 0 otherwise.
On entry: the coefficients of the explicit linear term of the objective function.
If the problem is of type FP, QP1, QP3, LS1 (the default) or LS3, cvec is not referenced.
10: istate(n+nclin) Integer array Input/Output
On entry: need not be set if the (default) optional parameter Cold Start is used.
If the optional parameter Warm Start has been chosen, istate specifies the desired status of the constraints at the start of the feasibility phase. More precisely, the first n elements of istate refer to the upper and lower bounds on the variables, and the next nL elements refer to the general linear constraints (if any). Possible values for istate(j) are as follows:
istate(j) Meaning
0 The constraint should not be in the initial working set.
1 The constraint should be in the initial working set at its lower bound.
2 The constraint should be in the initial working set at its upper bound.
3 The constraint should be in the initial working set as an equality. This value must not be specified unless bl(j)=bu(j).
The values −2, −1 and 4 are also acceptable but will be reset to zero by the routine. If e04ncf/​e04nca has been called previously with the same values of n and nclin, istate already contains satisfactory information. (See also the description of the optional parameter Warm Start.) The routine also adjusts (if necessary) the values supplied in x to be consistent with istate.
Constraint: −2istate(j)4, for j=1,2,,n+nclin.
On exit: the status of the constraints in the working set at the point returned in x. The significance of each possible value of istate(j) is as follows:
istate(j) Meaning
−2 The constraint violates its lower bound by more than the feasibility tolerance.
−1 The constraint violates its upper bound by more than the feasibility tolerance.
-0 The constraint is satisfied to within the feasibility tolerance, but is not in the working set.
-1 This inequality constraint is included in the working set at its lower bound.
-2 This inequality constraint is included in the working set at its upper bound.
-3 The constraint is included in the working set as an equality. This value of istate can occur only when bl(j)=bu(j).
-4 This corresponds to optimality being declared with x(j) being temporarily fixed at its current value.
11: kx(n) Integer array Input/Output
On entry: need not be initialized for problems of type FP, LP, QP1, QP2, LS1 (the default) or LS2.
For problems QP3, QP4, LS3 or LS4, kx must specify the order of the columns of the matrix A with respect to the ordering of x. Thus if column j of A is the column associated with the variable xi then kx(j)=i.
Constraints:
  • 1kx(i)n, for i=1,2,,n;
  • if ij, kx(i)kx(j).
On exit: defines the order of the columns of a with respect to the ordering of x, as described above.
12: x(n) Real (Kind=nag_wp) array Input/Output
On entry: an initial estimate of the solution.
Note: that it may be best to avoid the choice x=0.0.
On exit: the point at which e04ncf/​e04nca terminated. If ifail=0, 1 or 4, x contains an estimate of the solution.
13: a(lda,*) Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array a must be at least n if the problem is of type QP1, QP2, QP3, QP4, LS1 (the default), LS2, LS3 or LS4, and at least 1 otherwise.
On entry: the array a must contain the matrix A as specified in Table 1 (see Section 3).
If the problem is of type QP1 or QP2, the first m rows and columns of a must contain the leading m×m rows and columns of the symmetric Hessian matrix. Only the diagonal and upper triangular elements of the leading m rows and columns of a are referenced. The remaining elements are assumed to be zero and need not be assigned.
For problems QP3, QP4, LS3 or LS4, the first m rows of a must contain an m×n upper trapezoidal factor of either the Hessian matrix or the least squares matrix, ordered according to the kx array. The factor need not be of full rank, i.e., some of the diagonals may be zero. However, as a general rule, the larger the dimension of the leading nonsingular sub-matrix of A, the fewer iterations will be required. Elements outside the upper triangular part of the first m rows of a are assumed to be zero and need not be assigned.
If a constrained least squares problem contains a very large number of observations, storage limitations may prevent storage of the entire least squares matrix. In such cases, you should transform the original A into a triangular matrix before the call to e04ncf/​e04nca and solve the problem as type LS3 or LS4.
On exit: if Hessian=NO and the problem is of type LS or QP, a contains the upper triangular Cholesky factor R of (8) (see Section 11.3), with columns ordered as indicated by kx.
If Hessian=YES and the problem is of type LS or QP, a contains the upper triangular Cholesky factor R of the Hessian matrix H, with columns ordered as indicated by kx. In either case R may be used to obtain the variance-covariance matrix or to recover the upper triangular factor of the original least squares matrix.
If the problem is of type FP or LP, a is not referenced.
14: b(*) Real (Kind=nag_wp) array Input/Output
Note: the dimension of the array b must be at least m if the problem is of type LS1 (the default), LS2, LS3 or LS4, and at least 1 otherwise.
On entry: the m elements of the vector of observations.
On exit: the transformed residual vector of (10) (see Section 11.3).
If the problem is of type FP, LP, QP1, QP2, QP3 or QP4, b is not referenced.
15: iter Integer Output
On exit: the total number of iterations performed.
16: obj Real (Kind=nag_wp) Output
On exit: the value of the objective function at x if x is feasible, or the sum of infeasibiliites at x otherwise. If the problem is of type FP and x is feasible, obj is set to zero.
17: clamda(n+nclin) Real (Kind=nag_wp) array Output
On exit: the values of the Lagrange multipliers for each constraint with respect to the current working set. The first n elements contain the multipliers for the bound constraints on the variables, and the next nL elements contain the multipliers for the general linear constraints (if any). If istate(j)=0 (i.e., constraint j is not in the working set), clamda(j) is zero. If x is optimal, clamda(j) should be non-negative if istate(j)=1, non-positive if istate(j)=2 and zero if istate(j)=4.
18: iwork(liwork) Integer array Workspace
19: liwork Integer Input
On entry: the dimension of the array iwork as declared in the (sub)program from which e04ncf/​e04nca is called.
Constraint: liworkn.
20: work(lwork) Real (Kind=nag_wp) array Workspace
21: lwork Integer Input
On entry: the dimension of the array work as declared in the (sub)program from which e04ncf/​e04nca is called.
Constraints:
  • if the problem is of type FP,
    • if nclin=0, lwork6×n;
    • if nclinn, lwork2×n2+6×n+6×nclin;
    • otherwise lwork2×(nclin+1)2+6×n+6×nclin;
  • if the problem is of type LP,
    • if nclin=0, lwork7×n;
    • if nclinn, lwork2×n2+7×n+6×nclin;
    • otherwise lwork2×(nclin+1)2+7×n+6×nclin;
  • if problems QP1, QP3, LS1 (the default) and LS3,
    • if nclin>0, lwork2×n2+9×n+6×nclin;
    • if nclin=0, lwork9×n;
  • if problems QP2, QP4, LS2 and LS4,
    • if nclin>0, lwork2×n2+10×n+6×nclin;
    • if nclin=0, lwork10×n.
The amounts of workspace provided and required are (by default) output on the current advisory message unit (as defined by x04abf). As an alternative to computing liwork and lwork from the formulas given above, you may prefer to obtain appropriate values from the output of a preliminary run with liwork and lwork set to 1. (e04ncf/​e04nca will then terminate with ifail=6.)
22: ifail Integer Input/Output
Note: for e04nca, ifail does not occur in this position in the argument list. See the additional arguments described below.
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value −1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).
e04ncf/​e04nca returns with ifail=0 if x is a strong local minimizer, i.e., the projected gradient (Norm Gz; see Section 9.2) is negligible, the Lagrange multipliers (Lagr Mult; see Section 11.2) are optimal and RZ (see Section 11.3) is nonsingular.
Note: the following are additional arguments for specific use with e04nca. Users of e04ncf therefore need not read the remainder of this description.
22: lwsav(120) Logical array Communication Array
23: iwsav(610) Integer array Communication Array
24: rwsav(475) Real (Kind=nag_wp) array Communication Array
The arrays lwsav, iwsav and rwsav must not be altered between calls to any of the routines e04nca, e04nda or e04nea.
25: ifail Integer Input/Output
Note: see the argument description for ifail above.

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
Note: in some cases e04ncf/​e04nca may return useful information.
ifail=1
Weak value solution.
x is a weak local minimum, (i.e., the projected gradient is negligible, the Lagrange multipliers are optimal, but either RZ (see Section 11.3) is singular, or there is a small multiplier). This means that x is not unique.
ifail=2
value solution is unbounded.
This value of ifail implies that a step as large as Infinite Bound Size (default value=1020) would have to be taken in order to continue the algorithm. This situation can occur only when A is singular, there is an explicit linear term, and at least one variable has no upper or lower bound.
ifail=3
Cannot satisfy the linear constraints.
It was not possible to satisfy all the constraints to within the feasibility tolerance. In this case, the constraint violations at the final x will reveal a value of the tolerance for which a feasible point will exist – for example, when the feasibility tolerance for each violated constraint exceeds its Slack (see Section 9.2) at the final point. The modified problem (with an altered feasibility tolerance) may then be solved using a Warm Start. You should check that there are no constraint redundancies. If the data for the constraints are accurate only to the absolute precision σ, you should ensure that the value of the optional parameter Feasibility Tolerance (default value=ε, where ε is the machine precision) is greater than σ. For example, if all elements of c are of order unity and are accurate only to three decimal places, the Feasibility Tolerance should be at least 10−3.
ifail=4
Too many iterations.
The value of the optional parameters Feasibility Phase Iteration Limit (default value=max(50,5(n+nL))) and Optimality Phase Iteration Limit (default value=max(50,5(n+nL)))) may be too small. If the method appears to be making progress (e.g., the objective function is being satisfactorily reduced), either increase the iterations limit and rerun e04ncf/​e04nca or, alternatively, rerun e04ncf/​e04nca using the Warm Start facility to specify the initial working set. If the iteration limit is already large, but some of the constraints could be nearly linearly dependent, check the monitoring information (see Section 13) for a repeated pattern of constraints entering and leaving the working set. (Near-dependencies are often indicated by wide variations in size in the diagonal elements of the matrix T (see Section 11.2), which will be printed if Print Level30 (default value=10). In this case, the algorithm could be cycling (see the comments for ifail=5).
ifail=5
Too many iterations without changing x.
The algorithm could be cycling, since a total of 50 changes were made to the working set without altering x. You should check the monitoring information (see Section 13) for a repeated pattern of constraint deletions and additions.
If a sequence of constraint changes is being repeated, the iterates are probably cycling. (e04ncf/​e04nca does not contain a method that is guaranteed to avoid cycling; such a method would be combinatorial in nature.) Cycling may occur in two circumstances: at a constrained stationary point where there are some small or zero Lagrange multipliers; or at a point (usually a vertex) where the constraints that are satisfied exactly are nearly linearly dependent. In the latter case, you have the option of identifying the offending dependent constraints and removing them from the problem, or restarting the run with a larger value of the optional parameter Feasibility Tolerance (default value=ε, where ε is the machine precision). If e04ncf/​e04nca terminates with ifail=5, but no suspicious pattern of constraint changes can be observed, it may be worthwhile to restart with the final x (with or without the Warm Start option).
Note:  that this error exit may also occur if a poor starting point x is supplied (for example, x=0.0). You are advised to try a nonzero starting point.
ifail=6
Not enough workspace to solve problem. Workspace provided is iwork(value) and work(value). To solve problem we need iwork(value) and work(value).
On entry, kx has not been supplied as a valid permutation.
On entry, lda=value and m=value.
Constraint: ldamax(1,m).
On entry, ldc=value and nclin=value.
Constraint: ldcmax(1,nclin).
On entry, m=value.
Constraint: m>0.
On entry, n=value.
Constraint: n>0.
On entry, nclin=value.
Constraint: nclin0.
On entry, the bounds on value are inconsistent: bl(value)=value and bu(value)=value.
On entry, the bounds on linear constraint value are inconsistent: bl(value)=value and bu(value)=value.
On entry, the bounds on nonlinear constraint value are inconsistent: bl(value)=value and bu(value)=value.
On entry, the bounds on variable value are inconsistent: bl(value)=value and bu(value)=value.
On entry, the equal bounds on value are infinite, because bl(value)=beta and bu(value)=beta, but |beta|bigbnd: beta=value and bigbnd=value.
On entry, the equal bounds on linear constraint value are infinite, because bl(value)=beta and bu(value)=beta, but |beta|bigbnd: beta=value and bigbnd=value.
On entry, the equal bounds on nonlinear constraint value are infinite, because bl(value)=beta and bu(value)=beta, but |beta|bigbnd: beta=value and bigbnd=value.
On entry, the equal bounds on variable value are infinite, because bl(value)=beta and bu(value)=beta, but |beta|bigbnd: beta=value and bigbnd=value.
On entry with a Warm Start, istate(value)=value.
ifail=7
The problem to be solved is of type QP1 or QP2, but the Hessian matrix supplied in a is not positive semidefinite.
Overflow
If the printed output before the overflow error contains a warning about serious ill-conditioning in the working set when adding the jth constraint, it may be possible to avoid the difficulty by increasing the magnitude of the Feasibility Tolerance (default value=ε, where ε is the machine precision) and rerunning the program. If the message recurs even after this change, the offending linearly dependent constraint (with index ‘j’) must be removed from the problem.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

e04ncf/​e04nca implements a numerically stable active set strategy and returns solutions that are as accurate as the condition of the problem warrants on the machine.

8 Parallelism and Performance

e04ncf/​e04nca is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
e04ncf/​e04nca makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

This section contains some comments on scaling and a description of the printed output.

9.1 Scaling

Sensible scaling of the problem is likely to reduce the number of iterations required and make the problem less sensitive to perturbations in the data, thus improving the condition of the problem. In the absence of better information it is usually sensible to make the Euclidean lengths of each constraint of comparable magnitude. See the E04 Chapter Introduction and Gill et al. (1981) for further information and advice.

9.2 Description of the Printed Output

This section describes the intermediate printout and final printout produced by e04ncf/​e04nca. The intermediate printout is a subset of the monitoring information produced by the routine at every iteration (see Section 13). You can control the level of printed output (see the description of the optional parameter Print Level). Note that the intermediate printout and final printout are produced only if Print Level10 (the default for e04ncf, by default no output is produced by e04nca).
The following line of summary output (<80 characters) is produced at every iteration. In all cases, the values of the quantities printed are those in effect on completion of the given iteration.
Itn is the iteration count.
Step is the step taken along the computed search direction. If a constraint is added during the current iteration (i.e., Jadd is positive), Step will be the step to the nearest constraint. During the optimality phase, the step can be greater than 1 only if the factor RZ is singular. (See Section 11.3.)
Ninf is the number of violated constraints (infeasibilities). This will be zero during the optimality phase.
Sinf/Objective is the value of the current objective function. If x is not feasible, Sinf gives a weighted sum of the magnitudes of constraint violations. If x is feasible, Objective is the value of the objective function of (1). The output line for the final iteration of the feasibility phase (i.e., the first iteration for which Ninf is zero) will give the value of the true objective at the first feasible point.
During the optimality phase the value of the objective function will be nonincreasing. During the feasibility phase the number of constraint infeasibilities will not increase until either a feasible point is found or the optimality of the multipliers implies that no feasible point exists. Once optimal multipliers are obtained the number of infeasibilities can increase, but the sum of infeasibilities will either remain constant or be reduced until the minimum sum of infeasibilities is found.
Norm Gz is Z1TgFR , the Euclidean norm of the reduced gradient with respect to Z1. During the optimality phase, this norm will be approximately zero after a unit step. (See Sections 11.2 and 11.3.)
The final printout includes a listing of the status of every variable and constraint.
The following describes the printout for each variable. A full stop (.) is printed for any numerical value that is zero.
Varbl gives the name (V) 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.
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)-bigbnd.
Upper Bound is the upper bound specified for the variable. None indicates that bu(j)bigbnd.
Lagr Mult is the Lagrange multiplier for the associated bound. This will be zero if State is FR unless bl(j)-bigbnd and bu(j)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) and bu(j). A blank entry indicates that the associated variable is not bounded (i.e., bl(j)-bigbnd and bu(j)bigbnd).
The meaning of the printout for general constraints is the same as that given above for variables, with ‘variable’ replaced by ‘constraint’, bl(j) and bu(j) are replaced by bl(n+j) and bu(n+j) respectively, and with the following change in the heading:
L Con gives the name (L) and index j, for j=1,2,,nL, of the linear 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.

10 Example

This example minimizes the function 12b-Ax2, where
A= ( 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 2 0 0 1 1 3 1 1 1 −1 −1 −3 1 1 1 4 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 2 1 1 0 0 0 −1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 1 1 2 2 3 1 0 1 1 1 1 0 2 2 )   and   b= ( 1 1 1 1 1 1 1 1 1 1 )  
subject to the bounds
0x12 0x22 -x32 0x42 0x52 0x62 0x72 0x82 0x92  
and to the general constraints
2.0 x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + 4x9 - x1 + 2x2 + 3x3 + 4x4 - 2x5 + x6 + x7 + x8 + x9 2.0 1.0 x1 - x2 + x3 - x4 + x5 + x6 + x7 + x8 + x9 4.0.  
The initial point, which is infeasible, is
x0=(1.0,0.5,0.3333,0.25,0.2,0.1667,0.1428,0.125,0.1111)T,  
and F(x0)=9.4746 (to five figures).
The optimal solution (to five figures) is
x*=(0.0,0.041526,0.58718,0.0,0.099643,0.0,0.04906,0.0,0.30565)T,  
and F(x*)=0.081341. Four bound constraints and all three general constraints are active at the solution.
The document for e04ndf/​e04nda includes an example program to solve a convex quadratic programming problem, using some of the optional parameters described in Section 12.

10.1 Program Text

Note: the following programs illustrate the use of e04ncf and e04nca.
Program Text (e04ncfe.f90)
Program Text (e04ncae.f90)

10.2 Program Data

Program Data (e04ncfe.d)
Program Data (e04ncae.d)

10.3 Program Results

Program Results (e04ncfe.r)
Program Results (e04ncae.r)
Note: the remainder of this document is intended for more advanced users. Section 11 contains a detailed description of the algorithm which may be needed in order to understand Sections 12 and 13. Section 12 describes the optional parameters which may be set by calls to e04ndf/​e04nda and/or e04nef/​e04nea. Section 13 describes the quantities which can be requested to monitor the course of the computation.

11 Algorithmic Details

This section contains a detailed description of the method used by e04ncf/​e04nca.

11.1 Overview

e04ncf/​e04nca is essentially identical to the subroutine LSSOL described in Gill et al. (1986). It is based on a two-phase (primal) quadratic programming method with features to exploit the convexity of the objective function due to Gill et al. (1984). (In the full-rank case, the method is related to that of Stoer (1971).) e04ncf/​e04nca has two phases: finding an initial feasible point by minimizing the sum of infeasibilities (the feasibility phase), and minimizing the quadratic objective function within the feasible region (the optimality phase). The two-phase nature of the algorithm is reflected by changing the function being minimized from the sum of infeasibilities to the quadratic objective function. The feasibility phase does not perform the standard simplex method (i.e., it does not necessarily find a vertex), except in the LP case when nLn. Once any iterate is feasible, all subsequent iterates remain feasible.
e04ncf/​e04nca has been designed to be efficient when used to solve a sequence of related problems – for example, within a sequential quadratic programming method for nonlinearly constrained optimization (e.g., e04uff/​e04ufa or e04wdf). In particular, you may specify an initial working set (the indices of the constraints believed to be satisfied exactly at the solution); see the discussion of the optional parameter Warm Start.
In general, an iterative process is required to solve a quadratic program. (For simplicity, we shall always consider a typical iteration and avoid reference to the index of the iteration.) Each new iterate x¯ is defined by
x¯=x+αp, (2)
where the step length α is a non-negative scalar, and p is called the search direction.
At each point x, a working set of constraints is defined to be a linearly independent subset of the constraints that are satisfied ‘exactly’ (to within the tolerance defined by the optional parameter Feasibility Tolerance). The working set is the current prediction of the constraints that hold with equality at a solution of (1). The search direction is constructed so that the constraints in the working set remain unaltered for any value of the step length. For a bound constraint in the working set, this property is achieved by setting the corresponding element of the search direction to zero. Thus, the associated variable is fixed, and specification of the working set induces a partition of x into fixed and free variables. During a given iteration, the fixed variables are effectively removed from the problem; since the relevant elements of the search direction are zero, the columns of c corresponding to fixed variables may be ignored.
Let nW denote the number of general constraints in the working set and let nFX denote the number of variables fixed at one of their bounds (nW and nFX are the quantities Lin and Bnd in the monitoring file output from e04ncf/​e04nca; see Section 13). Similarly, let nFR(nFR=n-nFX) denote the number of free variables. At every iteration, the variables are reordered so that the last nFX variables are fixed, with all other relevant vectors and matrices ordered accordingly. The order of the variables is indicated by the contents of the array kx on exit (see Section 5).
Let CFR denote the nW×nFR sub-matrix of general constraints in the working set corresponding to the free variables, and let pFR denote the search direction with respect to the free variables only. The general constraints in the working set will be unaltered by any move along p if
CFRpFR=0. (3)
In order to compute pFR, the TQ factorization of CFR is used:
CFRQFR=(0T) (4)
where T is a nonsingular nW×nW reverse-triangular matrix (i.e., tij=0 if i+j<nW), and the nonsingular nFR×nFR matrix QFR is the product of orthogonal transformations (see Gill et al. (1984)). If the columns of QFR are partitioned so that
QFR=(ZY), (5)
where Y is nFR×nW, then the nZ(nZ=nFR-nW) columns of Z form a basis for the null space of CFR. Let nR be an integer such that 0nRnZ, and let Z1 denote a matrix whose nR columns are a subset of the columns of Z. (The integer nR is the quantity Zr in the monitoring file output from e04ncf/​e04nca. In many cases, Z1 will include all the columns of Z.) The direction pFR will satisfy (3) if
pFR=Z1pZ (6)
where pZ is any nR-vector.

11.3 Main Iteration

Let Q denote the n×n matrix
Q= ( QFR IFX ) , (7)
where IFX is the identity matrix of order nFX. Let R denote an n×n upper triangular matrix (the Cholesky factor) such that
RTR=HQQTH~Q, (8)
where H~ is the Hessian H with rows and columns permuted so that the free variables are first.
Let the matrix of the first nZ rows and columns of R be denoted by RZ. The definition of pZ in (6) depends on whether or not the matrix RZ is singular at x. In the nonsingular case, pZ satisfies the equations
RZT RZ pZ = - gZ (9)
where gZ denotes the vector ZTgFR and g denotes the objective gradient. (The norm of gFR is the printed quantity Norm Gf; see Section 13.) When pZ is defined by (9), x+p is the minimizer of the objective function subject to the constraints (bounds and general) in the working set treated as equalities. In general, a vector fZ is available such that RZT fZ = - gZ , which allows pZ to be computed from a single back-substitution RZpZ=fZ. For example, when solving problem LS1, fZ comprises the first nZ elements of the transformed residual vector
f=P(b-Ax), (10)
which is recurred from one iteration to the next, where P is an orthogonal matrix.
In the singular case, pZ is defined such that
RZ pZ = 0   and   gZT pZ < 0 . (11)
This vector has the property that the objective function is linear along p and may be reduced by any step of the form x+αp, where α>0.
The vector ZTgFR is known as the projected gradient at x. If the projected gradient is zero, x is a constrained stationary point in the subspace defined by Z. During the feasibility phase, the projected gradient will usually be zero only at a vertex (although it may be zero at non-vertices in the presence of constraint dependencies). During the optimality phase, a zero projected gradient implies that x minimizes the quadratic objective when the constraints in the working set are treated as equalities. At a constrained stationary point, Lagrange multipliers λc and λb for the general and bound constraints are defined from the equations
CFRTλC=gFRand ​λB=gFX-CFXTλC. (12)
Given a positive constant δ of the order of the machine precision, the Lagrange multiplier λj corresponding to an inequality constraint in the working set is said to be optimal if λjδ when the associated constraint is at its upper bound, or if λj-δ when the associated constraint is at its lower bound. If a multiplier is nonoptimal, the objective function (either the true objective or the sum of infeasibilities) can be reduced by deleting the corresponding constraint (with index Jdel; see Section 13) from the working set.
If optimal multipliers occur during the feasibility phase and the sum of infeasibilities is nonzero, there is no feasible point, and e04ncf/​e04nca will continue until the minimum value of the sum of infeasibilities has been found. At this point, the Lagrange multiplier λj corresponding to an inequality constraint in the working set will be such that -(1+δ)λjδ when the associated constraint is at its upper bound, and -δλj(1+δ) when the associated constraint is at its lower bound. Lagrange multipliers for equality constraints will satisfy |λj|1+δ.
The choice of step length is based on remaining feasible with respect to the satisfied constraints. If RZ is nonsingular and x+p is feasible, α will be taken as unity. In this case, the projected gradient at x¯ will be zero, and Lagrange multipliers are computed. Otherwise, α is set to αm, the step to the ‘nearest’ constraint (with index Jadd; see Section 13), which is added to the working set at the next iteration.
If A is not input as a triangular matrix, it is overwritten by a triangular matrix R satisfying (8) obtained using the Cholesky factorization in the QP case, or the QR factorization in the LS case. Column interchanges are used in both cases, and an estimate is made of the rank of the triangular factor. Thereafter, the dependent rows of R are eliminated from the problem.
Each change in the working set leads to a simple change to CFR: if the status of a general constraint changes, a row of CFR is altered; if a bound constraint enters or leaves the working set, a column of CFR changes. Explicit representations are recurred of the matrices T,QFR and R; and of vectors QTg, QTc and f, which are related by the formulae
f=Pb- ( R 0 ) QTx ,   (b0for the ​QP​ case) ,  
and
QTg=QTc-RTf.  
Note that the triangular factor R associated with the Hessian of the original problem is updated during both the optimality and the feasibility phases.
The treatment of the singular case depends critically on the following feature of the matrix updating schemes used in e04ncf/​e04nca: if a given factor RZ is nonsingular, it can become singular during subsequent iterations only when a constraint leaves the working set, in which case only its last diagonal element can become zero. This property implies that a vector satisfying (11) may be found using the single back-substitution R¯ZpZ=eZ, where R¯Z is the matrix RZ with a unit last diagonal, and eZ is a vector of all zeros except in the last position. If H is singular, the matrix R (and hence RZ) may be singular at the start of the optimality phase. However, RZ will be nonsingular if enough constraints are included in the initial working set. (The matrix with no rows and columns is positive definite by definition, corresponding to the case when CFR contains nFR constraints.) The idea is to include as many general constraints as necessary to ensure a nonsingular RZ.
At the beginning of each phase, an upper triangular matrix R1 is determined that is the largest nonsingular leading sub-matrix of RZ. The use of interchanges during the factorization of A tends to maximize the dimension of R1. (The rank of R1 is estimated using the optional parameter Rank Tolerance.) Let Z1 denote the columns of Z corresponding to R1, and let Z be partitioned as Z=(Z1Z2). A working set for which Z1 defines the null space can be obtained by including the rows of Z2T as ‘artificial constraints’. Minimization of the objective function then proceeds within the subspace defined by Z1.
The artificially augmented working set is given by
C¯FR= ( CFR Z2T ) , (13)
so that pFR will satisfy CFRpFR=0 and Z2T pFR = 0 . By definition of the TQ factorization, c¯FR automatically satisfies the following:
C¯FRQFR= ( CFR Z2T ) QFR= ( CFR Z2T ) ( Z1 Z2 Y ) = ( 0 T¯ ) ,  
where
T¯= ( 0 T I 0 ) ,  
and hence the TQ factorization of (13) requires no additional work.
The matrix Z2 need not be kept fixed, since its role is purely to define an appropriate null space; the TQ factorization can, therefore, be updated in the normal fashion as the iterations proceed. No work is required to ‘delete’ the artificial constraints associated with Z2 when Z1T gFR = 0 , since this simply involves repartitioning QFR. When deciding which constraint to delete, the ‘artificial’ multiplier vector associated with the rows of Z2T is equal to Z2T gFR , and the multipliers corresponding to the rows of the ‘true’ working set are the multipliers that would be obtained if the temporary constraints were not present.
The number of columns in Z2 and Z1 , the Euclidean norm of Z1T gFR , and the condition estimator of R1 appear in the monitoring file output as Art, Zr, Norm Gz and Cond Rz respectively (see Section 13).
Although the algorithm of e04ncf/​e04nca does not perform simplex steps in general, there is one exception: a linear program with fewer general constraints than variables (i.e., nLn). Use of the simplex method in this situation leads to savings in storage. At the starting point, the ‘natural’ working set (the set of constraints exactly or nearly satisfied at the starting point) is augmented with a suitable number of ‘temporary’ bounds, each of which has the effect of temporarily fixing a variable at its current value. In subsequent iterations, a temporary bound is treated as a standard constraint until it is deleted from the working set, in which case it is never added again.
One of the most important features of e04ncf/​e04nca is its control of the conditioning of the working set, whose nearness to linear dependence is estimated by the ratio of the largest to smallest diagonals of the TQ factor T (the printed value Cond T; see Section 13). In constructing the initial working set, constraints are excluded that would result in a large value of Cond T. Thereafter, e04ncf/​e04nca allows constraints to be violated by as much as a user-specified optional parameter Feasibility Tolerance in order to provide, whenever possible, a choice of constraints to be added to the working set at a given iteration. Let αm denote the maximum step at which x+αmp does not violate any constraint by more than its feasibility tolerance. All constraints at distance α(ααm) along p from the current point are then viewed as acceptable candidates for inclusion in the working set. The constraint whose normal makes the largest angle with the search direction is added to the working set. In order to ensure that the new iterate satisfies the constraints in the working set as accurately as possible, the step taken is the exact distance to the newly added constraint. As a consequence, negative steps are occasionally permitted, since the current iterate may violate the constraint to be added by as much as the feasibility tolerance.

12 Optional Parameters

Several optional parameters in e04ncf/​e04nca define choices in the problem specification or the algorithm logic. In order to reduce the number of formal arguments of e04ncf/​e04nca these optional parameters have associated default values that are appropriate for most problems. Therefore, you need only specify those optional parameters whose values are to be different from their default values.
The remainder of this section can be skipped if you wish to use the default values for all optional parameters.
The following is a list of the optional parameters available. A full description of each optional parameter is provided in Section 12.1.
Optional parameters may be specified by calling one, or both, of the routines e04ndf/​e04nda and e04nef/​e04nea before a call to e04ncf/​e04nca.
e04ndf/​e04nda reads options from an external options file, with Begin and End as the first and last lines respectively and each intermediate line defining a single optional parameter. For example,
Begin  
  Print level = 1  
End
The call
Call e04ndf/​e04nda (ioptns, inform)
can then be used to read the file on unit ioptns. inform will be zero on successful exit. e04ndf/​e04nda should be consulted for a full description of this method of supplying optional parameters.
e04nef/​e04nea can be called to supply options directly, one call being necessary for each optional parameter. For example,
Call e04nef ('Print Level = 1')
e04nef/​e04nea should be consulted for a full description of this method of supplying optional parameters.
All optional parameters not specified by you are set to their default values. Optional parameters specified by you are unaltered by e04ncf/​e04nca (unless they define invalid values) and so remain in effect for subsequent calls unless altered by you.

12.1 Description of the Optional Parameters

For each option, we give a summary line, a description of the optional parameter and details of constraints.
The summary line contains:
Keywords and character values are case and white space insensitive.
Cold Start Default
Warm Start
This option specifies how the initial working set is chosen. With a Cold Start, e04ncf/​e04nca chooses the initial working set based on the values of the variables and constraints at the initial point. Broadly speaking, the initial working set will include equality constraints and bounds or inequality constraints that violate or ‘nearly’ satisfy their bounds (to within Crash Tolerance).
With a Warm Start, you must provide a valid definition of every element of the array istate. e04ncf/​e04nca will override your specification of istate if necessary, so that a poor choice of the working set will not cause a fatal error. For instance, any elements of istate which are set to −2, −1 or 4 will be reset to zero, as will any elements which are set to 3 when the corresponding elements of bl and bu are not equal. A warm start will be advantageous if a good estimate of the initial working set is available – for example, when e04ncf/​e04nca is called repeatedly to solve related problems.
Crash TolerancerDefault =0.01
This value is used in conjunction with the optional parameter Cold Start (the default value) when e04ncf/​e04nca selects an initial working set. If 0r1, the initial working set will include (if possible) bounds or general inequality constraints that lie within r of their bounds. In particular, a constraint of the form cjT xl will be included in the initial working set if |cjTx-l| r (1+|l|) . If r<0 or r>1, the default value is used.
Defaults
This special keyword may be used to reset all optional parameters to their default values.
Feasibility Phase Iteration Limiti1Default =max(50,5(n+nL))
Optimality Phase Iteration Limiti2Default =max(50,5(n+nL))
The scalars i1 and i2 specify the maximum number of iterations allowed in the feasibility and optimality phases. Optional parameter Optimality Phase Iteration Limit is equivalent to optional parameter Iteration Limit. Setting i2=0 and Print Level>0 means that the workspace needed will be computed and printed, but no iterations will be performed. If i1<0 or i2<0, the default value is used.
Feasibility TolerancerDefault =ε
If r>ε, r defines the maximum acceptable absolute violation in each constraint at a ‘feasible’ point. For example, if the variables and the coefficients in the general constraints are of order unity, and the latter are correct to about 6 decimal digits, it would be appropriate to specify r as 10−6. If 0r<ε, the default value is used.
Note that a ‘feasible solution’ is a solution that satisfies the current constraints to within the tolerance r.
HessianYes/NoDefault =NO
This option controls the contents of the upper triangular matrix R (see the description of a in Section 5). e04ncf/​e04nca works exclusively with the transformed and reordered matrix HQ (8), and hence extra computation is required to form the Hessian itself. If Hessian=NO, a contains the Cholesky factor of the matrix HQ with columns ordered as indicated by kx (see Section 5). If Hessian=YES, a contains the Cholesky factor of the matrix H, with columns ordered as indicated by kx.
Infinite Bound SizerDefault =1020
If r>0, r defines the ‘infinite’ bound bigbnd in the definition of the problem constraints. Any upper bound greater than or equal to bigbnd will be regarded as + (and similarly any lower bound less than or equal to -bigbnd will be regarded as -). If r<0, the default value is used.
Infinite Step SizerDefault =max(bigbnd,1020)
If r>0, r specifies the magnitude of the change in variables that will be considered a step to an unbounded solution. (Note that an unbounded solution can occur only when the Hessian is singular and the objective contains an explicit linear term.) If the change in x during an iteration would exceed the value of r, the objective function is considered to be unbounded below in the feasible region. If r0, the default value is used.
Iteration LimitiDefault =max(50,5(n+nL))
Itersi
Itnsi
See optional parameter Feasibility Phase Iteration Limit.
List Default for e04ncf =List
Nolist Default for e04nca =Nolist
Optional parameter List enables printing of each optional parameter specification as it is supplied. Nolist suppresses this printing.
Monitoring FileiDefault =−1
If i0 and Print Level5, monitoring information produced by e04ncf/​e04nca at every iteration is sent to a file with logical unit number i. If i<0 and/or Print Level<5, no monitoring information is produced.
Print LeveliDefault for e04ncf =10
Default for e04nca =0
The value of i controls the amount of printout produced by e04ncf/​e04nca, as indicated below. A detailed description of the printed output is given in Section 9.2 (summary output at each iteration and the final solution) and Section 13 (monitoring information at each iteration).
The following printout is sent to the current advisory message unit (as defined by x04abf):
i Output
00 No output.
01 The final solution only.
05 One line of summary output (<80 characters; see Section 9.2) for each iteration (no printout of the final solution).
10 The final solution and one line of summary output for each iteration.
The following printout is sent to the unit number given by the optional parameter Monitoring File:
i Output
<5 No output.
5 One long line of output (>80 characters; see Section 13) for each iteration (no printout of the final solution).
20 At each iteration, the Lagrange multipliers, the variables x, the constraint values Cx and the constraint status.
30 At each iteration, the diagonal elements of the matrix T associated with the TQ factorization (4) (see Section 11.2) of the working set, and the diagonal elements of the upper triangular matrix R.
If Print Level5 and the unit number defined by the optional parameter Monitoring File is the same as that defined by x04abf, the summary output for each major iteration is suppressed.
Problem TypeaDefault = LS1
This option specifies the type of objective function to be minimized during the optimality phase. The following are the nine optional keywords and the dimensions of the arrays that must be specified in order to define the objective function:
LP a and b not referenced, length-n cvec;
QP1 a(lda,n) symmetric, b and cvec not referenced;
QP2 a(lda,n) symmetric, b not referenced, length-n cvec;
QP3 a(lda,n) upper trapezoidal, length-n kx, b and cvec not referenced;
QP4 a(lda,n) upper trapezoidal, length-n kx, b not referenced, length-n cvec;
LS1 a(lda,n), length-m b, cvec not referenced;
LS2 a(lda,n), length-m b, length-n cvec;
LS3 a(lda,n) upper trapezoidal, length-n kx, length-m b, cvec not referenced;
LS4 a(lda,n) upper trapezoidal, length-n kx, length-m b, length-n cvec.
For problems of type FP, the objective function is omitted and a, b and cvec are not referenced.
The following keywords are also acceptable. The minimum abbreviation of each keyword is underlined.
a Option
Least LS1
Quadratic QP2
Linear LP
In addition, the keywords LS and LSQ are equivalent to the default option LS1, and the keyword QP is equivalent to the option QP2.
If A=0, i.e., the objective function is purely linear, the efficiency of e04ncf/​e04nca may be increased by specifying a as LP.
Rank TolerancerDefault =100ε or 10ε (see below)
Note that this option does not apply to problems of type FP or LP.
The default value of r depends on the problem type. If A occurs as a least squares matrix, as it does in problem types QP1, LS1 and LS3, then the default value of r is 100ε. In all other cases, A is treated as the ‘square root’ of the Hessian matrix H and r has the default value 10ε.
This parameter enables you to control the estimate of the triangular factor R1 (see Section 11.3). If ρi denotes the function ρi=max{|R11|,|R22|,,|Rii|}, the rank of R is defined to be smallest index i such that |Ri+1,i+1|r|ρi+1|. If r0, the default value is used.

13 Description of Monitoring Information

This section describes the long line of output (>80 characters) which forms part of the monitoring information produced by e04ncf/​e04nca. (See also the description of the optional parameters Monitoring File and Print Level.) You can control the level of printed output.
To aid interpretation of the printed results, the following convention is used for numbering the constraints: indices 1 through n refer to the bounds on the variables, and indices n+1 through n+nL refer to the general constraints. When the status of a constraint changes, the index of the constraint is printed, along with the designation L (lower bound), U (upper bound), E (equality), F (temporarily fixed variable) or A (artificial constraint).
When Print Level5 and Monitoring File0, the following line of output is produced at every iteration on the unit number specified by optional parameter Monitoring File. In all cases, the values of the quantities printed are those in effect on completion of the given iteration.
Itn is the iteration count.
Jdel is the index of the constraint deleted from the working set. If Jdel is zero, no constraint was deleted.
Jadd is the index of the constraint added to the working set. If Jadd is zero, no constraint was added.
Step is the step taken along the computed search direction. If a constraint is added during the current iteration (i.e., Jadd is positive), Step will be the step to the nearest constraint. During the optimality phase, the step can be greater than 1 only if the factor RZ is singular.
Ninf is the number of violated constraints (infeasibilities). This will be zero during the optimality phase.
Sinf/Objective is the value of the current objective function. If x is not feasible, Sinf gives a weighted sum of the magnitudes of constraint violations. If x is feasible, Objective is the value of the objective function of (1). The output line for the final iteration of the feasibility phase (i.e., the first iteration for which Ninf is zero) will give the value of the true objective at the first feasible point.
During the optimality phase the value of the objective function will be nonincreasing. During the feasibility phase the number of constraint infeasibilities will not increase until either a feasible point is found or the optimality of the multipliers implies that no feasible point exists. Once optimal multipliers are obtained the number of infeasibilities can increase, but the sum of infeasibilities will either remain constant or be reduced until the minimum sum of infeasibilities is found.
Bnd is the number of simple bound constraints in the current working set.
Lin is the number of general linear constraints in the current working set.
Art is the number of artificial constraints in the working set, i.e., the number of columns of Z2 (see Section 11.3).
Zr is the number of columns of Z1 (see Section 11.2). Zr is the dimension of the subspace in which the objective function is currently being minimized. The value of Zr is the number of variables minus the number of constraints in the working set; i.e., Zr=n-(Bnd+Lin+Art).
The value of nZ, the number of columns of Z (see Section 11.2) can be calculated as nZ=n-(Bnd+Lin). A zero value of nZ implies that x lies at a vertex of the feasible region.
Norm Gz is Z1TgFR , the Euclidean norm of the reduced gradient with respect to Z1. During the optimality phase, this norm will be approximately zero after a unit step.
Norm Gf is the Euclidean norm of the gradient function with respect to the free variables, i.e., variables not currently held at a bound.
Cond T is a lower bound on the condition number of the working set.
Cond Rz is a lower bound on the condition number of the triangular factor R1 (the first Zr rows and columns of the factor RZ). If the problem is specified to be of type LP or the estimated rank of the data matrix A is zero then Cond Rz is not printed.