e05us is designed to find the global minimum of an arbitrary smooth sum of squares 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 e05us( int m, int n, int nclin, int ncnln, double[,] a, double[] bl, double[] bu, double[] y, E05..::..E05US_CONFUN confun, E05..::..E05US_OBJFUN objfun, int npts, double[,] x, E05..::..E05US_START start, bool repeat1, int nb, double[] objf, double[,] f, double[,,] fjac, int sdfjac, int[] iter, double[,] c, double[,,] cjac, int sdcjac, double[,] clamda, int[,] istate, E05..::..e05usOptions options, int[] info, out int ifail ) |
Visual Basic |
---|
Public Shared Sub e05us ( _ m As Integer, _ n As Integer, _ nclin As Integer, _ ncnln As Integer, _ a As Double(,), _ bl As Double(), _ bu As Double(), _ y As Double(), _ confun As E05..::..E05US_CONFUN, _ objfun As E05..::..E05US_OBJFUN, _ npts As Integer, _ x As Double(,), _ start As E05..::..E05US_START, _ repeat1 As Boolean, _ nb As Integer, _ objf As Double(), _ f As Double(,), _ fjac As Double(,,), _ sdfjac As Integer, _ iter As Integer(), _ c As Double(,), _ cjac As Double(,,), _ sdcjac As Integer, _ clamda As Double(,), _ istate As Integer(,), _ options As E05..::..e05usOptions, _ info As Integer(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void e05us( int m, int n, int nclin, int ncnln, array<double,2>^ a, array<double>^ bl, array<double>^ bu, array<double>^ y, E05..::..E05US_CONFUN^ confun, E05..::..E05US_OBJFUN^ objfun, int npts, array<double,2>^ x, E05..::..E05US_START^ start, bool repeat1, int nb, array<double>^ objf, array<double,2>^ f, array<double,3>^ fjac, int sdfjac, array<int>^ iter, array<double,2>^ c, array<double,3>^ cjac, int sdcjac, array<double,2>^ clamda, array<int,2>^ istate, E05..::..e05usOptions^ options, array<int>^ info, [OutAttribute] int% ifail ) |
F# |
---|
static member e05us : m : int * n : int * nclin : int * ncnln : int * a : float[,] * bl : float[] * bu : float[] * y : float[] * confun : E05..::..E05US_CONFUN * objfun : E05..::..E05US_OBJFUN * npts : int * x : float[,] * start : E05..::..E05US_START * repeat1 : bool * nb : int * objf : float[] * f : float[,] * fjac : float[,,] * sdfjac : int * iter : int[] * c : float[,] * cjac : float[,,] * sdcjac : int * clamda : float[,] * istate : int[,] * options : E05..::..e05usOptions * info : int[] * ifail : int byref -> unit |
Parameters
- m
- Type: System..::..Int32On entry: , the number of subfunctions associated with .Constraint: .
- 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 , .
- y
- Type: array<System..::..Double>[]()[][]An array of size [m]On entry: the coefficients of the constant vector of the objective function.
- confun
- Type: NagLibrary..::..E05..::..E05US_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 e05us 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 E05US_CONFUN.
- objfun
- Type: NagLibrary..::..E05..::..E05US_OBJFUNobjfun must calculate either the th element of the vector or all elements of and (optionally) its Jacobian () for a specified -element vector .
A delegate of type E05US_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, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array x must be at least .On exit: contains the final estimate of the th solution, for .
- start
- Type: NagLibrary..::..E05..::..E05US_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 repeat1.
A delegate of type E05US_START.
- repeat1
- 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. See [Further Comments] for more detail.
- 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.
- f
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [m, dim2]Note: the second dimension of the array f must be at least .On exit: contains the value of the th function at the final iterate, for , for the th solution, for .
- fjac
- Type: array<System..::..Double,3>[,](,)[,][,]Note: dim1 must satisfy the constraint:Note: the last dimension of the array fjac must be at least .
- sdfjac
- Type: System..::..Int32
the second dimension of the array fjac.On entry: the second dimension of the array fjac as declared in the (sub)program from which e05us is called.Constraint: .
- 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, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array c must be at least .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:Note: the last dimension of the array cjac must be at least .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 e05us is called.Constraint: if , .
- clamda
- Type: array<System..::..Double,2>[,](,)[,][,]An array of size [dim1, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array clamda must be at least .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, dim2]Note: dim1 must satisfy the constraint:Note: the second dimension of the array istate must be at least .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..::..e05usOptionsAn Object of type E05.e05usOptions. 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 local minimization method is (E04USA not in this release).
The problem is assumed to be stated in the following form:
where (the objective function) is a nonlinear function which can be represented as the sum of squares of subfunctions , the are constant, is an by constant 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 any isolated discontinuities are away from the solution.)
(1) |
e05us 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 repeat1 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 sufficiently high number of different points are chosen then this is likely to be the global minimum.
References
Gill P E, Murray W and Wright M H (1981) Practical Optimization Academic Press
Hock W and Schittkowski K (1981) Test Examples for Nonlinear Programming Codes. Lecture Notes in Economics and Mathematical Systems 187 Springer–Verlag
Error Indicators and Warnings
Note: e05us 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, LDFJAC, LDC, LDCJAC, 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:
- ;
- ;
- and ;
- ;
- ;
- and ;
- ;
- ;
- ;
- ;
- ;
- ;
- ;
- ;
- ;
- for all ;
- ;
- ;
- .
Set and re-enter e05us for more detailed information.
- e05us 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 , the square root of 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 .
- e05us 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.)
- e05us has failed to find any solutions. The majority of local optimizations have failed because the limiting number of iterations have been reached.
- This should not occur. Please contact NAG.
- 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 the actual argument for start and then a randomly chosen value for iskip is used, otherwise iskip is set to . If repeat1 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 repeat1 should be set to true.
Description of the Printed Output
Example
This example is based on Problem 57 in Hock and Schittkowski (1981) and involves the minimization of the sum of squares function
where
and
subject to the bounds
to the general linear constraint
and to the nonlinear constraint
The optimal solution (to five figures) is
and . The nonlinear constraint is active at the solution.
Example program (C#): e05use.cs
Algorithmic Details
See [Algorithmic Details] in e04us.