NAG Library Routine Document

e05usf  (nlp_multistart_sqp_lsq)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

e05usf is designed to find the global minimum of an arbitrary smooth sum of squares function subject to constraints (which may include simple bounds on the variables, linear constraints and smooth nonlinear constraints) by generating a number of different starting points and performing a local search from each using sequential quadratic programming.

2
Specification

Fortran Interface
Integer, Intent (In):: m, n, nclin, ncnln, lda, npts, ldx, nb, ldfjac, sdfjac, ldc, ldcjac, sdcjac, ldclda, listat
Integer, Intent (Inout):: istate(listat,*), iopts(740), iuser(*), ifail
Integer, Intent (Out):: iter(nb), info(nb)
Real (Kind=nag_wp), Intent (In):: a(lda,*), bl(n+nclin+ncnln), bu(n+nclin+ncnln), y(m)
Real (Kind=nag_wp), Intent (Inout):: x(ldx,*), f(m,*), fjac(ldfjac,sdfjac,*), c(ldc,*), cjac(ldcjac,sdcjac,*), clamda(ldclda,*), opts(485), ruser(*)
Real (Kind=nag_wp), Intent (Out):: objf(nb)
Logical, Intent (In):: repeat1
External:: confun, objfun, start
C Header Interface
#include nagmk26.h
void  e05usf_ ( const Integer *m, const Integer *n, const Integer *nclin, const Integer *ncnln, const double a[], const Integer *lda, const double bl[], const double bu[], const double y[],
void (NAG_CALL *confun)( Integer *mode, const Integer *ncnln, const Integer *n, const Integer *ldcjsl, const Integer needc[], const double x[], double c[], double cjsl[], const Integer *nstate, Integer iuser[], double ruser[]),
void (NAG_CALL *objfun)( Integer *mode, const Integer *m, const Integer *n, const Integer *ldfjsl, const Integer *needfi, const double x[], double f[], double fjsl[], const Integer *nstate, Integer iuser[], double ruser[]),
const Integer *npts, double x[], const Integer *ldx,
void (NAG_CALL *start)( const Integer *npts, double quas[], const Integer *n, const logical *repeat1, const double bl[], const double bu[], Integer iuser[], double ruser[], Integer *mode),
const logical *repeat1, const Integer *nb, double objf[], double f[], double fjac[], const Integer *ldfjac, const Integer *sdfjac, Integer iter[], double c[], const Integer *ldc, double cjac[], const Integer *ldcjac, const Integer *sdcjac, double clamda[], const Integer *ldclda, Integer istate[], const Integer *listat, Integer iopts[], double opts[], Integer iuser[], double ruser[], Integer info[], Integer *ifail)
Before calling e05usf, the optional parameter arrays iopts and opts must be initialized for use with e05usf by calling e05zkf with optstr set to ‘Initialize = e05usf’. Optional parameters may subsequently be specified by calling e05zkf before the call to e05usf.

3
Description

The local minimization method is e04usa. The problem is assumed to be stated in the following form:
minimize xRn ​ ​ Fx = 12 i=1 m yi- fi x 2   subject to  l x ALx cx u, (1)
where Fx (the objective function) is a nonlinear function which can be represented as the sum of squares of m subfunctions y1-f1x,y2-f2x,,ym-fmx, the yi are constant, AL is an nL by n constant linear constraint matrix, and cx is an nN element 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, i.e., at least twice-continuously differentiable. (This routine will usually solve (1) if any isolated discontinuities are away from the solution.)
e05usf solves a user-specified number of local optimization problems with different starting points. You may specify the starting points via the subroutine start. If a random number generator is used to generate the starting points then the argument repeat1 allows you to specify whether a repeatable set of points are generated or whether different starting points are generated on different calls. The resulting local minima are ordered and the best nb results returned in order of ascending values of the resulting objective function values at the minima. Thus the value returned in position 1 will be the best result obtained. If a sufficiently high number of different points are chosen then this is likely to be the global minimum.

4
References

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

5
Arguments

1:     m – IntegerInput
On entry: m, the number of subfunctions associated with Fx.
Constraint: m>0.
2:     n – IntegerInput
On entry: n, the number of variables.
Constraint: n>0.
3:     nclin – IntegerInput
On entry: nL, the number of general linear constraints.
Constraint: nclin0.
4:     ncnln – IntegerInput
On entry: nN, the number of nonlinear constraints.
Constraint: ncnln0.
5:     alda* – Real (Kind=nag_wp) arrayInput
Note: the second dimension of the array a must be at least n if nclin>0, and at least 1 otherwise.
On entry: 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.
6:     lda – IntegerInput
On entry: the first dimension of the array a as declared in the (sub)program from which e05usf is called.
Constraint: ldanclin.
7:     bln+nclin+ncnln – Real (Kind=nag_wp) arrayInput
8:     bun+nclin+ncnln – Real (Kind=nag_wp) arrayInput
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 blj-bigbnd, and to specify a nonexistent upper bound (i.e., uj=+), set bujbigbnd; 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 blj=buj=β, say, where β<bigbnd.
Constraints:
  • bljbuj, for j=1,2,,n+nclin+ncnln;
  • if blj=buj=β, β<bigbnd.
9:     ym – Real (Kind=nag_wp) arrayInput
On entry: the coefficients of the constant vector y of the objective function.
10:   confun – Subroutine, supplied by the NAG Library or the user.External Procedure
confun must calculate the vector cx of nonlinear constraint functions and (optionally) its Jacobian (= c x ) for a specified n-element vector x. If there are no nonlinear constraints (i.e., ncnln=0), confun will never be called by e05usf and confun may be the dummy routine e05udm. (e05udm is included in the NAG Library.) If there are nonlinear constraints, the first call to confun will occur before the first call to objfun.
The specification of confun is:
Fortran Interface
Subroutine confun ( mode, ncnln, n, ldcjsl, needc, x, c, cjsl, nstate, iuser, ruser)
Integer, Intent (In):: ncnln, n, ldcjsl, needc(ncnln), nstate
Integer, Intent (Inout):: mode, iuser(*)
Real (Kind=nag_wp), Intent (In):: x(n)
Real (Kind=nag_wp), Intent (Inout):: cjsl(ldcjsl,*), ruser(*)
Real (Kind=nag_wp), Intent (Out):: c(ncnln)
C Header Interface
#include nagmk26.h
void  confun ( Integer *mode, const Integer *ncnln, const Integer *n, const Integer *ldcjsl, const Integer needc[], const double x[], double c[], double cjsl[], const Integer *nstate, Integer iuser[], double ruser[])
1:     mode – IntegerInput/Output
On entry: indicates which values must be assigned during each call of confun. Only the following values need be assigned, for each value of i such that needci>0:
mode=0
ci, the ith nonlinear constraint.
mode=1
All available elements in the ith row of cjsl.
mode=2
ci and all available elements in the ith row of cjsl.
On exit: may be set to a negative value if you wish to abandon the solution to the current local minimization problem. In this case e05usf will move to the next local minimization problem.
2:     ncnln – IntegerInput
On entry: nN, the number of nonlinear constraints.
3:     n – IntegerInput
On entry: n, the number of variables.
4:     ldcjsl – IntegerInput
On entry: ldcjsl is the first dimension of the array cjsl.
5:     needcncnln – Integer arrayInput
On entry: the indices of the elements of c and/or cjsl that must be evaluated by confun. If needci>0, ci and/or the available elements of the ith row of cjsl (see argument mode) must be evaluated at x.
6:     xn – Real (Kind=nag_wp) arrayInput
On entry: x, the vector of variables at which the constraint functions and/or the available elements of the constraint Jacobian are to be evaluated.
7:     cncnln – Real (Kind=nag_wp) arrayOutput
On exit: if needci>0 and mode=0 or 2, ci must contain the value of cix. The remaining elements of c, corresponding to the non-positive elements of needc, need not be set.
8:     cjslldcjsl* – Real (Kind=nag_wp) arrayInput/Output
cjsl may be regarded as a two-dimensional ‘slice’ of the three-dimensional array cjac of e05usf.
On entry: unless Derivative Level=2 or 3, the elements of cjsl are set to special values which enable e05usf to detect whether they are changed by confun.
On exit: if needci>0 and mode=1 or 2, the ith row of cjsl must contain the available elements of the vector ci given by
ci= ci x1 , ci x2 ,, ci xn T,  
where ci xj  is the partial derivative of the ith constraint with respect to the jth variable, evaluated at the point x. See also the argument nstate. The remaining rows of cjsl, corresponding to non-positive elements of needc, need not be set.
If all elements of the constraint Jacobian are known (i.e., Derivative Level=2 or 3; note the default is Derivative Level=3), any constant elements may be assigned to cjsl one time only at the start of each local optimization. An element of cjsl that is not subsequently assigned in confun will retain its initial value throughout the local optimization. Constant elements may be loaded into cjsl during the first call to confun for the local optimization (signalled by the value nstate=1). The ability to preload constants is useful when many Jacobian elements are identically zero, in which case cjsl may be initialized to zero and nonzero elements may be reset by confun.
Note that constant nonzero elements do affect the values of the constraints. Thus, if cjslij is set to a constant value, it need not be reset in subsequent calls to confun, but the value cjslij×xj must nonetheless be added to ci. For example, if cjsl11=2 and cjsl12=-5 then the term 2×x1-5×x2 must be included in the definition of c1.
It must be emphasized that, if Derivative Level=0 or 1, unassigned elements of cjsl are not treated as constant; they are estimated by finite differences, at nontrivial expense. If you do not supply a value for the optional parameter Difference Interval, an interval for each element of x is computed automatically at the start of each local optimization. The automatic procedure can usually identify constant elements of cjsl, which are then computed once only by finite differences.
9:     nstate – IntegerInput
On entry: if nstate=1 then e05usf is calling confun for the first time on the current local optimization problem. This argument setting allows you to save computation time if certain data must be read or calculated only once.
10:   iuser* – Integer arrayUser Workspace
11:   ruser* – Real (Kind=nag_wp) arrayUser Workspace
confun is called with the arguments iuser and ruser as supplied to e05usf. You should use the arrays iuser and ruser to supply information to confun.
confun must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e05usf is called. Arguments denoted as Input must not be changed by this procedure.
Note: confun should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e05usf. If your code inadvertently does return any NaNs or infinities, e05usf is likely to produce unexpected results.
confun should be tested separately before being used in conjunction with e05usf. See also the description of the optional parameter Verify.
11:   objfun – Subroutine, supplied by the user.External Procedure
objfun must calculate either the ith element of the vector fx = f1x,f2x,,fmxT  or all m elements of fx and (optionally) its Jacobian (= f x ) for a specified n-element vector x.
The specification of objfun is:
Fortran Interface
Subroutine objfun ( mode, m, n, ldfjsl, needfi, x, f, fjsl, nstate, iuser, ruser)
Integer, Intent (In):: m, n, ldfjsl, needfi, nstate
Integer, Intent (Inout):: mode, iuser(*)
Real (Kind=nag_wp), Intent (In):: x(n)
Real (Kind=nag_wp), Intent (Inout):: fjsl(ldfjsl,*), ruser(*)
Real (Kind=nag_wp), Intent (Out):: f(m)
C Header Interface
#include nagmk26.h
void  objfun ( Integer *mode, const Integer *m, const Integer *n, const Integer *ldfjsl, const Integer *needfi, const double x[], double f[], double fjsl[], const Integer *nstate, Integer iuser[], double ruser[])
1:     mode – IntegerInput/Output
On entry: indicates which values must be assigned during each call of objfun. Only the following values need be assigned:
mode=0 and needfi=i, where i>0
fi.
mode=0 and needfi<0
f.
mode=1 and needfi<0
All available elements of fjsl.
mode=2 and needfi<0
f and all available elements of fjsl.
On exit: may be set to a negative value if you wish to abandon the solution to the current local minimization problem. In this case e05usf will move to the next local minimization problem.
2:     m – IntegerInput
On entry: m, the number of subfunctions.
3:     n – IntegerInput
On entry: n, the number of variables.
4:     ldfjsl – IntegerInput
On entry: ldfjsl is the first dimension of the array fjsl.
5:     needfi – IntegerInput
On entry: if needfi=i>0, only the ith element of fx needs to be evaluated at x; the remaining elements need not be set. This can result in significant computational savings when mn.
6:     xn – Real (Kind=nag_wp) arrayInput
On entry: x, the vector of variables at which the objective function and/or all available elements of its gradient are to be evaluated.
7:     fm – Real (Kind=nag_wp) arrayOutput
On exit: if mode=0 and needfi=i>0, fi must contain the value of fi at x.
If mode=0 or 2 and needfi<0, fi must contain the value of fi at x, for i=1,2,,m.
8:     fjslldfjsl* – Real (Kind=nag_wp) arrayInput/Output
fjsl may be regarded as a two-dimensional ‘slice’ of the three-dimensional array fjac of e05usf.
On entry: is set to a special value.
On exit: if mode=1 or 2 and needfi<0, the ith row of fjsl must contain the available elements of the vector fi given by
fi = fi/ x1, fi/ x2 ,, fi/ xn T ,  
evaluated at the point x. See also the argument nstate.
9:     nstate – IntegerInput
On entry: if nstate=1 then e05usf is calling objfun for the first time on the current local optimization problem. This argument setting allows you to save computation time if certain data must be read or calculated only once.
10:   iuser* – Integer arrayUser Workspace
11:   ruser* – Real (Kind=nag_wp) arrayUser Workspace
objfun is called with the arguments iuser and ruser as supplied to e05usf. You should use the arrays iuser and ruser to supply information to objfun.
objfun must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e05usf is called. Arguments denoted as Input must not be changed by this procedure.
Note: objfun should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e05usf. If your code inadvertently does return any NaNs or infinities, e05usf is likely to produce unexpected results.
objfun should be tested separately before being used in conjunction with e05usf. See also the description of the optional parameter Verify.
12:   npts – IntegerInput
On entry: the number of different starting points to be generated and used. The more points used, the more likely that the best returned solution will be a global minimum.
Constraint: 1nbnpts.
13:   xldx* – Real (Kind=nag_wp) arrayOutput
Note: the second dimension of the array x must be at least nb.
On exit: xji contains the final estimate of the ith solution, for j=1,2,,n.
14:   ldx – IntegerInput
On entry: the first dimension of the array x as declared in the (sub)program from which e05usf is called.
Constraint: ldxn.
15:   start – Subroutine, supplied by the NAG Library or the user.External Procedure
start must calculate the npts starting points to be used by the local optimizer. If you do not wish to write a routine specific to your problem then e05ucz may be used as the actual argument. e05ucz is supplied in the NAG Library and uses the NAG quasi-random number generators to distribute starting points uniformly across the domain. It is affected by the value of repeat1.
The specification of start is:
Fortran Interface
Subroutine start ( npts, quas, n, repeat1, bl, bu, iuser, ruser, mode)
Integer, Intent (In):: npts, n
Integer, Intent (Inout):: iuser(*), mode
Real (Kind=nag_wp), Intent (In):: bl(n), bu(n)
Real (Kind=nag_wp), Intent (Inout):: quas(n,npts), ruser(*)
Logical, Intent (In):: repeat1
C Header Interface
#include nagmk26.h
void  start ( const Integer *npts, double quas[], const Integer *n, const logical *repeat1, const double bl[], const double bu[], Integer iuser[], double ruser[], Integer *mode)
1:     npts – IntegerInput
On entry: indicates the number of starting points.
2:     quasnnpts – Real (Kind=nag_wp) arrayInput/Output
On entry: all elements of quas will have been set to zero, so only nonzero values need be set subsequently.
On exit: must contain the starting points for the npts local minimizations, i.e., quasji must contain the jth component of the ith starting point.
3:     n – IntegerInput
On entry: the number of variables.
4:     repeat1 – LogicalInput
On entry: specifies whether a repeatable or non-repeatable sequence of points are to be generated.
5:     bln – Real (Kind=nag_wp) arrayInput
On entry: the lower bounds on the variables. These may be used to ensure that the starting points generated in some sense ‘cover’ the region, but there is no requirement that a starting point be feasible.
6:     bun – Real (Kind=nag_wp) arrayInput
On entry: the upper bounds on the variables. (See bl.)
7:     iuser* – Integer arrayUser Workspace
8:     ruser* – Real (Kind=nag_wp) arrayUser Workspace
start is called with the arguments iuser and ruser as supplied to e05usf. You should use the arrays iuser and ruser to supply information to start.
9:     mode – IntegerInput/Output
On entry: mode will contain 0.
On exit: if you set mode to a negative value then e05usf will terminate immediately with ifail=9.
start must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e05usf is called. Arguments denoted as Input must not be changed by this procedure.
Note: start should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e05usf. If your code inadvertently does return any NaNs or infinities, e05usf is likely to produce unexpected results.
16:   repeat1 – LogicalInput
On entry: is passed as an argument to start and may be used to initialize a random number generator to a repeatable, or non-repeatable, sequence. See Section 9 for more detail.
17:   nb – IntegerInput
On entry: the number of solutions to be returned. The routine saves up to nb local minima ordered by increasing value of the final objective function. If the defining criterion for ‘best solution’ is only that the value of the objective function is as small as possible then nb should be set to 1. However, if you want to look at other solutions that may have desirable properties then setting nb>1 will produce nb local minima, ordered by increasing value of their objective functions at the minima.
Constraint: 1nbnpts.
18:   objfnb – Real (Kind=nag_wp) arrayOutput
On exit: objfi contains the value of the objective function at the final iterate for the ith solution.
19:   fm* – Real (Kind=nag_wp) arrayOutput
Note: the second dimension of the array f must be at least nb.
On exit: fji contains the value of the jth function fj at the final iterate, for j=1,2,,m, for the ith solution, for i=1,2,,nb.
20:   fjacldfjacsdfjac* – Real (Kind=nag_wp) arrayOutput
Note: the last dimension of the array fjac must be at least nb.
On exit: for the ith returned solution, the Jacobian matrix of the functions f1 , f2 ,, fm  at the final iterate, i.e., fjackji contains the partial derivative of the kth function with respect to the jth variable, for k=1,2,,m, j=1,2,,n and i=1,2,,nb. (See also the discussion of argument fjsl under objfun.)
21:   ldfjac – IntegerInput
On entry: the first dimension of the array fjac as declared in the (sub)program from which e05usf is called.
Constraint: ldfjacm.
22:   sdfjac – IntegerInput
On entry: the second dimension of the array fjac as declared in the (sub)program from which e05usf is called.
Constraint: sdfjacn.
23:   iternb – Integer arrayOutput
On exit: iteri contains the number of major iterations performed to obtain the ith solution. If less than nb solutions are returned then iternb contains the number of starting points that have resulted in a converged solution. If this is close to npts then this might be indicative that fewer than nb local minima exist.
24:   cldc* – Real (Kind=nag_wp) arrayOutput
Note: the second dimension of the array c must be at least nb.
On exit: if ncnln>0, cji contains the value of the jth nonlinear constraint function cj at the final iterate, for the ith solution, for j=1,2,,ncnln.
If ncnln=0, the array c is not referenced.
25:   ldc – IntegerInput
On entry: the first dimension of the array c as declared in the (sub)program from which e05usf is called.
Constraint: ldcncnln.
26:   cjacldcjacsdcjac* – Real (Kind=nag_wp) arrayOutput
Note: the last dimension of the array cjac must be at least nb.
On exit: if ncnln>0, cjac contains the Jacobian matrices of the nonlinear constraint functions at the final iterate for each of the returned solutions, i.e., cjackji contains the partial derivative of the kth constraint function with respect to the jth variable, for k=1,2,,ncnln and j=1,2,,n, for the ith solution. (See the discussion of argument cjsl under confun.)
If ncnln=0, the array cjac is not referenced.
27:   ldcjac – IntegerInput
On entry: the first dimension of the array cjac as declared in the (sub)program from which e05usf is called.
Constraint: ldcjacncnln.
28:   sdcjac – IntegerInput
On entry: the second dimension of the array cjac as declared in the (sub)program from which e05usf is called.
Constraint: if ncnln>0, sdcjacn.
29:   clamdaldclda* – Real (Kind=nag_wp) arrayOutput
Note: the second dimension of the array clamda must be at least nb.
On exit: the values of the QP multipliers from the last QP subproblem solved for the ith solution. clamdaji should be non-negative if istateji=1 and non-positive if istateji=2.
30:   ldclda – IntegerInput
On entry: the first dimension of the array clamda as declared in the (sub)program from which e05usf is called.
Constraint: ldcldan+nclin+ncnln.
31:   istatelistat* – Integer arrayOutput
Note: the second dimension of the array istate must be at least nb.
On exit: istateji contains the status of the constraints in the QP working set for the ith solution. The significance of each possible value of istateji is as follows:
istateji Meaning
-0 The constraint is satisfied to within the feasibility tolerance, but is not in the QP working set.
-1 This inequality constraint is included in the QP working set at its lower bound.
-2 This inequality constraint is included in the QP working set at its upper bound.
-3 This constraint is included in the QP working set as an equality. This value of istate can occur only when blj=buj.
32:   listat – IntegerInput
On entry: the first dimension of the array istate as declared in the (sub)program from which e05usf is called.
Constraint: listatn+nclin+ncnln.
33:   iopts740 – Integer arrayCommunication Array
34:   opts485 – Real (Kind=nag_wp) arrayCommunication Array
The arrays iopts and opts must not be altered between calls to any of the routines e05usf and e05zkf.
35:   iuser* – Integer arrayUser Workspace
36:   ruser* – Real (Kind=nag_wp) arrayUser Workspace
iuser and ruser are not used by e05usf, but are passed directly to confun, objfun and start and may be used to pass information to these routines.
With SMP-enabled versions of e05usf the arrays iuser and ruser provided are classified as OpenMP shared memory. Use of iuser and ruser has to take account of this in order to preserve thread safety whenever information is written back to either of these arrays.
37:   infonb – Integer arrayOutput
On exit: if ifail=0, infoi does not contain an error value returned by e04usf/e04usa .
If ifail=8 on exit, then not all nb solutions have been found, and infonb contains the number of solutions actually found.
38:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if ifail0 on exit, the recommended value is -1. 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).

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).
Note: e05usf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
ifail=1
An input value is incorrect. One or more of the following requirements are violated:
  • On entry, bli>bui: i=value.
    Constraint: blibui, for all i.
  • On entry, lda=value and nclin=value.
    Constraint: ldanclin.
  • On entry, ldc=value and ncnln=value.
    Constraint: ldcncnln.
  • On entry, ldcjac=value and ncnln=value.
    Constraint: ldcjacncnln.
  • On entry, ldclda=value, n=value, nclin=value and ncnln=value.
    Constraint: ldcldan+nclin+ncnln.
  • On entry, ldfjac=value and m=value.
    Constraint: ldfjacm.
  • On entry, ldx=value and n=value.
    Constraint: ldxn.
  • On entry, listat=value, n=value, nclin=value and ncnln=value.
    Constraint: listatn+nclin+ncnln.
  • On entry, m=value.
    Constraint: m>0.
  • On entry, n=value.
    Constraint: n>0.
  • On entry, nb=value and npts=value.
    Constraint: 1nbnpts.
  • On entry, nclin=value.
    Constraint: nclin0.
  • On entry, ncnln=value.
    Constraint: ncnln0.
  • On entry, ncnln>0, sdcjac=value and n=value.
    Constraint: if ncnln>0, sdcjacn.
  • On entry, sdfjac=value and n=value.
    Constraint: sdfjacn.
ifail=2
e05usf has terminated without finding any solutions. The majority of calls to the local optimizer have failed to find a feasible point for the linear constraints and bounds, which means that either no feasible point exists for the given value of the optional parameter Linear Feasibility Tolerance (default value macheps, where macheps is the machine precision), or no feasible point could be found in the number of iterations specified by the optional parameter Minor Iteration Limit. You should check that there are no constraint redundancies. If the data for the constraints are accurate only to an absolute precision σ, you should ensure that the value of the optional parameter Linear Feasibility Tolerance is greater than σ. For example, if all elements of AL are of order unity and are accurate to only three decimal places, Linear Feasibility Tolerance should be at least 10-3.
No solution obtained. Linear constraints may be infeasible.
ifail=3
e05usf has failed to find any solutions. The majority of local optimizations could not find a feasible point for the nonlinear constraints. The problem may have no feasible solution. This behaviour will occur if there is no feasible point for the nonlinear constraints. (However, there is no general test that can determine whether a feasible point exists for a set of nonlinear constraints.)
No solution obtained. Nonlinear constraints may be infeasible.
ifail=4
e05usf has failed to find any solutions. The majority of local optimizations have failed because the limiting number of iterations have been reached.
No solution obtained. Many potential solutions reach iteration limit.
ifail=7
The user-supplied derivatives of the objective function and/or nonlinear constraints appear to be incorrect.
Large errors were found in the derivatives of the objective function and/or nonlinear constraints. This value of ifail will occur if the verification process indicated that at least one gradient or Jacobian element had no correct figures. You should refer to or enable the printed output to determine which elements are suspected to be in error.
As a first-step, you should check that the code for the objective and constraint values is correct – for example, by computing the function at a point where the correct value is known. However, care should be taken that the chosen point fully tests the evaluation of the function. It is remarkable how often the values x=0 or x=1 are used to test function evaluation procedures, and how often the special properties of these numbers make the test meaningless.
Gradient checking will be ineffective if the objective function uses information computed by the constraints, since they are not necessarily computed before each function evaluation.
Errors in programming the function may be quite subtle in that the function value is ‘almost’ correct. For example, the function may not be accurate to full precision because of the inaccurate calculation of a subsidiary quantity, or the limited accuracy of data upon which the function depends. A common error on machines where numerical calculations are usually performed in double precision is to include even one single precision constant in the calculation of the function; since some compilers do not convert such constants to double precision, half the correct figures may be lost by such a seemingly trivial error.
ifail=8
Only value solutions obtained.
Not all nb solutions have been found. infonb contains the number actually found.
ifail=9
User terminated computation from start procedure: mode=value.
If e05ucz has been used as an actual argument for start then the message displayed, when ifail=0 or -1 on entry to e05usf, will have the following meaning:
998 failure to allocate space, a smaller value of NPTS should be tried.
997 an internal error has occurred. Please contact NAG for assistance.
ifail=10
Failed to initialize optional parameter arrays.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

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

8
Parallelism and Performance

e05usf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library. In these implementations, this routine may make calls to the user-supplied functions from within an OpenMP parallel region. Thus OpenMP directives within the user functions can only be used if you are compiling the user-supplied function and linking the executable in accordance with the instructions in the Users' Note for your implementation. The user workspace arrays iuser and ruser are classified as OpenMP shared memory and use of iuser and ruser has to take account of this in order to preserve thread safety whenever information is written back to either of these arrays. If at all possible, it is recommended that these arrays are only used to supply read-only data to the user functions when a multithreaded implementation is being used.
e05usf 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

You should be wary of requesting much intermediate output from the local optimizer, since large volumes may be produced if npts is large.
The auxiliary routine e05ucz smakes use of the NAG quasi-random Sobol generator (g05ylf and g05ymf). If e05ucz is used as the actual argument for start and repeat1=.FALSE. then a randomly chosen value for iskip is used, otherwise iskip is set to 100. If repeat1 is set to .FALSE. and the program is executed several times, each time producing the same best answer, then there is increased probability that this answer is a global minimum. However, if it is important that identical results be obtained on successive runs, then repeat1 should be set to .TRUE..

9.1
Description of the Printed Output

See Section 9.1 in e04usf/e04usa.

10
Example

This example is based on Problem 57 in Hock and Schittkowski (1981) and involves the minimization of the sum of squares function
Fx = 12 i=1 44 yi - fi x 2 ,  
where
fi x = x1 + 0.49-x1 e -x2 ai- 8  
and
i yi ai i yi ai 1 0.49 8 23 0.41 22 2 0.49 8 24 0.40 22 3 0.48 10 25 0.42 24 4 0.47 10 26 0.40 24 5 0.48 10 27 0.40 24 6 0.47 10 28 0.41 26 7 0.46 12 29 0.40 26 8 0.46 12 30 0.41 26 9 0.45 12 31 0.41 28 10 0.43 12 32 0.40 28 11 0.45 14 33 0.40 30 12 0.43 14 34 0.40 30 13 0.43 14 35 0.38 30 14 0.44 16 36 0.41 32 15 0.43 16 37 0.40 32 16 0.43 16 38 0.40 34 17 0.46 18 39 0.41 36 18 0.45 18 40 0.38 36 19 0.42 20 41 0.40 38 20 0.42 20 42 0.40 38 21 0.43 20 43 0.39 40 22 0.41 22 44 0.39 42  
subject to the bounds
x1-0.4 x2-4.0  
to the general linear constraint
x1+x21.0  
and to the nonlinear constraint
0.49x2-x1 x2 0.09 .  
The optimal solution (to five figures) is
x*=0.41995,1.28484T,  
and Fx*=0.01423. The nonlinear constraint is active at the solution.
The document for e04uqf/e04uqa includes an example program to solve the same problem using some of the optional parameters described in Section 12.

10.1
Program Text

Program Text (e05usfe.f90)

10.2
Program Data

Program Data (e05usfe.d)

10.3
Program Results

Program Results (e05usfe.r)

11
Algorithmic Details

See Section 11 in e04usf/e04usa.

12
Optional Parameters

Several optional parameters in e05usf define choices in the problem specification or the algorithm logic. In order to reduce the number of formal arguments of e05usf 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.
Optional parameters may be specified by calling e05zkf before a call to e05usf. Before calling e05usf, the optional parameter arrays iopts and opts must be initialized for use with e05usf by calling e05zkf with optstr set to ‘Initialize = e05usf’.
All optional parameters not specified are set to their default values. Optional parameters specified are unaltered by e05usf (unless they define invalid values) and so remain in effect for subsequent calls to e05usf.
See Section 12 in e04usf/e04usa for full details.
The Warm Start option of e04usf/e04usa is not a valid option for use with e05usf.
e05usf supports two options that are distinct from those of e04usf/e04usa:
Punch UnitiDefault =6
This option allows you to send information arising from an appropriate setting of Out_Level to be sent to the Fortran unit number defined by Punch Unit. If you wish this file to be different to the standard output unit (6) where other output is displayed then this file should be attached by calling x04acf prior to calling e05usf.
Out_LeveliDefault =0
This option defines the amount of extra information to be sent to the Fortran unit number defined by Punch Unit. The possible choices for i are the following:
i Meaning
0 No extra output.
1 Updated solutions only. This is useful during long runs to observe progress.
2 Successful start points only. This is useful to save the starting points that gave rise to the final solution.
3 Both updated solutions and successful start points.

13
Description of Monitoring Information

See Section 13 in e04usf/e04usa.
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017