NAG Library Routine Document
e04kyf
(bounds_quasi_deriv_easy)
1
Purpose
e04kyf is an easy-to-use quasi-Newton algorithm for finding a minimum of a function , subject to fixed upper and lower bounds on the independent variables , when first derivatives of are available.
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 e04kyf ( |
n,
ibound,
funct2,
bl,
bu,
x,
f,
g,
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,
g(n),
w(lw) | External | :: |
funct2 |
|
C Header Interface
#include nagmk26.h
void |
e04kyf_ (
const Integer *n,
const Integer *ibound,
void (NAG_CALL *funct2)(
const Integer *n,
const double xc[],
double *fc,
double gc[],
Integer iuser[],
double ruser[]),
double bl[],
double bu[],
double x[],
double *f,
double g[],
Integer iw[],
const Integer *liw,
double w[],
const Integer *lw,
Integer iuser[],
double ruser[],
Integer *ifail) |
|
3
Description
e04kyf is applicable to problems of the form:
when first derivatives are available.
Special provision is made for problems which actually have no bounds on the , problems which have only non-negativity bounds, and problems in which and . You must supply a subroutine to calculate the values of and its first derivatives at any point .
From a starting point you supplied there is generated, on the basis of estimates of the curvature of , 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
where
(say) variables are free from both their bounds. The projected gradient vector
, whose elements are the derivatives of
with respect to the free variables, is known. A unit lower triangular matrix
and a diagonal matrix
(both of dimension
), such that
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
are solved to give a search direction
, which is expanded to an
-vector
by an insertion of appropriate zero elements. Then
is found such that
is approximately a minimum (subject to the fixed bounds) with respect to
;
is replaced by
, and the matrices
and
are updated so as to be consistent with the change produced in the gradient by the step
. If any variable actually reaches a bound during the search along
, it is fixed and
is reduced for the next iteration.
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., 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: – IntegerInput
-
On entry: the number of independent variables.
Constraint:
.
- 2: – IntegerInput
-
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:
- If you are supplying all the and individually.
- If there are no bounds on any .
- If all the bounds are of the form .
- If and .
Constraint:
.
- 3: – Subroutine, supplied by the user.External Procedure
-
You must supply
funct2 to calculate the values of the function
and its first derivative
at any point
. It should be tested separately before being used in conjunction with
e04kyf (see the
E04 Chapter Introduction).
The specification of
funct2 is:
Fortran Interface
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,
gc(n) |
|
C Header Interface
#include nagmk26.h
void |
funct2 (
const Integer *n,
const double xc[],
double *fc,
double gc[],
Integer iuser[],
double ruser[]) |
|
- 1: – IntegerInput
-
On entry: the number of variables.
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry: the point at which the function and derivatives are required.
- 3: – Real (Kind=nag_wp)Output
-
On exit: the value of the function at the current point .
- 4: – Real (Kind=nag_wp) arrayOutput
-
On exit: must be set to the value of the first derivative at the point , for .
- 5: – Integer arrayUser Workspace
- 6: – Real (Kind=nag_wp) arrayUser Workspace
-
funct2 is called with the arguments
iuser and
ruser as supplied to
e04kyf. You should use the arrays
iuser and
ruser to supply information to
funct2.
funct2 must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which
e04kyf is called. Arguments denoted as
Input must
not be changed by this procedure.
Note: funct2 should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by
e04kyf. If your code inadvertently
does return any NaNs or infinities,
e04kyf is likely to produce unexpected results.
- 4: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the lower bounds
.
If
ibound is set to
, you must set
to
, for
. (If a lower bound is not specified for a particular
, the corresponding
should be set to
.)
If
ibound is set to
, you must set
to
;
e04kyf will then set the remaining elements of
bl equal to
.
On exit: the lower bounds actually used by e04kyf.
- 5: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the upper bounds
.
If
ibound is set to
, you must set
to
, for
. (If an upper bound is not specified for a particular
, the corresponding
should be set to
.)
If
ibound is set to
, you must set
to
;
e04kyf will then set the remaining elements of
bu equal to
.
On exit: the upper bounds actually used by e04kyf.
- 6: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: must be set to a guess at the th component of the position of the minimum, for . The routine checks the gradient at the starting point, and is more likely to detect any error in your programming if the initial are nonzero and mutually distinct.
On exit: the lowest point found during the calculations. Thus, if on exit, is the th component of the position of the minimum.
- 7: – Real (Kind=nag_wp)Output
-
On exit: the value of
corresponding to the final point stored in
x.
- 8: – Real (Kind=nag_wp) arrayOutput
-
On exit: the value of
corresponding to the final point stored in
x, for
; the value of
for variables not on a bound should normally be close to zero.
- 9: – Integer arrayOutput
-
On exit: if
,
or
, the first
n elements of
iw contain information about which variables are currently on their bounds and which are free. Specifically, if
is:
– |
fixed on its upper bound, is ; |
– |
fixed on its lower bound, is ; |
– |
effectively a constant (i.e., ), is ; |
– |
free, gives its position in the sequence of free variables. |
In addition, contains the number of free variables (i.e., ). The rest of the array is used as workspace.
- 10: – IntegerInput
-
On entry: the dimension of the array
iw as declared in the (sub)program from which
e04kyf is called.
Constraint:
.
- 11: – Real (Kind=nag_wp) arrayOutput
-
On exit: if , or ,
contains the th element of the projected gradient vector , for . In addition, contains an estimate of the condition number of the projected Hessian matrix (i.e., ). The rest of the array is used as workspace.
- 12: – IntegerInput
-
On entry: the dimension of the array
w as declared in the (sub)program from which
e04kyf is called.
Constraint:
.
- 13: – Integer arrayUser Workspace
- 14: – Real (Kind=nag_wp) arrayUser Workspace
-
iuser and
ruser are not used by
e04kyf, but are passed directly to
funct2 and may be used to pass information to this routine.
- 15: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. 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
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if
on exit, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Note: e04kyf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
On entry, | , |
or | , |
or | , |
or | and for some , |
or | and , |
or | , |
or | . |
-
There have been
function evaluations, yet 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
has no minimum.
The conditions for a minimum have not all been met but a lower point could not be found and the algorithm has failed.
An overflow has occurred during the computation. This is an unlikely failure, but if it occurs you should restart at the latest point given in
x.
-
There is some doubt about whether the point
found by
e04kyf is a minimum. The degree of confidence in the result decreases as
ifail increases. Thus, when
it is probable that the final
gives a good estimate of the position of a minimum, but when
it is very unlikely that the routine has found a minimum.
-
In the search for a minimum, the modulus of one of the variables has become very large
. This indicates that there is a mistake in
funct2, that your problem has no finite solution, or that the problem needs rescaling (see
Section 9).
-
It is very likely that you have made an error in forming the gradient.
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.
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.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
If you are dissatisfied with the result (e.g., because
,
,
or
), 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 it may be advisable to try
e04kzf.
7
Accuracy
A successful exit (
) is made from
e04kyf when (B1, B2 and B3) or B4 hold, and the local search confirms a minimum, where
- .
(Quantities with superscript
are the values at the
th iteration of the quantities mentioned in
Section 3,
,
is the
machine precision and
denotes the Euclidean norm. The vector
is returned in the array
w.)
If
, then the vector in
x on exit,
, is almost certainly an estimate of the position of the minimum,
, to the accuracy specified by
.
If
or
,
may still be a good estimate of
, but the following checks should be made. Let
denote an estimate of the condition number of the projected Hessian matrix at
. (The value of
is returned in
). If
(i) |
the sequence converges to at a superlinear or a fast linear rate, |
(ii) |
and |
(iii) |
, |
then it is almost certain that
is a close approximation to the position of a minimum. When (ii) is true, then usually
is a close approximation to
.
When a successful exit is made then, for a computer with a mantissa of decimals, one would expect to get about decimals accuracy in , and about decimals accuracy in , provided the problem is reasonably well scaled.
8
Parallelism and Performance
e04kyf 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.
The number of iterations required depends on the number of variables, the behaviour of
and the distance of the starting point from the solution. The number of operations performed in an iteration of
e04kyf is roughly proportional to
. In addition, each iteration makes at least one call of
funct2. So, unless
and the gradient vector can be evaluated very quickly, the run time will be dominated by the time spent in
funct2.
Ideally the problem should be scaled so that at the solution the value of and the corresponding values of are each in the range , and so that at points a unit distance away from the solution, 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 e04kyf will take less computer time.
10
Example
A program to minimize
subject to
starting from the initial guess
.
10.1
Program Text
Program Text (e04kyfe.f90)
10.2
Program Data
None.
10.3
Program Results
Program Results (e04kyfe.r)