e04jy is an easy-to-use quasi-Newton algorithm for finding a minimum of a function , subject to fixed upper and lower bounds of the independent variables , 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).
Syntax
C# |
---|
public static void e04jy( int n, int ibound, E04..::..E04JY_FUNCT1 funct1, double[] bl, double[] bu, double[] x, out double f, out int nftotl, int[] bndinfo, out int freevar, double[] fdiff, out double phm, out int ifail ) |
Visual Basic |
---|
Public Shared Sub e04jy ( _ n As Integer, _ ibound As Integer, _ funct1 As E04..::..E04JY_FUNCT1, _ bl As Double(), _ bu As Double(), _ x As Double(), _ <OutAttribute> ByRef f As Double, _ <OutAttribute> ByRef nftotl As Integer, _ bndinfo As Integer(), _ <OutAttribute> ByRef freevar As Integer, _ fdiff As Double(), _ <OutAttribute> ByRef phm As Double, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void e04jy( int n, int ibound, E04..::..E04JY_FUNCT1^ funct1, array<double>^ bl, array<double>^ bu, array<double>^ x, [OutAttribute] double% f, [OutAttribute] int% nftotl, array<int>^ bndinfo, [OutAttribute] int% freevar, array<double>^ fdiff, [OutAttribute] double% phm, [OutAttribute] int% ifail ) |
F# |
---|
static member e04jy : n : int * ibound : int * funct1 : E04..::..E04JY_FUNCT1 * bl : float[] * bu : float[] * x : float[] * f : float byref * nftotl : int byref * bndinfo : int[] * freevar : int byref * fdiff : float[] * phm : float byref * ifail : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: the number of independent variables.Constraint: .
- ibound
- Type: System..::..Int32On 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 .
- funct1
- Type: NagLibrary..::..E04..::..E04JY_FUNCT1You must supply funct1 to calculate the value of the function at any point . It should be tested separately before being used with e04jy (see the E04 class).
A delegate of type E04JY_FUNCT1.
- bl
- Type: array<System..::..Double>[]()[][]An array of size [n]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 .)On exit: the lower bounds actually used by e04jy.
- bu
- Type: array<System..::..Double>[]()[][]An array of size [n]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 .)On exit: the upper bounds actually used by e04jy.
- x
- Type: array<System..::..Double>[]()[][]An array of size [n]On entry: must be set to an estimate of the th component of the position of the minimum, for .On exit: the lowest point found during the calculations. Thus, if on exit, is the th component of the position of the minimum.
- f
- Type: System..::..Double%On exit: the value of corresponding to the final point stored in x.
- nftotl
- Type: System..::..Int32%On exit: this is used to return the total number of function evaluations.
- bndinfo
- Type: array<System..::..Int32>[]()[][]An array of size [n]On exit: if , or , bndinfo 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.
- freevar
- Type: System..::..Int32%On exit:contains the number of free variables (i.e., ).
- fdiff
- Type: array<System..::..Double>[]()[][]An array of size [n]On exit: if , or , contains a finite-difference approximation to the th element of the projected gradient vector , for
- phm
- Type: System..::..Double%On exit: contains an estimate of the condition number of the projected Hessian matrix (i.e., )
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
e04jy is applicable to problems of the form:
when derivatives of are unavailable.
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 method to calculate the value of at any point .
From a starting point you supplied there is generated, on the basis of estimates of the gradient and 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 finite difference approximations to 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 estimated 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. Most iterations calculate 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., 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.
References
Gill P E and Murray W (1976) Minimization subject to bounds on the variables NPL Report NAC 72 National Physical Laboratory
Error Indicators and Warnings
Note: e04jy may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface
(IW, LIW, W, LW) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
On entry, , or , or , or and for some , or and ,
- 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 e04jy 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 method 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 funct1, that your problem has no finite solution, or that the problem needs rescaling (see [Further Comments]).
- The computed set of forward-difference intervals (stored in ) is such that for some .This is an unlikely failure, but if it occurs you should attempt to select another starting point.
- An error occured, see message report.
- Negative dimension for array
- Invalid Parameters
- Invalid dimension for array
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 and the gradient can be calculated, it may be advisable to change to a method which uses gradients (see the E04 class).
Accuracy
A successful exit () is made from e04jy when (, and ) or hold, and the local search confirms a minimum, where
- .
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
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 .
(i) | the sequence converges to at a superlinear or a fast linear rate, |
(ii) | , and |
(iii) | , |
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.
Parallelism and Performance
None.
Further Comments
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 e04jy is roughly proportional to . In addition, each iteration makes at least calls of funct1, where is the number of variables not fixed on bounds. So, unless 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 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 e04jy will take less computer time.
Example
To minimize
subject to
starting from the initial guess .