NAG FL Interface
e04jyf (bounds_​quasi_​func_​easy)

1 Purpose

e04jyf is an easy-to-use quasi-Newton algorithm for finding a minimum of a function Fx1,x2,,xn, subject to fixed upper and lower bounds of the independent variables x1,x2,,xn, using function values only.
It is intended for functions which are continuous and which have continuous first and second derivatives (although it will usually work even if the derivatives have occasional discontinuities).

2 Specification

Fortran Interface
Subroutine e04jyf ( n, ibound, funct1, bl, bu, x, f, iw, liw, w, lw, iuser, ruser, ifail)
Integer, Intent (In) :: n, ibound, liw, lw
Integer, Intent (Inout) :: iuser(*), ifail
Integer, Intent (Out) :: iw(liw)
Real (Kind=nag_wp), Intent (Inout) :: bl(n), bu(n), x(n), ruser(*)
Real (Kind=nag_wp), Intent (Out) :: f, w(lw)
External :: funct1
C Header Interface
#include <nag.h>
void  e04jyf_ (const Integer *n, const Integer *ibound,
void (NAG_CALL *funct1)(const Integer *n, const double xc[], double *fc, Integer iuser[], double ruser[]),
double bl[], double bu[], double x[], double *f, Integer iw[], const Integer *liw, double w[], const Integer *lw, Integer iuser[], double ruser[], Integer *ifail)
The routine may be called by the names e04jyf or nagf_opt_bounds_quasi_func_easy.

3 Description

e04jyf is applicable to problems of the form:
Minimize Fx1,x2,,xn  subject to  ljxjuj,  j=1,2,,n  
when derivatives of Fx are unavailable.
Special provision is made for problems which actually have no bounds on the xj, problems which have only non-negativity bounds and problems in which l1=l2==ln and u1=u2==un. You must supply a subroutine to calculate the value of Fx at any point x.
From a starting point you supplied there is generated, on the basis of estimates of the gradient and the curvature of Fx, a sequence of feasible points which is intended to converge to a local minimum of the constrained function. An attempt is made to verify that the final point is a minimum.
A typical iteration starts at the current point x where nz (say) variables are free from both their bounds. The projected gradient vector gz, whose elements are finite difference approximations to the derivatives of Fx with respect to the free variables, is known. A unit lower triangular matrix L and a diagonal matrix D (both of dimension nz), such that LDLT is a positive definite approximation of the matrix of second derivatives with respect to the free variables (i.e., the projected Hessian) are also held. The equations
LDLTpz=-gz  
are solved to give a search direction pz, which is expanded to an n-vector p by an insertion of appropriate zero elements. Then α is found such that Fx+αp is approximately a minimum (subject to the fixed bounds) with respect to α; x is replaced by x+αp, and the matrices L and D are updated so as to be consistent with the change produced in the estimated gradient by the step αp. If any variable actually reaches a bound during the search along p, it is fixed and nz is reduced for the next iteration. Most iterations calculate gz using forward differences, but central differences are used when they seem necessary.
There are two sets of convergence criteria – a weaker and a stronger. Whenever the weaker criteria are satisfied, the Lagrange multipliers are estimated for all the active constraints. If any Lagrange multiplier estimate is significantly negative, then one of the variables associated with a negative Lagrange multiplier estimate is released from its bound and the next search direction is computed in the extended subspace (i.e., nz is increased). Otherwise minimization continues in the current subspace provided that this is practicable. When it is not, or when the stronger convergence criteria are already satisfied, then, if one or more Lagrange multiplier estimates are close to zero, a slight perturbation is made in the values of the corresponding variables in turn until a lower function value is obtained. The normal algorithm is then resumed from the perturbed point.
If a saddle point is suspected, a local search is carried out with a view to moving away from the saddle point. A local search is also performed when a point is found which is thought to be a constrained minimum.

4 References

Gill P E and Murray W (1976) Minimization subject to bounds on the variables NPL Report NAC 72 National Physical Laboratory

5 Arguments

1: n Integer Input
On entry: the number n of independent variables.
Constraint: n1.
2: ibound Integer Input
On entry: indicates whether the facility for dealing with bounds of special forms is to be used.
It must be set to one of the following values:
ibound=0
If you are supplying all the lj and uj individually.
ibound=1
If there are no bounds on any xj.
ibound=2
If all the bounds are of the form 0xj.
ibound=3
If l1=l2==ln and u1=u2==un.
3: funct1 Subroutine, supplied by the user. External Procedure
You must supply funct1 to calculate the value of the function Fx at any point x. It should be tested separately before being used with e04jyf (see the E04 Chapter Introduction).
The specification of funct1 is:
Fortran Interface
Subroutine funct1 ( n, xc, fc, iuser, ruser)
Integer, Intent (In) :: n
Integer, Intent (Inout) :: iuser(*)
Real (Kind=nag_wp), Intent (In) :: xc(n)
Real (Kind=nag_wp), Intent (Inout) :: ruser(*)
Real (Kind=nag_wp), Intent (Out) :: fc
C Header Interface
void  funct1_ (const Integer *n, const double xc[], double *fc, Integer iuser[], double ruser[])
1: n Integer Input
On entry: the number n of variables.
2: xcn Real (Kind=nag_wp) array Input
On entry: the point x at which the function value is required.
3: fc Real (Kind=nag_wp) Output
On exit: the value of the function F at the current point x.
4: iuser* Integer array User Workspace
5: ruser* Real (Kind=nag_wp) array User Workspace
funct1 is called with the arguments iuser and ruser as supplied to e04jyf. You should use the arrays iuser and ruser to supply information to funct1.
funct1 must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which e04jyf is called. Arguments denoted as Input must not be changed by this procedure.
Note: funct1 should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by e04jyf. If your code inadvertently does return any NaNs or infinities, e04jyf is likely to produce unexpected results.
4: bln Real (Kind=nag_wp) array Input/Output
On entry: the lower bounds lj.
If ibound is set to 0, you must set blj to lj, for j=1,2,,n. (If a lower bound is not specified for a particular xj, the corresponding blj should be set to -106.)
If ibound is set to 3, you must set bl1 to l1; e04jyf will then set the remaining elements of bl equal to bl1.
On exit: the lower bounds actually used by e04jyf.
5: bun Real (Kind=nag_wp) array Input/Output
On entry: the upper bounds uj.
If ibound is set to 0, you must set buj to uj, for j=1,2,,n. (If an upper bound is not specified for a particular xj, the corresponding buj should be set to 106.)
If ibound is set to 3, you must set bu1 to u1; e04jyf will then set the remaining elements of bu equal to bu1.
On exit: the upper bounds actually used by e04jyf.
6: xn Real (Kind=nag_wp) array Input/Output
On entry: xj must be set to an estimate of the jth component of the position of the minimum, for j=1,2,,n.
On exit: the lowest point found during the calculations. Thus, if ifail=0 on exit, xj is the jth component of the position of the minimum.
7: f Real (Kind=nag_wp) Output
On exit: the value of Fx corresponding to the final point stored in x.
8: iwliw Integer array Output
On exit: if ifail=0, 3 or 5, the first n elements of iw contain information about which variables are currently on their bounds and which are free. Specifically, if xi is:
  • fixed on its upper bound, iwi is -1;
  • fixed on its lower bound, iwi is -2;
  • effectively a constant (i.e., lj=uj), iwi is -3;
  • free, iwi gives its position in the sequence of free variables.
In addition, iwn+1 contains the number of free variables (i.e., nz). The rest of the array is used as workspace.
9: liw Integer Input
On entry: the dimension of the array iw as declared in the (sub)program from which e04jyf is called.
Constraint: liwn+2.
10: wlw Real (Kind=nag_wp) array Output
On exit: if ifail=0, 3 or 5, wi contains a finite difference approximation to the ith element of the projected gradient vector gz, for i=1,2,,n. In addition, wn+1 contains an estimate of the condition number of the projected Hessian matrix (i.e., k). The rest of the array is used as workspace.
11: lw Integer Input
On entry: the dimension of the array w as declared in the (sub)program from which e04jyf is called.
Constraint: lwmaxn×n-1/2+12×n,13.
12: iuser* Integer array User Workspace
13: ruser* Real (Kind=nag_wp) array User Workspace
iuser and ruser are not used by e04jyf, but are passed directly to funct1 and may be used to pass information to this routine.
14: ifail Integer Input/Output
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).

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 e04jyf may return useful information.
If you are not satisfied with the result (e.g., because ifail=5, 6, 7 or 8), it is worth restarting the calculations from a different starting point (not the point at which the failure occurred) in order to avoid the region which caused the failure. If persistent trouble occurs and the gradient can be calculated, it may be advisable to change to a routine which uses gradients (see the E04 Chapter Introduction).
ifail=1
On entry, either ibound=0 and blj>buj for some j, or ibound=3 and bl1>bu1.
On entry, ibound=value.
Constraint: 0ibound3.
On entry, liw=value.
Constraint: liwvalue.
On entry, lw=value.
Constraint: lwvalue.
On entry, n=value.
Constraint: n1.
ifail=2
There have been 400×n calls to funct1.
The algorithm does not seem to be converging. The calculations can be restarted from the final point held in x. The error may also indicate that Fx has no minimum.
ifail=3
The conditions for a minimum have not all been met but a lower point could not be found and the algorithm has failed.
ifail=4
An overflow occurred during computation.
This is an unlikely failure, but if it occurs you should restart at the latest point given in x.
ifail=5
It is probable that a local minimum has been found, but it cannot be guaranteed.
ifail=6
It is probable that a local minimum has been found, but it cannot be guaranteed.
ifail=7
It is unlikely that a local minimum has been found.
ifail=8
It is very unlikely that a local minimum has been found.
ifail=9
The modulus of a variable has become very large. There may be a mistake in funct1, your problem has no finite solution, or the problem needs rescaling.
ifail=10
One of the forward differences was negative.
The computed set of forward-difference intervals (stored in w9×n+1,w9×n+2,, w10×n) is such that xi+w9×n+ixi for some i.
This is an unlikely failure, but if it occurs you should attempt to select another starting point.
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

A successful exit (ifail=0) is made from e04jyf when (B1, B2 and B3) or B4 hold, and the local search confirms a minimum, where (Quantities with superscript k are the values at the kth iteration of the quantities mentioned in Section 3, xtol=100ε, ε is the machine precision and . denotes the Euclidean norm. The vector gz is returned in the array w.)
If ifail=0, then the vector in x on exit, xsol, is almost certainly an estimate of the position of the minimum, xtrue, to the accuracy specified by xtol.
If ifail=3 or 5, xsol may still be a good estimate of xtrue, but the following checks should be made. Let k denote an estimate of the condition number of the projected Hessian matrix at xsol. (The value of k is returned in wn+1). If
  1. (i)the sequence Fx k converges to Fxsol at a superlinear or a fast linear rate,
  2. (ii)gzxxol2<10.0×ε, and
  3. (iii)k<1.0/gzxsol,
then it is almost certain that xsol is a close approximation to the position of a minimum. When (ii) is true, then usually Fxsol is a close approximation to Fxtrue.
When a successful exit is made then, for a computer with a mantissa of t decimals, one would expect to get about t/2-1 decimals accuracy in x and about t-1 decimals accuracy in F, provided the problem is reasonably well scaled.

8 Parallelism and Performance

e04jyf 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

The number of iterations required depends on the number of variables, the behaviour of Fx and the distance of the starting point from the solution. The number of operations performed in an iteration of e04jyf is roughly proportional to n2. In addition, each iteration makes at least m+1 calls of funct1, where m is the number of variables not fixed on bounds. So, unless Fx can be evaluated very quickly, the run time will be dominated by the time spent in funct1.
Ideally the problem should be scaled so that at the solution the value of Fx and the corresponding values of x1,x2,,xn are each in the range -1,+1, and so that at points a unit distance away from the solution, F is approximately a unit value greater than at the minimum. It is unlikely that you will be able to follow these recommendations very closely, but it is worth trying (by guesswork), as sensible scaling will reduce the difficulty of the minimization problem, so that e04jyf will take less computer time.

10 Example

To minimize
F= x1+10x2 2+5 x3-x4 2+ x2-2x3 4+10 x1-x4 4  
subject to
-1x1 3, -2x2 0, -1x4 3,  
starting from the initial guess 3,-1,0,1 .

10.1 Program Text

Program Text (e04jyfe.f90)

10.2 Program Data

None.

10.3 Program Results

Program Results (e04jyfe.r)