e05uc is designed to find the global minimum of an arbitrary smooth 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.
Syntax
C# |
---|
public static void e05uc( int n, int nclin, int ncnln, double[,] a, double[] bl, double[] bu, E05..::..E05UC_CONFUN confun, E05..::..E05UC_OBJFUN objfun, int npts, double[,] x, E05..::..E05UC_START start, bool repeat, int nb, double[] objf, double[,] objgrd, int[] iter, double[,] c, double[,,] cjac, int sdcjac, double[,,] r, int sdr, double[,] clamda, int[,] istate, E05..::..e05ucOptions options, int[] info, out int ifail ) |
Visual Basic |
---|
Public Shared Sub e05uc ( _ n As Integer, _ nclin As Integer, _ ncnln As Integer, _ a As Double(,), _ bl As Double(), _ bu As Double(), _ confun As E05..::..E05UC_CONFUN, _ objfun As E05..::..E05UC_OBJFUN, _ npts As Integer, _ x As Double(,), _ start As E05..::..E05UC_START, _ repeat As Boolean, _ nb As Integer, _ objf As Double(), _ objgrd As Double(,), _ iter As Integer(), _ c As Double(,), _ cjac As Double(,,), _ sdcjac As Integer, _ r As Double(,,), _ sdr As Integer, _ clamda As Double(,), _ istate As Integer(,), _ options As E05..::..e05ucOptions, _ info As Integer(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void e05uc( int n, int nclin, int ncnln, array<double,2>^ a, array<double>^ bl, array<double>^ bu, E05..::..E05UC_CONFUN^ confun, E05..::..E05UC_OBJFUN^ objfun, int npts, array<double,2>^ x, E05..::..E05UC_START^ start, bool repeat, int nb, array<double>^ objf, array<double,2>^ objgrd, array<int>^ iter, array<double,2>^ c, array<double,3>^ cjac, int sdcjac, array<double,3>^ r, int sdr, array<double,2>^ clamda, array<int,2>^ istate, E05..::..e05ucOptions^ options, array<int>^ info, [OutAttribute] int% ifail ) |
F# |
---|
static member e05uc : n : int * nclin : int * ncnln : int * a : float[,] * bl : float[] * bu : float[] * confun : E05..::..E05UC_CONFUN * objfun : E05..::..E05UC_OBJFUN * npts : int * x : float[,] * start : E05..::..E05UC_START * repeat : bool * nb : int * objf : float[] * objgrd : float[,] * iter : int[] * c : float[,] * cjac : float[,,] * sdcjac : int * r : float[,,] * sdr : int * clamda : float[,] * istate : int[,] * options : E05..::..e05ucOptions * info : int[] * ifail : int byref -> unit |
Parameters
- n
- Type: System..::..Int32On entry: , the number of variables.Constraint: .
- nclin
- Type: System..::..Int32On entry: , the number of general linear constraints.Constraint: .
- ncnln
- Type: System..::..Int32On entry: , the number of nonlinear constraints.Constraint: .
- a
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array a must be at least if , and at least otherwise.On entry: the matrix of general linear constraints in (1). That is, the th row contains the coefficients of the th general linear constraint, for .If , the array a is not referenced.
- bl
- Type: array<System..::..Double>[]()[][]An array of size []On entry: bl must contain the lower bounds and bu the upper bounds for all the constraints in the following order. The first elements of each array must contain the bounds on the variables, the next elements the bounds for the general linear constraints (if any) and the next elements the bounds for the general nonlinear constraints (if any). To specify a nonexistent lower bound (i.e., ), set , and to specify a nonexistent upper bound (i.e., ), set ; the default value of is , but this may be changed by the optional parameter Infinite Bound Size. To specify the th constraint as an equality, set , say, where .Constraints:
- , for ;
- if , .
- bu
- Type: array<System..::..Double>[]()[][]An array of size []On entry: bl must contain the lower bounds and bu the upper bounds for all the constraints in the following order. The first elements of each array must contain the bounds on the variables, the next elements the bounds for the general linear constraints (if any) and the next elements the bounds for the general nonlinear constraints (if any). To specify a nonexistent lower bound (i.e., ), set , and to specify a nonexistent upper bound (i.e., ), set ; the default value of is , but this may be changed by the optional parameter Infinite Bound Size. To specify the th constraint as an equality, set , say, where .Constraints:
- , for ;
- if , .
- confun
- Type: NagLibrary..::..E05..::..E05UC_CONFUNconfun must calculate the vector of nonlinear constraint functions and (optionally) its Jacobian () for a specified -element vector . If there are no nonlinear constraints (i.e., ), confun will never be called by e05uc and confun may be the dummy method E04UDM. (E04UDM is included in the NAG Library.) If there are nonlinear constraints, the first call to confun will occur before the first call to objfun.
A delegate of type E05UC_CONFUN.
- objfun
- Type: NagLibrary..::..E05..::..E05UC_OBJFUNobjfun must calculate the objective function and (optionally) its gradient for a specified -vector .
A delegate of type E05UC_OBJFUN.
- npts
- Type: System..::..Int32On 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: .
- x
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, nb]Note: dim1 must satisfy the constraint:On exit: contains the final estimate of the th solution, for .
- start
- Type: NagLibrary..::..E05..::..E05UC_STARTstart must calculate the npts starting points to be used by the local optimizer. If you do not wish to write a method 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 repeat.
A delegate of type E05UC_START.
- repeat
- Type: System..::..BooleanOn 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.
- nb
- Type: System..::..Int32On entry: the number of solutions to be returned. The method 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 . However, if you want to look at other solutions that may have desirable properties then setting will produce nb local minima, ordered by increasing value of their objective functions at the minima.Constraint: .
- objf
- Type: array<System..::..Double>[]()[][]An array of size [nb]On exit: contains the value of the objective function at the final iterate for the th solution.
- objgrd
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, nb]Note: dim1 must satisfy the constraint:On exit: contains the gradient of the objective function for the th solution at the final iterate (or its finite difference approximation), for .
- iter
- Type: array<System..::..Int32>[]()[][]An array of size [nb]On exit: contains the number of major iterations performed to obtain the th solution. If less than nb solutions are returned then 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.
- c
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, nb]Note: dim1 must satisfy the constraint:On exit: if , contains the value of the th nonlinear constraint function at the final iterate, for the th solution, for .If , the array c is not referenced.
- cjac
- Type: array<System..::..Double,3>[,](,)[,][,]Note: dim1 must satisfy the constraint:On exit: if , cjac contains the Jacobian matrices of the nonlinear constraint functions at the final iterate for each of the returned solutions, i.e., contains the partial derivative of the th constraint function with respect to the th variable, for and , for the th solution. (See the discussion of parameter cjsl under confun.)If , the array cjac is not referenced.
- sdcjac
- Type: System..::..Int32
the second dimension of the array cjac.On entry: the second dimension of the array cjac as declared in the (sub)program from which e05uc is called.Constraint: if , .
- r
- Type: array<System..::..Double,3>[,](,)[,][,]Note: dim1 must satisfy the constraint:On exit: for each of the nb solutions r will contain a form of the Hessian; for the th returned solution contains the Hessian that would be returned from the local minimizer. If , the default, each contains the upper triangular Cholesky factor of , an estimate of the transformed and reordered Hessian of the Lagrangian at . If , contains the upper triangular Cholesky factor of , the approximate (untransformed) Hessian of the Lagrangian, with the variables in the natural order.
- sdr
- Type: System..::..Int32
the second dimension of the array r.On entry: the second dimension of the array r as declared in the (sub)program from which e05uc is called.Constraint: .
- clamda
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, nb]Note: dim1 must satisfy the constraint:On exit: the values of the QP multipliers from the last QP subproblem solved for the th solution. should be non-negative if and non-positive if .
- istate
- Type: array<System..::..Int32,2>[,](,)[,][,]An array of size [dim1, nb]Note: dim1 must satisfy the constraint:On exit: contains the status of the constraints in the QP working set for the th solution. The significance of each possible value of is as follows:
Meaning The constraint is satisfied to within the feasibility tolerance, but is not in the QP working set. This inequality constraint is included in the QP working set at its lower bound. This inequality constraint is included in the QP working set at its upper bound. This constraint is included in the QP working set as an equality. This value of istate can occur only when .
- options
- Type: NagLibrary..::..E05..::..e05ucOptionsAn Object of type E05.e05ucOptions. Used to configure optional parameters to this method.
- info
- Type: array<System..::..Int32>[]()[][]An array of size [nb]
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
The problem is assumed to be stated in the following form:
where (the objective function) is a nonlinear function, is an by linear constraint matrix, and is an element vector of nonlinear constraint functions. (The matrix and the vector may be empty.) The objective function and the constraint functions are assumed to be smooth, i.e., at least twice-continuously differentiable. (This method will usually solve (1) if there are only isolated discontinuities away from the solution.)
(1) |
e05uc solves a user-specified number of local optimization problems with different starting points. You may specify the starting points via the method start. If a random number generator is used to generate the starting points then the parameter repeat 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 will be the best result obtained. If a sufficient number of different points are chosen then this is likely to be be the global minimum. Please note that the default version of start uses a random number generator to generate the starting points.
References
Dennis J E Jr and Moré J J (1977) Quasi-Newton methods, motivation and theory SIAM Rev. 19 46–89
Dennis J E Jr and Schnabel R B (1981) A new derivation of symmetric positive-definite secant updates nonlinear programming (eds O L Mangasarian, R R Meyer and S M Robinson) 4 167–199 Academic Press
Dennis J E Jr and Schnabel R B (1983) Numerical Methods for Unconstrained Optimization and Nonlinear Equations Prentice–Hall
Fletcher R (1987) Practical Methods of Optimization (2nd Edition) Wiley
Gill P E, Hammarling S, Murray W, Saunders M A and Wright M H (1986) Users' guide for LSSOL (Version 1.0) Report SOL 86-1 Department of Operations Research, Stanford University
Gill P E, Murray W, Saunders M A and Wright M H (1984) Users' guide for SOL/QPSOL version 3.2 Report SOL 84–5 Department of Operations Research, Stanford University
Gill P E, Murray W, Saunders M A and Wright M H (1986a) Some theoretical properties of an augmented Lagrangian merit function Report SOL 86–6R Department of Operations Research, Stanford University
Gill P E, Murray W, Saunders M A and Wright M H (1986b) Users' guide for NPSOL (Version 4.0): a Fortran package for nonlinear programming Report SOL 86-2 Department of Operations Research, Stanford University
Gill P E, Murray W and Wright M H (1981) Practical Optimization Academic Press
Powell M J D (1974) Introduction to constrained optimization Numerical Methods for Constrained Optimization (eds P E Gill and W Murray) 1–28 Academic Press
Powell M J D (1983) Variable metric methods in constrained optimization Mathematical Programming: the State of the Art (eds A Bachem, M Grötschel and B Korte) 288–311 Springer–Verlag
Error Indicators and Warnings
Note: e05uc 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
(LDA, LDX, LDOBJD, LDC, LDCJAC, LDR, LDCLDA, LISTAT) In these
cases, an error in another parameter has usually caused an incorrect value to be inferred.
- An input value is incorrect. One, or more, of the following requirements are violated:
- ;
- ;
- ;
- ;
- for some ;
- ;
- ;
- ;
- ;
- ;
- if
- ;
- ;
- ;
- .
- e05uc 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 , where 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 are of order unity and are accurate to only three decimal places, Linear Feasibility Tolerance should be at least .
- e05uc 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.)
- e05uc has failed to find any solutions. The majority of local optimizations have failed because the limiting number of iterations have been reached. The Iteration Limit may be changed using (E05ZKF not in this release)
- Not used by this method.
- 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 or are used to test function evaluation procedures, and how often the special properties of these numbers make the test meaningless.Special care should be used in this test if computation of the objective function involves subsidiary data communicated in storage, including iuser and ruser in a multithreaded environment. Although the first evaluation of the function may be correct, subsequent calculations may be in error because some of the subsidiary data has accidentally been overwritten.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.
- Not all nb solutions have been found. contains the number actually found.
- You terminated the computation by setting in start.
- Failed to initialize optional parameter arrays.
Accuracy
If on exit and the value of , then the vector returned in the array x for solution is an estimate of the solution to an accuracy of approximately
Optimality Tolerance.
Parallelism and Performance
None.
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
makes use of the NAG quasi-random Sobol generator (g05yl and g05ym). If
E05UCZ
is used as an argument for start (see the description of start) and then a randomly chosen value for iskip is used, otherwise iskip is set to . If repeat 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 repeat should be set to true.
Description of the Printed Output
Example
This example finds the global minimum of the two-dimensional Schwefel function:
subject to the constraints:
Example program (C#): e05uce.cs
Algorithmic Details
See [Algorithmic Details] in e04uc.