NAG Library Routine Document
E04KDF
1 Purpose
E04KDF is a comprehensive modified Newton algorithm for finding:
- – an unconstrained minimum of a function of several variables;
- – a minimum of a function of several variables subject to fixed upper and/or lower bounds on the variables.
First derivatives are required. The routine is intended for functions which have continuous first and second derivatives (although it will usually work even if the derivatives have occasional discontinuities).
2 Specification
SUBROUTINE E04KDF ( |
N, FUNCT, MONIT, IPRINT, MAXCAL, ETA, XTOL, DELTA, STEPMX, IBOUND, BL, BU, X, HESL, LH, HESD, ISTATE, F, G, IW, LIW, W, LW, IFAIL) |
INTEGER |
N, IPRINT, MAXCAL, IBOUND, LH, ISTATE(N), IW(LIW), LIW, LW, IFAIL |
REAL (KIND=nag_wp) |
ETA, XTOL, DELTA, STEPMX, BL(N), BU(N), X(N), HESL(LH), HESD(N), F, G(N), W(LW) |
EXTERNAL |
FUNCT, MONIT |
|
3 Description
E04KDF is applicable to problems of the form:
Special provision is made for unconstrained minimization (i.e., problems which actually have no bounds on the
), problems which have only non-negativity bounds, and problems in which
and
. It is possible to specify that a particular
should be held constant. You must supply a starting point, and a
FUNCT to calculate the value of
and its first derivatives
at any point
.
A typical iteration starts at the current point
where
(say) variables are free from their bounds. The vector
, whose elements are the derivatives of
with respect to the free variables, is known. The matrix of second derivatives with respect to the free variables,
, is estimated by finite differences. (Note that
and
are both of dimension
.) The equations
are solved to give a search direction
. (The matrix
is chosen so that
is positive definite.)
is then expanded to an -vector by the insertion of appropriate zero elements, is found such that is approximately a minimum (subject to the fixed bounds) with respect to ; and is replaced by . (If a saddle point is found, a special search is carried out so as to move away from the saddle point.) If any variable actually reaches a bound, 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 until the stronger convergence criteria are satisfied. If at this point there are no negative or near-zero Lagrange multiplier estimates, the process is terminated.
If you specify that the problem is unconstrained, E04KDF sets the to and the to . Thus, provided that the problem has been sensibly scaled, no bounds will be encountered during the minimization process and E04KDF will act as an unconstrained minimization algorithm.
4 References
Gill P E and Murray W (1973) Safeguarded steplength algorithms for optimization using descent methods NPL Report NAC 37 National Physical Laboratory
Gill P E and Murray W (1974) Newton-type methods for unconstrained and linearly constrained optimization Math. Program. 7 311–350
Gill P E and Murray W (1976) Minimization subject to bounds on the variables NPL Report NAC 72 National Physical Laboratory
5 Parameters
- 1: N – INTEGERInput
On entry: the number of independent variables.
Constraint:
.
- 2: FUNCT – SUBROUTINE, supplied by the user.External Procedure
FUNCT must evaluate the function
and its first derivatives
at a specified point. (However, if you do not wish to calculate
or its first derivatives at a particular
, there is the option of setting a parameter to cause E04KDF to terminate immediately.)
The specification of
FUNCT is:
INTEGER |
IFLAG, N, IW(LIW), LIW, LW |
REAL (KIND=nag_wp) |
XC(N), FC, GC(N), W(LW) |
|
- 1: IFLAG – INTEGERInput/Output
On entry: will have been set to or . The value indicates that only the first derivatives of need be supplied, and the value indicates that both itself and its first derivatives must be calculated.
On exit: if it is not possible to evaluate
or its first derivatives at the point given in
XC (or if it is wished to stop the calculations for any other reason) you should reset
IFLAG to a negative number and return control to E04KDF. E04KDF will then terminate immediately, with
IFAIL set to your setting of
IFLAG.
- 2: N – INTEGERInput
On entry: the number of variables.
- 3: XC(N) – REAL (KIND=nag_wp) arrayInput
On entry: the point at which the , or and the , are required.
- 4: FC – REAL (KIND=nag_wp)Output
On exit: unless
on entry or
IFLAG is reset,
FUNCT must set
FC to the value of the objective function
at the current point
.
- 5: GC(N) – REAL (KIND=nag_wp) arrayOutput
On exit: unless
FUNCT resets
IFLAG, it must set
to the value of the first derivative
at the point
, for
.
- 6: IW(LIW) – INTEGER arrayWorkspace
- 7: LIW – INTEGERInput
- 8: W(LW) – REAL (KIND=nag_wp) arrayWorkspace
- 9: LW – INTEGERInput
FUNCT is called with the same parameters
IW,
LIW,
W,
LW as for E04KDF. They are present so that, when other library routines require the solution of a minimization subproblem, constants needed for the function evaluation can be passed through
IW and
W. Similarly, you
could use elements
of
IW and elements from
onwards of
W for passing quantities to
FUNCT from the subroutine which calls E04KDF. However, because of the danger of mistakes in partitioning, it is recommended that you should pass information to
FUNCT via COMMON global variables and not use
IW or
W at all. In any case you must not change the first
elements of
IW or the first
elements of
W.
FUNCT must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which E04KDF is called. Parameters denoted as
Input must
not be changed by this procedure.
Note: FUNCT should be tested separately before being used in conjunction with E04KDF.
- 3: MONIT – SUBROUTINE, supplied by the user.External Procedure
If
, you must supply
MONIT which is suitable for monitoring the minimization process.
MONIT must not change the values of any of its parameters.
If
, a
MONIT with the correct parameter list must still be supplied, although it will not be called.
The specification of
MONIT is:
SUBROUTINE MONIT ( |
N, XC, FC, GC, ISTATE, GPJNRM, COND, POSDEF, NITER, NF, IW, LIW, W, LW) |
INTEGER |
N, ISTATE(N), NITER, NF, IW(LIW), LIW, LW |
REAL (KIND=nag_wp) |
XC(N), FC, GC(N), GPJNRM, COND, W(LW) |
LOGICAL |
POSDEF |
|
- 1: N – INTEGERInput
On entry: the number of variables.
- 2: XC(N) – REAL (KIND=nag_wp) arrayInput
On entry: the coordinates of the current point .
- 3: FC – REAL (KIND=nag_wp)Input
On entry: the value of at the current point .
- 4: GC(N) – REAL (KIND=nag_wp) arrayInput
On entry: the value of
at the current point , for .
- 5: ISTATE(N) – INTEGER arrayInput
On entry: information about which variables are currently fixed on their bounds and which are free.
If
is negative,
is currently:
– |
fixed on its upper bound if |
– |
fixed on its lower bound if |
– |
effectively a constant (i.e., ) if |
If is positive, its value gives the position of in the sequence of free variables.
- 6: GPJNRM – REAL (KIND=nag_wp)Input
On entry: the Euclidean norm of the current projected gradient vector .
- 7: COND – REAL (KIND=nag_wp)Input
On entry: the ratio of the largest to the smallest elements of the diagonal factor
of the approximated projected Hessian matrix. This quantity is usually a good estimate of the condition number of the projected Hessian matrix. (If no variables are currently free,
COND is set to zero.)
- 8: POSDEF – LOGICALInput
On entry: specifies .TRUE. or .FALSE. according to whether or not the approximation to the second derivative matrix for the current subspace, , is positive definite.
- 9: NITER – INTEGERInput
On entry: the number of iterations (as outlined in
Section 3) which have been performed by E04KDF so far.
- 10: NF – INTEGERInput
On entry: the number of evaluations of
so far, i.e., the number of calls of
FUNCT with
IFLAG set to
. Each such call of
FUNCT also calculates the first derivatives of
. (In addition to these calls monitored by
NF,
FUNCT is called with
IFLAG set to
not more than
N times per iteration.)
- 11: IW(LIW) – INTEGER arrayWorkspace
- 12: LIW – INTEGERInput
- 13: W(LW) – REAL (KIND=nag_wp) arrayWorkspace
- 14: LW – INTEGERInput
As in
FUNCT, these parameters correspond to the parameters
IW,
LIW,
W,
LW of E04KDF. They are included in
MONIT's parameter list primarily for when E04KDF is called by other library routines.
MONIT must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which E04KDF is called. Parameters denoted as
Input must
not be changed by this procedure.
You should normally print
FC,
GPJNRM and
COND to be able to compare the quantities mentioned in
Section 7. It is usually helpful to examine
XC,
POSDEF and
NF too.
- 4: IPRINT – INTEGERInput
On entry: the frequency with which
MONIT is to be called.
- MONIT is called once every IPRINT iterations and just before exit from E04KDF.
- MONIT is just called at the final point.
-
- MONIT is not called at all.
IPRINT should normally be set to a small positive number.
Suggested value:
.
- 5: MAXCAL – INTEGERInput
On entry: the maximum permitted number of evaluations of
, i.e., the maximum permitted number of calls of
FUNCT with
IFLAG set to
. It should be borne in mind that, in addition to the calls of
FUNCT which are limited directly by
MAXCAL, there will be calls of
FUNCT (with
IFLAG set to
) to evaluate only first derivatives.
Suggested value:
.
Constraint:
.
- 6: ETA – REAL (KIND=nag_wp)Input
On entry: every iteration of E04KDF involves a linear minimization (i.e., minimization of
with respect to
).
ETA specifies how accurately these linear minimizations are to be performed. The minimum with respect to
will be located more accurately for small values of
ETA (say,
) than large values (say,
).
Although accurate linear minimizations will generally reduce the number of iterations (and hence the number of calls of
FUNCT to estimate the second derivatives), they will tend to increase the number of calls of
FUNCT needed for each linear minimization. On balance, it is usually more efficient to perform a low accuracy linear minimization when
is small and a high accuracy minimization when
is large.
Suggested values:
- if ;
- if ;
- if .
If , ETA should be set to (also when the problem is effectively one-dimensional even though
; i.e., if for all except one of the variables the lower and upper bounds are equal).
Constraint:
.
- 7: XTOL – REAL (KIND=nag_wp)Input
On entry: the accuracy in
to which the solution is required.
If
is the true value of
at the minimum, then
, the estimated position before a normal exit, is such that
where
. For example, if the elements of
are not much larger than
in modulus, and if
XTOL is set to
, then
is usually accurate to about five decimal places. (For further details see
Section 7.)
If the problem is scaled as described in
Section 8.2 and
is the
machine precision, then
is probably the smallest reasonable choice for
XTOL. This is because, normally, to machine accuracy,
, for any
where
is the
th column of the identity matrix. If you set
XTOL to
(or any positive value less than
), E04KDF will use
instead of
XTOL.
Suggested value:
.
Constraint:
.
- 8: DELTA – REAL (KIND=nag_wp)Input
On entry: the differencing interval to be used for approximating the second derivatives of
. Thus, for the finite difference approximations, the first derivatives of
are evaluated at points which are
DELTA apart. If
is the
machine precision, then
will usually be a suitable setting for
DELTA. If you set
DELTA to
(or to any positive value less than
), E04KDF will automatically use
as the differencing interval.
Suggested value:
.
Constraint:
.
- 9: STEPMX – REAL (KIND=nag_wp)Input
On entry: an estimate of the Euclidean distance between the solution and the starting point supplied by you. (For maximum efficiency a slight overestimate is preferable.)
E04KDF will ensure that, for each iteration,
where
is the iteration number. Thus, if the problem has more than one solution, E04KDF is most likely to find the one nearest to the starting point. On difficult problems, a realistic choice can prevent the sequence of
entering a region where the problem is ill-behaved and can also help to avoid possible overflow in the evaluation of
. However, an underestimate of
STEPMX can lead to inefficiency.
Suggested value:
.
Constraint:
.
- 10: IBOUND – INTEGERInput
On entry: indicates whether the problem is unconstrained or bounded. If there are bounds on the variables,
IBOUND can be used to indicate 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 the variables are bounded and you are supplying all the and individually.
- If the problem is unconstrained.
- If the variables are bounded, but all the bounds are of the form .
- If all the variables are bounded, and and .
- If the problem is unconstrained. (The option is provided for consistency with other routines. In E04KDF it produces the same effect as )
Constraint:
.
- 11: BL(N) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the fixed lower bounds
.
If
IBOUND is set to
, you must set
to
, for
. (If a lower bound is not specified for any
, the corresponding
should be set to a large negative number, e.g.,
.)
If
IBOUND is set to
, you must set
to
; E04KDF will then set the remaining elements of
BL equal to
.
If
IBOUND is set to
,
or
,
BL will be initialized by E04KDF.
On exit: the lower bounds actually used by E04KDF, e.g., if , .
- 12: BU(N) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the fixed upper bounds
.
If
IBOUND is set to
, you must set
to
, for
. (If an upper bound is not specified for any variable, the corresponding
should be set to a large positive number, e.g.,
.)
If
IBOUND is set to
, you must set
to
; E04KDF will then set the remaining elements of
BU equal to
.
If
IBOUND is set to
,
or
,
BU will be initialized by E04KDF.
On exit: the upper bounds actually used by E04KDF, e.g., if , .
- 13: X(N) – 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 .
On exit: the final point . Thus, if on exit, is the th component of the estimated position of the minimum.
- 14: HESL(LH) – REAL (KIND=nag_wp) arrayOutput
On exit: during the determination of a direction
(see
Section 3),
is decomposed into the product
, where
is a unit lower triangular matrix and
is a diagonal matrix. (The matrices
,
,
and
are all of dimension
, where
is the number of variables free from their bounds.
consists of those rows and columns of the full estimated second derivative matrix which relate to free variables.
is chosen so that
is positive definite.)
HESL and
HESD are used to store the factors
and
. The elements of the strict lower triangle of
are stored row by row in the first
positions of
HESL. The diagonal elements of
are stored in the first
positions of
HESD. In the last factorization before a normal exit, the matrix
will be zero, so that
HESL and
HESD will contain, on exit, the factors of the final estimated second derivative matrix
. The elements of
HESD are useful for deciding whether to accept the results produced by E04KDF (see
Section 7).
- 15: LH – INTEGERInput
On entry: the dimension of the array
HESL as declared in the (sub)program from which E04KDF is called.
Constraint:
.
- 16: HESD(N) – REAL (KIND=nag_wp) arrayOutput
On exit: during the determination of a direction
(see
Section 3),
is decomposed into the product
, where
is a unit lower triangular matrix and
is a diagonal matrix. (The matrices
,
,
and
are all of dimension
, where
is the number of variables free from their bounds.
consists of those rows and columns of the full estimated second derivative matrix which relate to free variables.
is chosen so that
is positive definite.)
HESL and
HESD are used to store the factors
and
. The elements of the strict lower triangle of
are stored row by row in the first
positions of
HESL. The diagonal elements of
are stored in the first
positions of
HESD. In the last factorization before a normal exit, the matrix
will be zero, so that
HESL and
HESD will contain, on exit, the factors of the final estimated second derivative matrix
. The elements of
HESD are useful for deciding whether to accept the results produced by E04KDF (see
Section 7).
- 17: ISTATE(N) – INTEGER arrayOutput
On exit: information about which variables are currently on their bounds and which are free. If
is:
- – equal to , is fixed on its upper bound;
- – equal to , is fixed on its lower bound;
- – equal to , is effectively a constant (i.e., );
- – positive, gives the position of in the sequence of free variables.
- 18: F – REAL (KIND=nag_wp)Output
On exit: the function value at the final point given in
X.
- 19: G(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the first derivative vector corresponding to the final point given in
X. The components of
G corresponding to free variables should normally be close to zero.
- 20: IW(LIW) – INTEGER arrayCommunication Array
- 21: LIW – INTEGERInput
On entry: the dimension of the array
IW as declared in the (sub)program from which E04KDF is called.
Constraint:
.
- 22: W(LW) – REAL (KIND=nag_wp) arrayCommunication Array
- 23: LW – INTEGERInput
On entry: the dimension of the array
W as declared in the (sub)program from which E04KDF is called.
Constraint:
.
- 24: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction 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 parameters 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: E04KDF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
A negative value of
IFAIL indicates an exit from E04KDF because you have set
IFLAG negative in
FUNCT. The value of
IFAIL will be the same as your setting of
IFLAG.
On entry, | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | , |
or | for some if , |
or | if , |
or | , |
or | , |
or | . |
(Note that if you have set
XTOL or
DELTA to
, E04KDF uses the default values and continues without failing.) When this exit occurs, no values will have been assigned to
F or to the elements of
HESL,
HESD or
G.
There have been
MAXCAL function evaluations. If steady reductions in
were monitored up to the point where this exit occurred, then the exit probably occurred simply because
MAXCAL was set too small, so the calculations should be restarted from the final point held in
X. This exit 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.
Provided that, on exit, the first derivatives of
with respect to the free variables are sufficiently small, and that the estimated condition number of the second derivative matrix is not too large, this error exit may simply mean that, although it has not been possible to satisfy the specified requirements, the algorithm has in fact found the minimum as far as the accuracy of the machine permits. Such a situation can arise, for instance, if
XTOL has been set so small that rounding errors in the evaluation of
or its derivatives make it impossible to satisfy the convergence conditions.
If the estimated condition number of the second derivative matrix at the final point is large, it could be that the final point is a minimum, but that the smallest eigenvalue of the Hessian matrix is so close to zero that it is not possible to recognize the point as a minimum.
Not used. (This is done to make the significance of
similar for E04KDF and
E04LBF.)
All the Lagrange multiplier estimates which are not indisputably positive lie relatively close to zero, but it is impossible either to continue minimizing on the current subspace or to find a feasible lower point by releasing and perturbing any of the fixed variables. You should investigate as for .
The values
,
or
may also be caused by mistakes in
FUNCT, by the formulation of the problem or by an awkward function. If there are no such mistakes, 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.
7 Accuracy
A successful exit (
) is made from E04KDF when
is positive definite and when (B1, B2 and B3) or B4 hold, 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.)
If
, then the vector in
X on exit,
, is almost certainly an estimate of the position of the minimum,
, to the accuracy specified by
XTOL.
If
or
,
may still be a good estimate of
, but the following checks should be made. Let the largest of the first
elements of
HESD be
, let the smallest be
, and define
. The scalar
is usually a good estimate of the condition number of the projected Hessian matrix at
. If
(i) |
the sequence converges to at a superlinear or 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
. The quantities needed for these checks are all available via
MONIT; in particular the value of
COND in the last call of
MONIT before exit gives
.
Further suggestions about confirmation of a computed solution are given in the
E04 Chapter Introduction.
The number of iterations required depends on the number of variables, the behaviour of
, the accuracy demanded and the distance of the starting point from the solution. The number of multiplications performed in an iteration of E04KDF is
. In addition, each iteration makes
calls of
FUNCT (with
IFLAG set to
) in approximating the projected Hessian matrix, and at least one other call of
FUNCT (with
IFLAG set to
). So, unless
and its first derivatives can be evaluated very quickly, the run time will be dominated by the time spent in
FUNCT.
Ideally, the problem should be scaled so that, at the solution, and the corresponding values of are each in the range , and so that at points one unit away from the solution, differs from its value at the solution by approximately one unit. This will usually imply that the Hessian matrix at the solution is well-conditioned. 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 E04KDF will take less computer time.
If a problem is genuinely unconstrained and has been scaled sensibly, the following points apply:
(a) |
will always be , |
(b) |
HESL and HESD will be factors of the full estimated second derivative matrix with elements stored in the natural order, |
(c) |
the elements of should all be close to zero at the final point, |
(d) |
the values of the given by MONIT and on exit from E04KDF are unlikely to be of interest (unless they are negative, which would indicate that the modulus of one of the has reached for some reason), |
(e) |
MONIT's parameter GPJNRM simply gives the norm of the first derivative vector. |
So the following routine (in which partitions of extended workspace arrays are used as
BL,
BU and
ISTATE) could be used for unconstrained problems:
SUBROUTINE UNCKDF(N,FUNCT,MONIT,IPRINT,MAXCAL,ETA,XTOL,DELTA, &
STEPMX,X,HESL,LH,HESD,F,G,IWORK,LIWORK,WORK, &
LWORK,IFAIL)
! A ROUTINE TO APPLY E04KDF TO UNCONSTRAINED PROBLEMS.
! THE REAL ARRAY WORK MUST BE OF DIMENSION AT LEAST
! (9*N + MAX(1, N*(N-1)/2)). ITS FIRST 7*N + MAX(1, N*(N-1)/2)
! ELEMENTS WILL BE USED BY E04KDF AS THE ARRAY W. ITS LAST
! 2*N ELEMENTS WILL BE USED AS THE ARRAYS BL AND BU.
! THE INTEGER ARRAY IWORK MUST BE OF DIMENSION AT LEAST (N+2)
! ITS FIRST 2 ELEMENTS WILL BE USED BY E04KDF AS THE ARRAY IW.
! ITS LAST N ELEMENTS WILL BE USED AS THE ARRAY ISTATE.
! LIWORK AND LWORK MUST BE SET TO THE ACTUAL LENGTHS OF IWORK
! AND WORK RESPECTIVELY, AS DECLARED IN THE CALLING SEGMENT.
! OTHER PARAMETERS ARE AS FOR E04KDF.
! .. Parameters ..
INTEGER NOUT
PARAMETER (NOUT=6)
! .. Scalar Arguments ..
REAL (KIND=nag_wp) DELTA, ETA, F, STEPMX, XTOL
INTEGER IFAIL, IPRINT, LH, LIWORK, LWORK, MAXCAL, N
! .. Array Arguments ..
REAL (KIND=nag_wp) G(N), HESD(N), HESL(LH), WORK(LWORK), X(N)
INTEGER IWORK(LIWORK)
! .. Subroutine Arguments ..
EXTERNAL FUNCT, MONIT
! .. Local Scalars ..
INTEGER IBOUND, J, JBL, JBU, NH
LOGICAL TOOBIG
! .. External Subroutines ..
EXTERNAL E04KDF
! .. Executable Statements ..
! CHECK THAT SUFFICIENT WORKSPACE HAS BEEN SUPPLIED
NH = N*(N-1)/2
IF (NH.EQ.0) NH = 1
IF (LWORK.LT.9*N+NH .OR. LIWORK.LT.N+2) THEN
WRITE (NOUT,FMT=99999)
STOP
END IF
! JBL AND JBU SPECIFY THE PARTS OF WORK USED AS BL AND BU
JBL = 7*N + NH + 1
JBU = JBL + N
! SPECIFY THAT THE PROBLEM IS UNCONSTRAINED
IBOUND = 4
CALL E04KDF(N,FUNCT,MONIT,IPRINT,MAXCAL,ETA,XTOL,DELTA,STEPMX, &
IBOUND,WORK(JBL),WORK(JBU),X,HESL,LH,HESD,IWORK(3), &
F,G,IWORK,LIWORK,WORK,LWORK,IFAIL)
! CHECK THE PART OF IWORK WHICH WAS USED AS ISTATE IN CASE
! THE MODULUS OF SOME X(J) HAS REACHED E+6
TOOBIG = .FALSE.
DO 20 J = 1, N
IF (IWORK(2+J).LT.0) TOOBIG = .TRUE.
20 CONTINUE
IF ( .NOT. TOOBIG) RETURN
WRITE (NOUT,FMT=99998)
STOP
99999 FORMAT (' ***** INSUFFICIENT WORKSPACE HAS BEEN SUPPLIED *****')
99998 FORMAT (' ***** A VARIABLE HAS REACHED E+6 IN MODULUS - NO UNCON', &
'STRAINED MINIMUM HAS BEEN FOUND *****')
END
9 Example
A program to minimize
subject to the bounds
starting from the initial guess
. Before calling E04KDF, the program calls
E04HCF to check the first derivatives calculated by
FUNCT.
9.1 Program Text
Program Text (e04kdfe.f90)
9.2 Program Data
None.
9.3 Program Results
Program Results (e04kdfe.r)