hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_glopt_nlp_pso (e05sb)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_glopt_nlp_pso (e05sb) is designed to search for the global minimum or maximum of an arbitrary function, subject to general nonlinear constraints, using Particle Swarm Optimization (PSO). Derivatives are not required, although these may be used by an accompanying local minimization function if desired. nag_glopt_nlp_pso (e05sb) is essentially identical to nag_glopt_bnd_pso (e05sa), with an expert interface and various additional arguments added; otherwise most arguments are identical. In particular, nag_glopt_bnd_pso (e05sa) does not handle general constraints.

Syntax

[xb, fb, cb, xbest, fbest, cbest, iopts, opts, user, itt, inform, ifail] = e05sb(bl, bu, xbest, fbest, cbest, objfun, confun, monmod, iopts, opts, 'ndim', ndim, 'ncon', ncon, 'npar', npar, 'user', user)
[xb, fb, cb, xbest, fbest, cbest, iopts, opts, user, itt, inform, ifail] = nag_glopt_nlp_pso(bl, bu, xbest, fbest, cbest, objfun, confun, monmod, iopts, opts, 'ndim', ndim, 'ncon', ncon, 'npar', npar, 'user', user)
Before calling nag_glopt_nlp_pso (e05sb), nag_glopt_optset (e05zk) must be called with optstr set to ‘’. Optional parameters may also be specified by calling nag_glopt_optset (e05zk) before the call to nag_glopt_nlp_pso (e05sb).

Description

nag_glopt_nlp_pso (e05sb) uses a stochastic method based on Particle Swarm Optimization (PSO) to search for the global optimum of a nonlinear function F, subject to a set of bound constraints on the variables, and optionally a set of general nonlinear constraints. In the PSO algorithm (see Algorithmic Details), a set of particles is generated in the search space, and advances each iteration to (hopefully) better positions using a heuristic velocity based upon inertia, cognitive memory and global memory. The inertia is provided by a decreasingly weighted contribution from a particles current velocity, the cognitive memory refers to the best candidate found by an individual particle and the global memory refers to the best candidate found by all the particles. This allows for a global search of the domain in question.
Further, this may be coupled with a selection of local minimization functions, which may be called during the iterations of the heuristic algorithm, the interior phase, to hasten the discovery of locally optimal points, and after the heuristic phase has completed to attempt to refine the final solution, the exterior phase. Different options may be set for the local optimizer in each phase.
Without loss of generality, the problem is assumed to be stated in the following form:
minimize xRndim Fx   subject to   x cx u ,  
where the objective Fx is a scalar function, cx is a vector of scalar constraint functions, x is a vector in Rndim and the vectors u are lower and upper bounds respectively for the ndim variables and ncon constraints. Both the objective function and the ncon constraints may be nonlinear. Continuity of F, and the functions cx, is not essential. For functions which are smooth and primarily unimodal, faster solutions will almost certainly be achieved by using Chapter E04 functions directly.
For functions which are smooth and multi-modal, gradient dependent local minimization functions may be coupled with nag_glopt_nlp_pso (e05sb).
For multi-modal functions for which derivatives cannot be provided, particularly functions with a significant level of noise in their evaluation, nag_glopt_nlp_pso (e05sb) should be used either alone, or coupled with nag_opt_uncon_simplex (e04cb).
For heavily constrained problems, nag_glopt_nlp_pso (e05sb) should either be used alone, or coupled with nag_opt_nlp1_solve (e04uc) provided the function and the constraints are sufficiently smooth.
The ndim lower and upper box bounds on the variable x are included to initialize the particle swarm into a finite hypervolume, although their subsequent influence on the algorithm is user determinable (see the option Boundary in Optional Parameters). It is strongly recommended that sensible bounds are provided for all variables and constraints.
nag_glopt_nlp_pso (e05sb) may also be used to maximize the objective function, or to search for a feasible point satisfying the simple bounds and general constraints (see the option Optimize).
Due to the nature of global optimization, unless a predefined target is provided, there is no definitive way of knowing when to end a computation. As such several stopping heuristics have been implemented into the algorithm. If any of these is achieved, nag_glopt_nlp_pso (e05sb) will exit with ifail=1, and the parameter inform will indicate which criteria was reached. See inform for more information.
In addition, you may provide your own stopping criteria through monmod, objfun and confun.
nag_glopt_bnd_pso (e05sa) provides a simpler interface, without the inclusion of general nonlinear constraints.

References

Gill P E, Murray W and Wright M H (1981) Practical Optimization Academic Press
Kennedy J and Eberhart R C (1995) Particle Swarm Optimization Proceedings of the 1995 IEEE International Conference on Neural Networks 1942–1948
Koh B, George A D, Haftka R T and Fregly B J (2006) Parallel Asynchronous Particle Swarm Optimization International Journal for Numerical Methods in Engineering 67(4) 578–595
Vaz A I and Vicente L N (2007) A Particle Swarm Pattern Search Method for Bound Constrained Global Optimization Journal of Global Optimization 39(2) 197–219 Kluwer Academic Publishers

Parameters

Note: for descriptions of the symbolic variables, see Algorithmic Details.

Compulsory Input Parameters

1:     blndim+ncon – double array
2:     bundim+ncon – double array
bl is , the array of lower bounds, bu is u, the array of upper bounds. The first ndim entries in bl and bu must contain the lower and upper simple (box) bounds of the variables respectively. These must be provided to initialize the sample population into a finite hypervolume, although their subsequent influence on the algorithm is user determinable (see the option Boundary in Optional Parameters).
The next ncon entries must contain the lower and upper bounds for any general constraints respectively.
If bli=bui for any i1,,ndim, variable i will remain locked to bli regardless of the Boundary option selected.
It is strongly advised that you place sensible lower and upper bounds on all variables and constraints, even if your model allows for unbounded variables or constraints.
Constraints:
  • blibui, for i=1,2,,ndim+ncon;
  • blibui for at least one i1,,ndim.
3:     xbestndimnpar – double array
Note: the ith component of the best position of the jth particle, x^ji, is stored in xbestij.
If using Start=WARM, the initial particle positions, x^j0.
4:     fbestnpar – double array
If using Start=WARM, objective function values, f^j0=Fx^j0, corresponding to the npar particle locations stored in xbest.
5:     cbestnconnpar – double array
Note: the kth constraint violation of the jth particle is stored in cbestkj.
If using Start=WARM, the initial constraint violations, e^j0=ex^j0, corresponding to the npar particle locations.
6:     objfun – function handle or string containing name of m-file
objfun must, depending on the value of mode, calculate the objective function and/or calculate the gradient of the objective function for a ndim-variable vector x. Gradients are only required if a local minimizer has been chosen which requires gradients. See the option Local Minimizer for more information.
[mode, objf, vecout, user] = objfun(mode, ndim, x, objf, vecout, nstate, user)

Input Parameters

1:     mode int64int32nag_int scalar
Indicates which functionality is required.
mode=0
Fx should be returned in objf. The value of objf on entry may be used as an upper bound for the calculation. Any expected value of Fx that is greater than objf may be approximated by this upper bound; that is objf can remain unaltered.
mode=1
Local Minimizer=e04uc only
First derivatives can be evaluated and returned in vecout. Any unaltered elements of vecout will be approximated using finite differences.
mode=2
Local Minimizer=e04uc only
Fx must be calculated and returned in objf, and available first derivatives can be evaluated and returned in vecout. Any unaltered elements of vecout will be approximated using finite differences.
mode=5
Fx must be calculated and returned in objf. The value of objf on entry may not be used as an upper bound.
mode=6
Local Minimizer=e04dg or e04kz only
All first derivatives must be evaluated and returned in vecout.
mode=7
Local Minimizer=e04dg or e04kz only
Fx must be calculated and returned in objf, and all first derivatives must be evaluated and returned in vecout.
2:     ndim int64int32nag_int scalar
The number of dimensions.
3:     xndim – double array
x, the point at which the objective function and/or its gradient are to be evaluated.
4:     objf – double scalar
The value of objf passed to objfun varies with the argument mode.
mode=0
objf is an upper bound for the value of Fx, often equal to the best constraint penalised value of Fx found so far by a given particle if the objective function is strictly positive (see Algorithmic Details). Only objective function values less than the value of objf on entry will be used further. As such this upper bound may be used to stop further evaluation when this will only increase the objective function value above the upper bound.
mode=1, 2, 5, 6 or 7
objf is meaningless on entry.
5:     vecoutndim – double array
If Local Minimizer=e04uc or e04uc, the values of vecout are used internally to indicate whether a finite difference approximation is required. See nag_opt_nlp1_solve (e04uc).
6:     nstate int64int32nag_int scalar
nstate indicates various stages of initialization throughout the function. This allows for permanent global arguments to be initialized the least number of times. For example, you may initialize a random number generator seed.
nstate=3
SMP users only. objfun is called for the first time in a parallel region on a new thread other than the master thread. You may use this opportunity to set up any thread-dependent information in user and user.
nstate=2
objfun is called for the very first time. You may save computational time if certain data must be read or calculated only once.
nstate=1
objfun is called for the first time by a NAG local minimization function. You may save computational time if certain data required for the local minimizer need only be calculated at the initial point of the local minimization.
nstate=0
Used in all other cases.
7:     user – Any MATLAB object
objfun is called from nag_glopt_nlp_pso (e05sb) with the object supplied to nag_glopt_nlp_pso (e05sb).

Output Parameters

1:     mode int64int32nag_int scalar
If the value of mode is set to be negative, then nag_glopt_nlp_pso (e05sb) will exit as soon as possible with ifail=3 and inform=mode.
2:     objf – double scalar
The value of objf returned varies with the argument mode.
mode=0
objf must be the value of Fx. Only values of Fx strictly less than objf on entry need be accurate.
mode=1 or 6
Need not be set.
mode=2, 5 or 7
Fx must be calculated and returned in objf. The entry value of objf may not be used as an upper bound.
3:     vecoutndim – double array
The required values of vecout returned to the calling function depend on the value of mode.
mode=0 or 5
The value of vecout need not be set.
mode=1 or 2
vecout can contain components of the gradient of the objective function F xi for some i=1,2,ndim, or acceptable approximations. Any unaltered elements of vecout will be approximated using finite differences.
mode=6 or 7
vecout must contain the gradient of the objective function F xi for all i=1,2,ndim. Approximation of the gradient is strongly discouraged, and no finite difference approximations will be performed internally (see nag_opt_uncon_conjgrd_comp (e04dg) and nag_opt_bounds_mod_deriv_easy (e04kz)).
4:     user – Any MATLAB object
7:     confun – function handle or string containing name of m-file
confun must calculate any constraints other than the box constraints. If no constraints are required, confun may be string nag_glopt_nlp_pso_dummy_confun (e05szm)nag_glopt_nlp_pso_dummy_confun (e05szm) For information on how a NAG local minimizer will use confun see the documentation for nag_opt_nlp1_solve (e04uc).
[mode, c, cjac, user] = confun(mode, ncon, ndim, ldcj, needc, x, cjac, nstate, user)

Input Parameters

1:     mode int64int32nag_int scalar
Indicates which values must be assigned during each call of confun. Only the following values need be assigned, for each value of k1,,ncon such that needck>0:
mode=0
the constraint values ckx.
mode=1
rows of the constraint jacobian, ckxix, for i=1,2,,ndim.
mode=2
the constraint values ckx and the corresponding rows of the constraint jacobian, ckxix, for i=1,2,,ndim.
2:     ncon int64int32nag_int scalar
The number of constraints, not including box bounds.
3:     ndim int64int32nag_int scalar
The number of variables.
4:     ldcj int64int32nag_int scalar
The first dimension of the array cjac.
5:     needcncon int64int32nag_int array
The indices of the elements of c and/or cjac that must be evaluated by confun. If needck>0, the kth element of c, corresponding to the values of the kth constraint, and/or the available elements of the kth row of cjac, corresponding to the derivatives of the kth constraint, must be evaluated at x (see argument mode).
6:     xndim – double array
x, the vector of variables at which the constraint functions and/or the available elements of the constraint Jacobian are to be evaluated.
7:     cjacldcjndim – double array
Note: the derivative of the kth constraint with respect to the ith component, ck xi , is stored in cjacki.
The elements of cjac are set to special values which enable nag_glopt_nlp_pso (e05sb) to detect whether they are changed by confun.
8:     nstate int64int32nag_int scalar
nstate indicates various stages of initialization throughout the function. This allows for permanent global arguments to be initialized a minimum number of times. For example, you may initialize a random number generator seed. Note that unless the option Optimize=CONSTRAINTS has been set, objfun will be called before confun.
nstate=3
SMP users only. objfun is called for the first time in a parallel region on a new thread other than the master thread. You may use this opportunity to set up any thread-dependent information in user and user.
nstate=2
confun is called for the very first time. This argument setting allows you to save computational time if certain data must be read or calculated only once.
nstate=1
confun is called for the first time during a NAG local minimization function. This argument setting allows you to save computational time if certain data required for the local minimizer need only be calculated at the initial point of the local minimization.
nstate=0
Used in all other cases.
9:     user – Any MATLAB object
confun is called from nag_glopt_nlp_pso (e05sb) with the object supplied to nag_glopt_nlp_pso (e05sb).

Output Parameters

1:     mode int64int32nag_int scalar
May be set to a negative value if you wish to terminate the solution to the current problem. In this case nag_glopt_nlp_pso (e05sb) will terminate with ifail=3 and inform=mode as soon as possible.
2:     cncon – double array
If needck>0 and mode=0 or 2, ck must contain the value of ckx. The remaining elements of c, corresponding to the non-positive elements of needc, need not be set.
3:     cjacldcjndim – double array
Note: the derivative of the kth constraint with respect to the ith component, ck xi , is stored in cjacki.
If needck>0 and mode=1 or 2, the elements of cjac corresponding to the kth row of the constraint jacobian should contain the available elements of the vector ck given by
ck= ck x1 , ck x2 ,, ck xn ,  
where ck xi is the partial derivative of the kth constraint with respect to the ith variable, evaluated at the point x; elements of cjac that remain unaltered will be approximated internally using finite differences. The remaining rows of cjac, corresponding to non-positive elements of needc, need not be set.
It must be emphasized that unassigned elements of cjac are not treated as constant; they are estimated by finite differences, at nontrivial expense. An interval for each element of x is computed automatically at the start of the optimization. The automatic procedure can usually identify constant elements of cjac, which are then computed once only by finite differences.
4:     user – Any MATLAB object
confun should be tested separately before being used in conjunction with nag_glopt_nlp_pso (e05sb).
8:     monmod – function handle or string containing name of m-file
A user-specified monitoring and modification function. monmod is called once every complete iteration after a finalization check. It may be used to modify the particle locations that will be evaluated at the next iteration. This permits the incorporation of algorithmic modifications such as including additional advection heuristics and genetic mutations. monmod is only called during the main loop of the algorithm, and as such will be unaware of any further improvement from the final local minimization. If no monitoring and/or modification is required, monmod may be string nag_glopt_nlp_pso_dummy_monmod (e05sym)nag_glopt_nlp_pso_dummy_monmod (e05sym) .
[x, user, inform] = monmod(ndim, ncon, npar, x, xb, fb, cb, xbest, fbest, cbest, itt, user, inform)

Input Parameters

1:     ndim int64int32nag_int scalar
The number of dimensions.
2:     ncon int64int32nag_int scalar
The number of constraints.
3:     npar int64int32nag_int scalar
The number of particles.
4:     xndimnpar – double array
Note: the ith component of the jth particle, xji, is stored in xij.
The npar particle locations, xj, which will currently be used during the next iteration unless altered in monmod.
5:     xbndim – double array
The location, x~, of the best solution yet found.
6:     fb – double scalar
The objective value, f~=Fx~, of the best solution yet found.
7:     cbncon – double array
The constraint violations, e~=ex~, of the best solution yet found.
8:     xbestndimnpar – double array
Note: the ith component of the position of the jth particle's cognitive memory, x^ji, is stored in xbestij.
The locations currently in the cognitive memory, x^j, for j=1,2,,npar (see Algorithmic Details).
9:     fbestnpar – double array
The objective values currently in the cognitive memory, Fx^j, for j=1,2,,npar.
10:   cbestnconnpar – double array
Note: the kth constraint violation of the jth particle's cognitive memory is stored in cbestkj.
The constraint violations currently in the cognitive memory, e^=ex^j, for j=1,2,,npar, evaluated at x^j.
11:   itt7 int64int32nag_int array
Iteration and function evaluation counters (see description of itt below).
12:   user – Any MATLAB object
monmod is called from nag_glopt_nlp_pso (e05sb) with the object supplied to nag_glopt_nlp_pso (e05sb).
13:   inform int64int32nag_int scalar
inform=thread_num, where thread_num is the value returned by a call of the OpenMP function OMP_GET_THREAD_NUM(). If running in serial this will always be zero.

Output Parameters

1:     xndimnpar – double array
Note: the ith component of the jth particle, xji, is stored in xij.
The particle locations to be used during the next iteration.
2:     user – Any MATLAB object
3:     inform int64int32nag_int scalar
Setting inform<0 will cause near immediate exit from nag_glopt_nlp_pso (e05sb). This value will be returned as inform with ifail=3. You need not set inform unless you wish to force an exit.
9:     iopts: int64int32nag_int array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument iopts in the previous call to nag_glopt_optset (e05zk).
Optional parameter array as generated and possibly modified by calls to nag_glopt_optset (e05zk). The contents of iopts must not be modified directly between calls to nag_glopt_nlp_pso (e05sb), nag_glopt_optset (e05zk) or nag_glopt_optget (e05zl).
10:   opts: – double array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument opts in the previous call to nag_glopt_optset (e05zk).
Optional parameter array as generated and possibly modified by calls to nag_glopt_optset (e05zk). The contents of opts must not be modified directly between calls to nag_glopt_nlp_pso (e05sb), nag_glopt_optset (e05zk) or nag_glopt_optget (e05zl).

Optional Input Parameters

1:     ndim int64int32nag_int scalar
Default: the dimension of the arrays bl, bu and the first dimension of the array xbest. (An error is raised if these dimensions are not equal.)
ndim, the number of dimensions.
Constraint: ndim1.
2:     ncon int64int32nag_int scalar
Default: the first dimension of the array cbest.
ncon, the number of constraints, not including box constraints.
Constraint: ncon0.
3:     npar int64int32nag_int scalar
Suggested value: npar=10×ndim.
Default: the dimension of the array fbest and the second dimension of the arrays xbest, cbest. (An error is raised if these dimensions are not equal.)
npar, the number of particles to be used in the swarm. Assuming all particles remain within constraints, each complete iteration will perform at least npar function evaluations. Otherwise, significantly fewer objective function evaluations may be performed.
Constraint: npar5×num_threads, where num_threads is the value returned by the OpenMP environment variable OMP_NUM_THREADS, or num_threads is 1 for a serial version of this function.
4:     user – Any MATLAB object
user is not used by nag_glopt_nlp_pso (e05sb), but is passed to objfun, confun and monmod. Note that for large objects it may be more efficient to use a global variable which is accessible from the m-files than to use user.

Output Parameters

1:     xbndim – double array
The location of the best solution found, x~, in Rndim.
2:     fb – double scalar
The objective value of the best solution, f~=Fx~.
3:     cbncon – double array
The constraint violations of the best solution found, e~=ex~. These may have been deemed to be acceptable given the tolerance and scaling of the constraints. See Algorithmic Details and Optional Parameters.
4:     xbestndimnpar – double array
Note: the ith component of the best position of the jth particle, x^ji, is stored in xbestij.
The best positions found, x^j, by the npar particles in the swarm.
5:     fbestnpar – double array
Objective function values, f^j=Fx^j, corresponding to the locations returned in xbest.
6:     cbestnconnpar – double array
Note: the kth constraint violation of the jth particle is stored in cbestkj.
The final constraint violations, e^j, corresponding to the locations returned in xbest.
7:     iopts: int64int32nag_int array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument iopts in the previous call to nag_glopt_optset (e05zk).
Communication array, used to store information between calls to nag_glopt_nlp_pso (e05sb).
8:     opts: – double array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument opts in the previous call to nag_glopt_optset (e05zk).
Communication array, used to store information between calls to nag_glopt_nlp_pso (e05sb).
9:     user – Any MATLAB object
10:   itt7 int64int32nag_int array
Integer iteration counters for nag_glopt_nlp_pso (e05sb).
itt1
Number of complete iterations.
itt2
Number of complete iterations without improvement to the current optimum.
itt3
Number of particles converged to the current optimum.
itt4
Number of improvements to the optimum.
itt5
Number of function evaluations performed.
itt6
Number of particles reset.
itt7
Number of violated constraints at completion. Note this is always calculated using the L1 norm and a nonzero result does not necessarily mean that the algorithm did not find a suitably constrained point with respect to the single norm used.
11:   inform int64int32nag_int scalar
Indicates which finalization criterion was reached. The possible values of inform are:
inform Meaning
<0 Exit from a user-supplied subroutine.
0 nag_glopt_nlp_pso (e05sb) has detected an error and terminated.
1 The provided objective target has been achieved. (Target Objective Value).
2 The standard deviation of the location of all the particles is below the set threshold (Swarm Standard Deviation). If the solution returned is not satisfactory, you may try setting a smaller value of Swarm Standard Deviation, or try adjusting the options governing the repulsive phase (Repulsion Initialize, Repulsion Finalize).
3 The total number of particles converged (Maximum Particles Converged) to the current global optimum has reached the set limit. This is the number of particles which have moved to a distance less than Distance Tolerance from the optimum with regard to the L2 norm. If the solution is not satisfactory, you may consider lowering the Distance Tolerance. However, this may hinder the global search capability of the algorithm.
4 The maximum number of iterations without improvement (Maximum Iterations Static) has been reached, and the required number of particles (Maximum Iterations Static Particles) have converged to the current optimum. Increasing either of these options will allow the algorithm to continue searching for longer. Alternatively if the solution is not satisfactory, re-starting the application several times with Repeatability=OFF may lead to an improved solution.
5 The maximum number of iterations (Maximum Iterations Completed) has been reached. If the number of iterations since improvement is small, then a better solution may be found by increasing this limit, or by using the option Local Minimizer with corresponding exterior options. Otherwise if the solution is not satisfactory, you may try re-running the application several times with Repeatability=OFF and a lower iteration limit, or adjusting the options governing the repulsive phase (Repulsion Initialize, Repulsion Finalize).
6 The maximum allowed number of function evaluations (Maximum Function Evaluations) has been reached. As with inform=5, increasing this limit if the number of iterations without improvement is small, or decreasing this limit and running the algorithm multiple times with Repeatability=OFF, may provide a superior result.
7 A feasible point has been found. The objective has not been minimized, although it has been evaluated at the final solutions given in xb and xbest (Optimize=CONSTRAINTS).
If you wish to continue from the final position gained from a previous simulation with adjusted options, you may set the option Start=WARM, and pass back in the returned arrays xbest, fbest, and cbest. You should either record the returned values of xb, fb and cb for comparison, as these will not be re-used by the algorithm, or include them in xbest, fbest and cbest respectively by overwriting the entries corresponding to one particle with the relevant information.
12:   ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).
For this reason, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended; otherwise, the recommended value is -1. When the value -1​ or ​1 is used it is essential to test the value of ifail on exit.
nag_glopt_nlp_pso (e05sb) returns ifail=0 if and only if a finalization criterion has been reached which can guarantee success. This may only happen if:
These finalization criteria are not active using default option settings, and must be explicitly set using nag_glopt_optset (e05zk) if required.
nag_glopt_nlp_pso (e05sb) will return ifail=1 if no error has been detected, and a finalization criterion has been achieved which cannot guarantee success. This does not indicate that the function has failed, merely that the returned solution cannot be guaranteed to be the true global optimum.
The value of inform should be examined to determine which finalization criterion was reached.
Other positive values of ifail indicate that either an error or a warning has been triggered. See Error Indicators and Warnings, Accuracy and Algorithmic Details for more information.

Error Indicators and Warnings

Errors or warnings detected by the function:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

W  ifail=1
A finalization criterion was reached that cannot guarantee success.
W  ifail=2
If the option Target Warning has been activated, this indicates that the Target Objective Value has been achieved to specified tolerances at a sufficiently constrained point, either during the initialization phase, or during the first two iterations of the algorithm. While this is not necessarily an error, it may occur if:
(i) The target was achieved at the first point sampled by the function. This will be the mean of the lower and upper bounds.
(ii) The target may have been achieved at a randomly generated sample point. This will always be a possibility provided that the domain under investigation contains a point with a target objective value.
(iii) If the Local Minimizer has been set, then a sample point may have been inside the basin of attraction of a satisfactory point. If this occurs repeatedly when the function is called, it may imply that the objective is largely unimodal, and that it may be more efficient to use the function selected as the Local Minimizer directly.
Assuming that objfun is correct, you may wish to set a better Target Objective Value, or a stricter Target Objective Tolerance.
W  ifail=3
User requested exit during call to confun.
User requested exit during call to monmod.
User requested exit during call to objfun.
W  ifail=4
Unable to locate strictly feasible point.
   ifail=11
Constraint: ndim1.
   ifail=12
Constraint: npar5×num_threads, where num_threads is the value returned by the OpenMP environment variable OMP_NUM_THREADS, or num_threads is 1 for a serial version of this function.
   ifail=13
Constraint: ncon0.
   ifail=14
Constraint: buibli for all i.
On entry, bli=bui for all box bounds i.
Constraint: bui>bli for at least one box bound i.
   ifail=17
nag_glopt_nlp_pso (e05sb) has been called with ncon>0 and the dummy constraint function nag_glopt_nlp_pso_dummy_confun (e05szm). Only use nag_glopt_nlp_pso_dummy_confun (e05szm) with ncon=0.
   ifail=18
The option Optimize=CONSTRAINTS is active, however ncon=0.
   ifail=19
Error _ occurred whilst adjusting to exterior local minimizer options.
Error _ occurred whilst adjusting to interior local minimizer options.
   ifail=21
Either the option arrays have not been initialized for nag_glopt_nlp_pso (e05sb), or they have become corrupted.
W  ifail=32
Derivative checks indicate possible errors in the supplied derivatives. Gradient checks may be disabled by setting Verify Gradients=OFF.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

If ifail=0 (or ifail=2) or ifail=1 on exit, a criterion will have been reached depending on user selected options. As with all global optimization software, the solution achieved may not be the true global optimum. Various options allow for either greater search diversity or faster convergence to a (local) optimum (See Algorithmic Details and Optional Parameters).
Provided the objective function and constraints are sufficiently well behaved, if a local minimizer is used in conjunction with nag_glopt_nlp_pso (e05sb), then it is more likely that the final result will at least be in the near vicinity of a local optimum, and due to the global search characteristics of the particle swarm, this solution should be superior to many other local optima.
Caution should be used in accelerating the rate of convergence, as with faster convergence, less of the domain will remain searchable by the swarm, making it increasingly difficult for the algorithm to detect the basins of attraction of superior local optima. Using the options Repulsion Initialize and Repulsion Finalize described in Optional Parameters will help to overcome this, by causing the swarm to diverge away from the current optimum once no more local improvement is likely.
On successful exit with guaranteed success, ifail=0 (or ifail=2). This may happen if a Target Objective Value is assigned and is reached by the algorithm at a satisfactorily constrained point. It will also occur if a constrained point is found when Optimize=CONSTRAINTS is set.
On successful exit without guaranteed success, ifail=1 is returned. This will happen if another finalization criterion is achieved without the detection of an error.
In both cases, the value of inform provides further information as to the cause of the exit.

Further Comments

The memory used by nag_glopt_nlp_pso (e05sb) is relatively static throughout. Indeed, most of the memory required is used to store the current particle locations, the cognitive particle memories, the particle velocities and the particle weights. As such, nag_glopt_nlp_pso (e05sb) may be used in problems with high dimension number (ndim>100) without the concern of computational resource exhaustion, although the probability of successfully locating the global optimum will decrease dramatically with the increase in dimensionality.
Due to the stochastic nature of the algorithm, the result will vary over multiple runs. This is particularly true if arguments and options are chosen to accelerate convergence at the expense of the global search. However, the option Repeatability=ON may be set to initialize the internal random number generator using a preset seed, which will result in identical solutions being obtained.

Example

This example uses a particle swarm to find the global minimum of the two-dimensional Schwefel function:
minimize xR2 f = j=1 2 xj sinxj  
subject to the constraints:
3.0 x1 - 2.0 x2 <10.0 , -1.0 < x12 - x22 + 3.0 x1 x2 < 50000.0 , -0.9 < cos x1 / 200 2 + x2 / 100 < 0.9 , -500 x1 500 , -500 x2 500 .  
The global optimum has an objective value of fmin=-731.707, located at x=-394.15,-433.48. Only the third constraint is active at this point.
The example demonstrates how to initialize and set the options arrays using nag_glopt_optset (e05zk), how to query options using nag_glopt_optget (e05zl), and finally how to search for the global optimum using nag_glopt_nlp_pso (e05sb). The problem is solved twice, first using nag_glopt_nlp_pso (e05sb) alone, and secondly by coupling nag_glopt_nlp_pso (e05sb) with nag_opt_nlp1_solve (e04uc) as a dedicated local minimizer. In both cases the default option Repeatability=ON is used to produce repeatable solutions.
function e05sb_example


fprintf('e05sb example results\n\n');

npar = int64(20);
bl = [-500; -500; -1e6; -1; -0.9];
bu = [ 500;  500; 10; 5e5; 0.9];

x_target_u = [-420.9687463599820; -420.9687463599820];
x_target_c = [-394.1470221120988; -433.48214189947606];
f_target_u = -837.9657745448674;
f_target_c = -731.70709230672696;
c_target_u = [0; 31644.05623568455; 0.07574889943398055];
c_target_c = [0; 0; 0];

xbest = zeros(2, 20);
fbest = zeros(20, 1);
cbest = zeros(3, 20);;

iopts = zeros(100, 1, 'int64');
opts  = zeros(100, 1);


% Initialize the option arrays for e05sb
[iopts, opts, ifail] = e05zk(...
                             'Initialize = e05sb', iopts, opts);

% Query some default option values.
[ivalue, rvalue, cnorm, optype, ifail] = ...
  e05zl(...
        'Constraint Norm', iopts, opts);
[maxits, rvalue, itstr, optype, ifail] = ...
  e05zl(...
        'Maximum Iterations Completed', iopts, opts);
[ivalue, distol, cvalue, optype, ifail] = ...
  e05zl(...
        'Distance Tolerance', iopts, opts);

itstr = strtrim(itstr);
fprintf('\nDefault Option Queries:\n\n');
fprintf('Constraint Norm              : %s\n', cnorm);
fprintf('Maximum Iterations Completed : %d (%s)\n', ivalue, itstr);
fprintf('Distance Tolerance           : %15.4e\n', distol);

fprintf('\n1. Solution without using coupled local minimizer.\n');

% Set various options to non-default values if required.
[iopts, opts, ifail] = e05zk(...
                             'Repeatability = On', iopts, opts);
opstr = sprintf('Distance Tolerance = %32.16e', distol*0.1);
[iopts, opts, ifail] = e05zk(...
                             opstr, iopts, opts);
[iopts, opts, ifail] = e05zk(...
                             'Constraint Tolerance = 1.0e-4', iopts, opts);
[iopts, opts, ifail] = e05zk(...
                             'Constraint Norm = Euclidean', iopts, opts);
opstr = sprintf('Target Objective Value = %32.16e', f_target_c);
[iopts, opts, ifail] = e05zk(...
                             opstr, iopts, opts);
[iopts, opts, ifail] = e05zk(...
                       'Target Objective Tolerance = 1.0e-4', iopts, opts);

% Call e05sb to search for the global optimum.
[xb, fb, cb, xbest, fbest, cbest, iopts, opts, user, itt, inform, ifail] = ...
  e05sb(...
        bl, bu, xbest, fbest, cbest, @objfun, @confun, 'e05sym', ...
        iopts, opts);

switch ifail
  case {0,1}
    % e05sb encountered no errors during operation,
    % and will have returned the best optimum found.
    display_result(x_target_u, x_target_c, f_target_u, f_target_c, ...
                   c_target_u, c_target_c, xb, fb, cb, itt, inform);
  case 3
    % An instruction to exit was received by e05sb from objfun or monmod.
    % The exit flag will have been returned in inform.
    display_result(x_target_u, x_target_c, f_target_u, f_target_c, ...
                   c_target_u, c_target_c, xb, fb, cb, itt, inform);
  otherwise
    % An error was detected, and a warning has been displayed
end


fprintf('\n2. Solution using coupled local minimizer e04uc.\n');

% Set the local minimizer to be e04uc and set corresponding options
[iopts, opts, ifail] = ...
    e05zk(...
          'Local Minimizer = e04uc', iopts, opts);
[iopts, opts, ifail] = ...
  e05zk(...
        'Local Interior Major Iterations = 5', iopts, opts);
[iopts, opts, ifail] = ...
  e05zk(...
        'Local Interior Minor Iterations = 3', iopts, opts);
[iopts, opts, ifail] = ...
  e05zk(...
        'Local Exterior Major Iterations = 30', iopts, opts);
[iopts, opts, ifail] = ...
  e05zk(...
        'Local Exterior Minor Iterations = 15', iopts, opts);

% Get and increase Distance Tolerance
[ivalue, rvalue, cvalue, optype, ifail] = ...
      e05zl(...
            'Distance Tolerance', iopts, opts);
opstr = sprintf('Distance Tolerance = %32.16e', rvalue*10);
[iopts, opts, ifail] = e05zk(opstr, iopts, opts);

opstr = sprintf('Local Interior Tolerance = %32.16e', rvalue);
[iopts, opts, ifail] = e05zk(...
                             opstr, iopts, opts);
opstr = sprintf('Local exterior Tolerance = %32.16e', rvalue*1e-4);
[iopts, opts, ifail] = e05zk(...
                             opstr, iopts, opts);

% Call e05sb to search for the global optimum.
[xb, fb, cb, xbest, fbest, cbest, iopts, opts, user, itt, inform, ifail] = ...
     e05sb(bl, bu, xbest, fbest, cbest, @objfun, @confun, ...
           'e05sym', iopts, opts);

switch ifail
  case {0,1}
    % e05sb encountered no errors during operation,
    % and will have returned the best optimum found.
    display_result(x_target_u, x_target_c, f_target_u, f_target_c, ...
                   c_target_u, c_target_c, xb, fb, cb, itt, inform);
  case 3
    % An instruction to exit was received by e05sb from objfun or monmod.
    % The exit flag will have been returned in inform.
    display_result(x_target_u, x_target_c, f_target_u, f_target_c, ...
                   c_target_u, c_target_c, xb, fb, cb, itt, inform);
  otherwise
    % An error was detected, and a warning has been displayed
end



function [mode, c, cjac, user] = ...
    confun(mode, ncon, ndim, ldcj, needc, x, cjac, nstate, user)
  c = zeros(ncon, 1);

  % Test nstate to determine whether the local minimizer is being called
  % for the first time from a new start point
  if (nstate == 1)
    % Set any constant elements of the Jacobian matrix.
    cjac(1, 1) =  3;
    cjac(1, 2) = -2;
  end

  % mode determines whether constraints, derivatives, or both are required
  if mode==0 || mode==2
    % Constraint values are required, however only those for which needc
    % is non-zero need be set.
    for k = 1:double(ncon)
       if (needc(k)>0)
          switch k
          case (1)
             c(k) = 3.0*x(1) - 2.0*x(2);
          case (2)
             c(k) = x(1)^2 - x(2)^2 + 3.0*x(1)*x(2);
          case (3)
             c(k) = cos((x(1)/200.0)^2+(x(2)/100.0));
          otherwise
             c(k) = 0;
          end
       end
    end
  end

  if mode==1 || mode==2
    %Constraint derivatives (cjac) are required.
    for k = 1:double(ncon)
        switch k
        case (1)
          % Constant derivatives set when nstate=1 remain throughout
          % the local minimization.
        case (2)
          % If the constraint derivatives are known and are readily
          % calculated, populate cjac when required.
           cjac(k,1) =  2.0*x(1) + 3*x(2);
           cjac(k,2) = -2.0*x(2) + 3*x(1);
        otherwise
          % Any elements of cjac left unaltered will be approximated
          % using finite differences when required.
        end
     end
  end

function [mode, objf, vecout, user] = ...
          objfun(mode, ndim, x, objf, vecout, nstate, user)

  % Test nstate to indicate what stage of computation has been reached.
  switch nstate
    case (2)
      % objfun is called for the very first time.
    case (1)
      % objfun is called on entry to a NAG local minimiser.
    case (0)
      % This will be the normal value of NSTATE.
    otherwise
      % This is extremely unlikely, and indicates that an error has
      % occurred on the system
      mode = int64(-1);
      error('*** Error detected in objfun');
  end

  % Test mode to determine whether to calculate objf and/or objgrd.
  evalobjf = false;
  evalobjg = false;
  switch mode
    case {0,5}
      % Only the value of the objective function is needed.
      evalobjf = true;
    case {1,6}
      % Only the values of the NDIM gradients are required.
      evalobjg = true;
    case {2,7}
      % Both the objective function and the NDIM gradients are required.
      evalobjf = true;
      evalobjg = true;
    otherwise
      mode = int64(-1);
      error('*** Illegal value of mode (%d) in objfun', mode);
  end

  if evalobjf
    % Evaluate the objective function.
    objf = sum(x(1:double(ndim)).*sin(sqrt(abs(x(1:double(ndim))))));
  end

  if evalobjg
    % Calculate the gradient of the objective function,
    % and return the result in vecout.
    vecout = sqrt(abs(x));
    for i=1:double(ndim)
      vecout(i) = sin(vecout(i)) + 0.5*vecout(i)*cos(vecout(i));
    end
  end

function [] = display_result(x_target_u, x_target_c, f_target_u, ...
                                   f_target_c, c_target_u, c_target_c, ...
                                   xb, fb, cb, itt, inform)

  % Display final counters.
  fprintf('\nAlgorithm Statistics\n--------------------\n');
  fprintf('Total complete iterations             : %d\n', itt(1));
  fprintf('Complete iterations since improvement : %d\n', itt(2));
  fprintf('Total particles converged to xb       : %d\n', itt(3));
  fprintf('Total improvements to global optimum  : %d\n', itt(4));
  fprintf('Total function evaluations            : %d\n', itt(5));
  fprintf('Total particles re-initialized        : %d\n', itt(6));
  fprintf('Total constraints violated            : %d\n\n', itt(7));

  % Display why finalization occurred.
  switch inform
  case 0
     fprintf('Solution Status : An error was detected by e05sa\n');
  case 1
     fprintf('Solution Status : Target value achieved\n');
  case 2
     fprintf('Solution Status : Minimum swarm standard deviation obtained\n');
  case 3
     fprintf('Solution Status : Sufficient particles converged\n');
  case 4
     fprintf('Solution Status : No improvement in preset iteration limit\n');
  case 5
     fprintf('Solution Status : Maximum complete iterations attained\n');
  case 6
     fprintf('Solution Status : Maximum function evaluations exceeded\n');
  case 7
     fprintf('Solution Status : Constrained point located\n');
  otherwise
     fprintf('User termination case:  %d\n', inform);
  end

  % Display final objective value and location.
  fprintf('\n Known unconstrained objective minimum     : %9.3f\n', f_target_u);
  fprintf(' Best Known constrained objective minimum  : %9.3f\n', f_target_c);
  fprintf(' Achieved objective value                  : %9.3f\n\n', fb);

  title = 'Comparison between known and achieved optima.';
  clabs = {'x_target_u'; 'x_target_c'; 'xb        '};
  [ifail] = x04cb('G', 'N', [x_target_u, x_target_c, xb], 'f11.2', title, ...
                  'I', clabs, 'C', clabs, int64(80), int64(0));
  fprintf('\n');

  title   = 'Comparison between scaled constraint violations.';
  clabs   = {'c_target_u'; 'c_target_c'; 'cb        '};
  c_scale = [2490; 750000; 0.1];
  c_arr   = [c_target_u./c_scale, c_target_c./c_scale, cb./c_scale];
  [ifail] = x04cb(...
                  'G', 'N', c_arr, 'f11.5', title, ...
                  'I', clabs, 'C', clabs, int64(80), int64(0));
fprintf('\n');
e05sb example results


Default Option Queries:

Constraint Norm              : L1                              
Maximum Iterations Completed : 0 (DEFAULT)
Distance Tolerance           :      1.0000e-04

1. Solution without using coupled local minimizer.

Algorithm Statistics
--------------------
Total complete iterations             : 277
Complete iterations since improvement : 1
Total particles converged to xb       : 0
Total improvements to global optimum  : 117
Total function evaluations            : 4222
Total particles re-initialized        : 0
Total constraints violated            : 0

Solution Status : Target value achieved

 Known unconstrained objective minimum     :  -837.966
 Best Known constrained objective minimum  :  -731.707
 Achieved objective value                  :  -731.708

 Comparison between known and achieved optima.
    x_target_u x_target_c         xb
 1     -420.97    -394.15    -394.17
 2     -420.97    -433.48    -433.53

 Comparison between scaled constraint violations.
    c_target_u c_target_c         cb
 1     0.00000    0.00000    0.00000
 2     0.04219    0.00000    0.00000
 3     0.75749    0.00000    0.00002


2. Solution using coupled local minimizer e04uc.

Algorithm Statistics
--------------------
Total complete iterations             : 4
Complete iterations since improvement : 1
Total particles converged to xb       : 0
Total improvements to global optimum  : 7
Total function evaluations            : 151
Total particles re-initialized        : 0
Total constraints violated            : 0

Solution Status : Target value achieved

 Known unconstrained objective minimum     :  -837.966
 Best Known constrained objective minimum  :  -731.707
 Achieved objective value                  :  -731.706

 Comparison between known and achieved optima.
    x_target_u x_target_c         xb
 1     -420.97    -394.15    -394.15
 2     -420.97    -433.48    -433.49

 Comparison between scaled constraint violations.
    c_target_u c_target_c         cb
 1     0.00000    0.00000    0.00000
 2     0.04219    0.00000    0.00000
 3     0.75749    0.00000    0.00000

Algorithmic Details

The following pseudo-code describes the algorithm used with the repulsion mechanism.
INITIALIZE for ​ j=1, ​ np xj = R Ubox,ubox x^ j = R Ubox,ubox Start=COLD x^ j 0 Start=WARM vj = R U -V max ,Vmax f^j = F x^ j Start=COLD f^ j 0 Start=WARM e^ j = e x^ j Start=COLD e^ j 0 Start=WARM wj = Wmax Weight Initialize=MAXIMUM Wini Weight Initialize=INITIAL R U W min , W max Weight Initialize=RANDOMIZED end for x~ = 12 box + ubox f~ = F x~ e~ = e x~ Ic = Is = 0 SWARM while (not finalized), Ic = Ic + 1 for ​ j = 1 , np xj = BOUNDARYxj,box,ubox fj = F xj ej = e xj if ​ fj / fscale + ϕ wj ej < f^j / fscale + ϕwj e^j f^j = fj , ​ x^ j = xj if ​ e j < e~ ​ or ​ e j e~ ​ and ​ fj < f~ f~ = fj , ​ x~ = xj end for if ​ new f~ LOCMINx~,f~,e~,Oi , ​ Is=0 [see note on repulsion below for code insertion] else Is = Is + 1 for ​ j = 1 , np vj = wj vj + Cs D1 x^j - xj + Cg D2 x~ - xj xj = xj + vj if ​ xj - x~ < dtol reset ​ xj, ​ vj, ​ wj; ​ x^j = xj else update ​wj end for if (target achieved or termination criterion satisfied) finalized=true monmod xj end LOCMINx~,f~,e~,Oe  
The definition of terms used in the above pseudo-code are as follows.
np  the number of particles, npar
box array of ndim lower box bounds
ubox array of ndim upper box bounds
xj position of particle j
x^j best position found by particle j
x~ best position found by any particle
fj Fxj
f^j Fx^j, best value found by particle j
f~ Fx~, best value found by any particle
ekx kth (scaled) constraint violation at x, evaluated as
minckx-lndim+k,0.0+maxckx-undim+k,0.0; this may be scaled by the maximum kth constraint found thus far
ex the array of ncon constraint violations, ekx, for k=1,2,,ncon, at a point x
ej exj, the array of constraint violations evaluated at xj
e^j ex^j, the array of constraint violations evaluated at x^j
e~ ex~, the array of constraint violations evaluated at x~
vj velocity of particle j
wj weight on vj for velocity update, decreasing according to Weight Decrease
Vmax maximum absolute velocity, dependent upon Maximum Variable Velocity
Ic swarm iteration counter
Is iterations since x~ was updated
fscale objective function scaling defined by the options Constraint Scaling, Objective Scaling and Objective Scale.
D1,D2 diagonal matrices with random elements in range 0,1
Cs the cognitive advance coefficient which weights velocity towards x^j, adjusted using Advance Cognitive
Cg the global advance coefficient which weights velocity towards x~, adjusted using Advance Global
dtol the Distance Tolerance for resetting a converged particle
RUbox,ubox an array of random numbers whose i-th element is drawn from a uniform distribution in the range boxi,uboxi, for i=1,2,,ndim
Oi local optimizer interior options
Oe local optimizer exterior options
ϕwj a function of wj designed to increasingly weight towards minimizing constraint violations as wj decreases
LOCMINx,f,e,O apply local optimizer using the set of options O using the solution x,f,e as the starting point, if used (not default)
monmod monitor progress and possibly modify xj
BOUNDARY apply required behaviour for xj outside bounding box, (see Boundary)
new (f~) true if x~, c~, f~ were updated at this iteration
Additionally a repulsion phase can be introduced by changing from the default values of options Repulsion Finalize (rf), Repulsion Initialize (ri) and Repulsion Particles (rp). If the number of static particles is denoted ns then the following can be inserted after the new(f~) check in the pseudo-code above.
else ​ if ​ ( ns rp ​ and ​ ri Is ri + rf ) LOCMINx~,f~,e~,Oi use ​ -Cg ​ instead of ​ Cg ​ in velocity updates if ​ Is = ri + rf Is = 0  

Optional Parameters

This section can be skipped if you wish to use the default values for all optional parameters, otherwise, the following is a list of the optional parameters available and a full description of each optional parameter is provided in Description of the s.

Description of the Optional Parameters

For each option, we give a summary line, a description of the optional parameter and details of constraints.
The summary line contains:
All options accept the value ‘DEFAULT’ in order to return single options to their default states.
Keywords and character values are case insensitive, however they must be separated by at least one space.
For nag_glopt_nlp_pso (e05sb) the maximum length of the argument cvalue used by nag_glopt_optget (e05zl) is 15.
Advance Cognitive  r
Default=2.0
The cognitive advance coefficient, Cs. When larger than the global advance coefficient, this will cause particles to be attracted toward their previous best positions. Setting r=0.0 will cause nag_glopt_nlp_pso (e05sb) to act predominantly as a local optimizer. Setting r>2.0 may cause the swarm to diverge, and is generally inadvisable. At least one of the global and cognitive coefficients must be nonzero.
Advance Global  r
Default=2.0
The global advance coefficient, Cg. When larger than the cognitive coefficient this will encourage convergence toward the best solution yet found. Values r0,1 will inhibit particles overshooting the optimum. Values r1,2 cause particles to fly over the optimum some of the time. Larger values can prohibit convergence. Setting r=0.0 will remove any attraction to the current optimum, effectively generating a Monte–Carlo multi-start optimization algorithm. At least one of the global and cognitive coefficients must be nonzero.
Boundary  a
Default=FLOATING
Determines the behaviour if particles leave the domain described by the box bounds. This only affects the general PSO algorithm, and will not pass down to any NAG local minimizers chosen.
This option is only effective in those dimensions for which blibui, i=1,2,,ndim.
IGNORE
The box bounds are ignored. The objective function is still evaluated at the new particle position.
RESET
The particle is re-initialized inside the domain. x^j, f^j and e^j are not affected.
FLOATING
The particle position remains the same, however the objective function will not be evaluated at the next iteration. The particle will probably be advected back into the domain at the next advance due to attraction by the cognitive and global memory.
HYPERSPHERICAL
The box bounds are wrapped around an ndim-dimensional hypersphere. As such a particle leaving through a lower bound will immediately re-enter through the corresponding upper bound and vice versa. The standard distance between particles is also modified accordingly.
FIXED
The particle rests on the boundary, with the corresponding dimensional velocity set to 0.0.
Constraint Norm  a
Default=L1
Determines with respect to which norm the constraint residuals should be constructed. These are automatically scaled with respect to ncon as stated. For the set of (scaled) violations e, these may be,
L1
The L1 norm will be used, e1=1ncon1nconek
L2
The L2 norm will be used, e2=1ncon1nconek2
L2SQ
The square of the L2 norm will be used, e22=1ncon1nconek2
LMAX
The L norm will be used, e=max0<knconek
Constraint Scale Maximum  r
Default=1.0e6
Internally, each constraint violation is scaled with respect to the maximum violation yet achieved for that constraint. This option acts as a ceiling for this scale.
Constraint: r>1.0.
Constraint Scaling  a
Default=INITIAL
Determines whether to scale the constraints and objective function when constructing the penalty function.
OFF
Neither the constraint violations nor the objective will be scaled automatically. This should only be used if the constraints and objective are similarly scaled everywhere throughout the domain.
INITIAL
The maximum of the initial cognitive memories, f^j and e^j, will be used to scale the objective function and constraint violations respectively.
ADAPTIVE
Initially, the maximum of the initial cognitive memories, f^j and e^j, will be used to scale the objective function and constraint violations respectively. If a significant change is detected in the behaviour of the constraints or the objective, these will be rescaled with respect to the current state of the cognitive memory.
Constraint Superiority  r
Default=0.01
The minimum scaled improvement in the constraint violation for a location to be immediately superior to that in memory, regardless of the objective value.
Constraint: r>0.0.
Constraint Tolerance  r
Default=10-4
The maximum scaled violation of the constraints for which a sample particle is considered comparable to the current global optimum. Should this not be exceeded, then the current global optimum will be updated if the value of the objective function of the sample particle is superior.
Constraint Warning  a
Default=ON
Activates or deactivates the error exit associated with the inability to completely satisfy all constraints, ifail=4. It is advisable to deactivate this option if ifail=0 on entry and the satisfaction of all constraints is not program critical.
OFF
No error will be returned.
ON
An error will be returned if any constraints are sufficiently violated at the end of the simulation.
Distance Scaling  a
Default=ON
Determines whether distances should be scaled by box widths.
ON
When a distance is calculated between x and y, a scaled L2 norm is used.
L2 x,y = i | ui i , indim xi - yi ui - i 2 1 2 .  
OFF
Distances are calculated as the standard L2 norm without any rescaling.
L2 x,y = i=1 ndim xi - yi 2 1 2 .  
Distance Tolerance  r
Default=10-4
This is the distance, dtol between particles and the global optimum which must be reached for the particle to be considered converged, i.e., that any subsequent movement of such a particle cannot significantly alter the global optimum. Once achieved the particle is reset into the box bounds to continue searching.
Constraint: r>0.0.
Function Precision  r
Default=ε0.9
The parameter defines εr, which is intended to be a measure of the accuracy with which the problem function Fx can be computed. If r<ε or r1, the default value is used.
The value of εr should reflect the relative precision of 1+Fx; i.e., εr acts as a relative precision when F is large, and as an absolute precision when F is small. For example, if Fx is typically of order 1000 and the first six significant digits are known to be correct, an appropriate value for εr would be 10-6. In contrast, if Fx is typically of order 10-4 and the first six significant digits are known to be correct, an appropriate value for εr would be 10-10. The choice of εr can be quite complicated for badly scaled problems; see Chapter 8 of Gill et al. (1981) for a discussion of scaling techniques. The default value is appropriate for most simple functions that are computed with full accuracy. However when the accuracy of the computed function values is known to be significantly worse than full precision, the value of εr should be large enough so that no attempt will be made to distinguish between function values that differ by less than the error inherent in the calculation.
Local Boundary Restriction  r
Default=0.5
Contracts the box boundaries used by a box constrained local minimizer to, βl,βu, containing the start point x, where
i = r × ui - i βli = maxi, xi - i2 βui = minui, xi + i2 ,  i=1,,ndim .  
Smaller values of r thereby restrict the size of the domain exposed to the local minimizer, possibly reducing the amount of work done by the local minimizer.
Constraint: 0.0r1.0.
Local Interior Iterations  i1
Local Interior Major Iterations  i1
Local Exterior Iterations  i2
Local Exterior Major Iterations  i2
The maximum number of iterations or function evaluations the chosen local minimizer will perform inside (outside) the main loop if applicable. For the NAG minimizers these correspond to:
Minimizer Parameter/option Default Interior Default Exterior
nag_opt_uncon_simplex (e04cb) maxcal ndim+10 2×ndim+15
nag_opt_uncon_conjgrd_comp (e04dg) Iteration Limit max30,3×ndim max50,5×ndim
nag_opt_nlp1_solve (e04uc) Major Iteration Limit max10,2×ndim max30,3×ndim
Unless set, these are functions of the parameters passed to nag_glopt_nlp_pso (e05sb).
Setting i=0 will disable the local minimizer in the corresponding algorithmic region. For example, setting Local Interior Iterations=0 and Local Exterior Iterations=30 will cause the algorithm to perform no local minimizations inside the main loop of the algorithm, and a local minimization with upto 30 iterations after the main loop has been exited.
Note: currently nag_opt_bounds_quasi_func_easy (e04jy) or nag_opt_bounds_mod_deriv_easy (e04kz) are restricted to using 400×ndim and 50×ndim as function evaluation limits respectively. This applies to both local minimizations inside and outside the main loop. They may still be deactivated in either phase by setting i=0, and may subsequently be reactivated in either phase by setting i>0.
Constraint: i10, i20.
Local Interior Tolerance  r1
Default=10-4
Local Exterior Tolerance  r2
Default=10-4
This is the tolerance provided to a local minimizer in the interior (exterior) of the main loop of the algorithm.
Constraint: r1>0.0, r2>0.0.
Local Interior Minor Iterations  i1
Local Exterior Minor Iterations  i2
Where applicable, the secondary number of iterations the chosen local minimizer will use inside (outside) the main loop. Currently the relevant default values are:
Minimizer Parameter/option Default Interior Default Exterior
nag_opt_nlp1_solve (e04uc) Minor Iteration Limit max10,2×ndim max30,3×ndim
Constraint: i10, i20.
Local Minimizer  a
Default=OFF
Allows for a choice of Chapter E04 functions to be used as a coupled, dedicated local minimizer.
OFF
No local minimization will be performed in either the INTERIOR or EXTERIOR sections of the algorithm.
nag_opt_uncon_simplex (e04cb)
Use nag_opt_uncon_simplex (e04cb) as the local minimizer. This does not require the calculation of derivatives.
On a call to objfun during a local minimization, mode=5.
nag_opt_bounds_mod_deriv_easy (e04kz)
Use nag_opt_bounds_mod_deriv_easy (e04kz) as the local minimizer. This requires the calculation of derivatives in objfun, as indicated by mode.
The box bounds forwarded to this function from nag_glopt_nlp_pso (e05sb) will have been acted upon by Local Boundary Restriction. As such, the domain exposed may be greatly smaller than that provided to nag_glopt_nlp_pso (e05sb).
Accurate derivatives must be provided to this function, and will not be approximated internally. Each iteration of this local minimizer also requires the calculation of both the objective function and its derivative. Hence on a call to objfun during a local minimization, mode=7.
nag_opt_bounds_quasi_func_easy (e04jy)
Use nag_opt_bounds_quasi_func_easy (e04jy) as the local minimizer. This does not require the calculation of derivatives.
On a call to objfun during a local minimization, mode=5.
The box bounds forwarded to this function from nag_glopt_nlp_pso (e05sb) will have been acted upon by Local Boundary Restriction. As such, the domain exposed may be greatly smaller than that provided to nag_glopt_nlp_pso (e05sb).
nag_opt_uncon_conjgrd_comp (e04dg)
nag_opt_uncon_conjgrd_comp (e04dg)
Use nag_opt_uncon_conjgrd_comp (e04dg) as the local minimizer.
Accurate derivatives must be provided, and will not be approximated internally. Additionally, each call to objfun during a local minimization will require either the objective to be evaluated alone, or both the objective and its gradient to be evaluated. Hence on a call to objfun, mode=5 or 7.
nag_opt_nlp1_solve (e04uc)
nag_opt_nlp1_solve (e04uc)
Use nag_opt_nlp1_solve (e04uc) as the local minimizer. This operates such that any derivatives of either the objective function or the constraint Jacobian, which you cannot supply, will be approximated internally using finite differences.
Either, the objective, objective gradient, or both may be requested during a local minimization, and as such on a call to objfun, mode=1, 2 or 5.
The box bounds forwarded to this function from nag_glopt_nlp_pso (e05sb) will have been acted upon by Local Boundary Restriction. As such, the domain exposed may be greatly smaller than that provided to nag_glopt_nlp_pso (e05sb).
Maximum Function Evaluations  i
Default =Imax
The maximum number of evaluations of the objective function. When reached this will return ifail=1 and inform=6.
Constraint: i>0.
Maximum Iterations Completed  i
Default=1000×ndim
The maximum number of complete iterations that may be performed. Once exceeded nag_glopt_nlp_pso (e05sb) will exit with ifail=1 and inform=5.
Unless set, this adapts to the parameters passed to nag_glopt_nlp_pso (e05sb).
Constraint: i1.
Maximum Iterations Static  i
Default=100
The maximum number of iterations without any improvement to the current global optimum. If exceeded nag_glopt_nlp_pso (e05sb) will exit with ifail=1 and inform=4. This exit will be hindered by setting Maximum Iterations Static Particles to larger values.
Constraint: i1.
Maximum Iterations Static Particles  i
Default=0
The minimum number of particles that must have converged to the current optimum before the function may exit due to Maximum Iterations Static with ifail=1 and inform=4.
Constraint: i0.
Maximum Particles Converged  i
Default =Imax
The maximum number of particles that may converge to the current optimum. When achieved, nag_glopt_nlp_pso (e05sb) will exit with ifail=1 and inform=3. This exit will be hindered by setting ‘Repulsion’ options, as these cause the swarm to re-expand.
Constraint: i>0.
Maximum Particles Reset  i
Default =Imax
The maximum number of particles that may be reset after converging to the current optimum. Once achieved no further particles will be reset, and any particles within Distance Tolerance of the global optimum will continue to evolve as normal.
Constraint: i>0.
Maximum Variable Velocity  r
Default=0.25
Along any dimension j, the absolute velocity is bounded above by vjr×uj-j=Vmax. Very low values will greatly increase convergence time. There is no upper limit, although larger values will allow more particles to be advected out of the box bounds, and values greater than 4.0 may cause significant and potentially unrecoverable swarm divergence.
Constraint: r>0.0.
Objective Scale  r
Default=1.0
The initial scale for the objective function. This will remain fixed if Objective Scaling=USER is selected.
Objective Scaling  a
Default=MAXIMUM
The method of (re)scaling applied to the objective function when the function detects a significant difference between the scale and the global and cognitive memory (f~ and f^j). This only has an effect when ncon>0 and Constraint Scaling is active.
MAXIMUM
The objective is rescaled with respect to the maximum absolute value of the objective in the cognitive and global memory.
MEAN
The objective is rescaled with respect to the mean absolute value of the objective in the cognitive and global memory.
USER
The scale remains fixed at the value set using Objective Scale.
Optimize  a
Default=MINIMIZE
Determines whether to maximize or minimize the objective function, or ignore the objective and search for a constrained point.
MINIMIZE
The objective function will be minimized.
MAXIMIZE
The objective function will be maximized. This is accomplished by minimizing the negative of the objective.
CONSTRAINTS
The objective function will be ignored, and the algorithm will attempt to find a feasible point given the provided constraints. The objective function will be evaluated at the best point found with regards to constraint violations, and the final positions returned in xbest. The objective will be calculated at the best point found in terms of constraints only. Should a constrained point be found, nag_glopt_nlp_pso (e05sb) will exit with ifail=0 and inform=6.
Constraint: if Optimize=CONSTRAINTS, ncon>0 is required.
Repeatability  a
Default=OFF
Allows for the same random number generator seed to be used for every call to nag_glopt_nlp_pso (e05sb). Repeatability=OFF is recommended in general.
OFF
The internal generation of random numbers will be nonrepeatable.
ON
The same seed will be used.
Repulsion Finalize  i
Default =Imax
The number of iterations performed in a repulsive phase before re-contraction. This allows a re-diversified swarm to contract back toward the current optimum, allowing for a finer search of the near optimum space.
Constraint: i2.
Repulsion Initialize  i
Default =Imax
The number of iterations without any improvement to the global optimum before the algorithm begins a repulsive phase. This phase allows the particle swarm to re-expand away from the current optimum, allowing more of the domain to be investigated. The repulsive phase is automatically ended if a superior optimum is found.
Constraint: i2.
Repulsion Particles  i
Default=0
The number of particles required to have converged to the current optimum before any repulsive phase may be initialized. This will prevent repulsion before a satisfactory search of the near optimum area has been performed, which may happen for large dimensional problems.
Constraint: i0.
Start  a
Default=COLD
Used to affect the initialization of the function.
COLD
The random number generators and all initialization data will be generated internally. The variables xbest, fbest and cbest need not be set.
WARM
You must supply the initial best location, function and constraint violation values xbest, fbest and cbest. This option is recommended if you already have a data set you wish to improve upon.
Swarm Standard Deviation  r
Default=0.1
The target standard deviation of the particle distances from the current optimum. Once the standard deviation is below this level, nag_glopt_nlp_pso (e05sb) will exit with ifail=1 and inform=2. This criterion will be penalized by the use of ‘Repulsion’ options, as these cause the swarm to re-expand, increasing the standard deviation of the particle distances from the best point.
In SMP parallel implementations of nag_glopt_nlp_pso (e05sb), the standard deviation will be calculated based only on the particles local to the particular thread that checks for finalization. Considerably fewer particles may be used in this calculation than when the algorithm is run in serial. It is therefore recommended that you provide a smaller value of Swarm Standard Deviation when running in parallel than when running in serial.
Constraint: r0.0.
Target Objective  a
Default=OFF
Target Objective Value  r
Default=0.0
Activate or deactivate the use of a target value as a finalization criterion. If active, then once the supplied target value for the objective function is found (beyond the first iteration if Target Warning is active) nag_glopt_nlp_pso (e05sb) will exit with ifail=0 and inform=1. Other than checking for feasibility only (Optimize=CONSTRAINTS), this is the only finalization criterion that guarantees that the algorithm has been successful. If the target value was achieved at the initialization phase or first iteration and Target Warning is active, nag_glopt_nlp_pso (e05sb) will exit with ifail=2. This option may take any real value r, or the character ON/OFF as well as DEFAULT. If this option is queried using nag_glopt_optget (e05zl), the current value of r will be returned in rvalue, and cvalue will indicate whether this option is ON or OFF. The behaviour of the option is as follows:
r
Once a point is found with an objective value within the Target Objective Tolerance of r, nag_glopt_nlp_pso (e05sb) will exit successfully with ifail=0 and inform=1.
OFF
The current value of r will remain stored, however it will not be used as a finalization criterion.
ON
The current value of r stored will be used as a finalization criterion.
DEFAULT
The stored value of r will be reset to its default value (0.0), and this finalization criterion will be deactivated.
Target Objective Safeguard  r
Default=10.0ε
If you have given a target objective value to reach in objval (the value of the optional parameter Target Objective Value), objsfg sets your desired safeguarded termination tolerance, for when objval is close to zero.
Constraint: objsfg2ε.
Target Objective Tolerance  r
Default=0.0
The optional tolerance to a user-specified target value.
Constraint: r0.0.
Target Warning  a
Default=OFF
Activates or deactivates the error exit associated with the target value being achieved before entry into the main loop of the algorithm, ifail=2.
OFF
No error will be returned, and the function will exit normally.
ON
An error will be returned if the target objective is reached prematurely, and the function will exit with ifail=2.
Verify Gradients  a
Default=ON
Adjusts the level of gradient checking performed when gradients are required. Gradient checks are only performed on the first call to the chosen local minimizer if it requires gradients. There is no guarantee that the gradient check will be correct, as the finite differences used in the gradient check are themselves subject to inaccuracies.
OFF
No gradient checking will be performed.
ON
A cheap gradient check will be performed on both the gradients corresponding to the objective through objfun and those provided via the constraint Jacobian through confun.
OBJECTIVE
A more expensive gradient check will be performed on the gradients corresponding to the objective objfun. The gradients of the constraints will not be checked.
CONSTRAINTS
A more expensive check will be performed on the elements of cjac provided via confun. The objective gradient will not be checked.
FULL
A more expensive check will be performed on both the gradient of the objective and the constraint Jacobian.
Weight Decrease  a
Default=INTEREST
Determines how particle weights decrease.
OFF
Weights do not decrease.
INTEREST
Weights decrease through compound interest as wIT+1=wIT1-Wval, where Wval is the Weight Value and IT is the current number of iterations.
LINEAR
Weights decrease linearly following wIT+1=wIT-IT×Wmax-Wmin/ITmax, where IT is the iteration number and ITmax is the maximum number of iterations as set by Maximum Iterations Completed.
Weight Initial  r
Default=Wmax
The initial value of any particle's inertial weight, Wini, or the minimum possible initial value if initial weights are randomized. When set, this will override Weight Initialize=RANDOMIZED or MAXIMUM, and as such these must be set afterwards if so desired.
Constraint: WminrWmax.
Weight Initialize  a
Default=MAXIMUM
Determines how the initial weights are distributed.
INITIAL
All weights are initialized at the initial weight, Wini, if set. If Weight Initial has not been set, this will be the maximum weight, Wmax.
MAXIMUM
All weights are initialized at the maximum weight, Wmax.
RANDOMIZED
Weights are uniformly distributed in Wmin,Wmax or Wini,Wmax if Weight Initial has been set.
Weight Maximum  r
Default=1.0
The maximum particle weight, Wmax.
Constraint: 1.0rWmin (If Wini has been set then 1.0rWini.)
Weight Minimum  r
Default=0.1
The minimum achievable weight of any particle, Wmin. Once achieved, no further weight reduction is possible.
Constraint: 0.0rWmax (If Wini has been set then 0.0rWini.)
Weight Reset  a
Default=MAXIMUM
Determines how particle weights are re-initialized.
INITIAL
Weights are re-initialized at the initial weight if set. If Weight Initial has not been set, this will be the maximum weight.
MAXIMUM
Weights are re-initialized at the maximum weight.
RANDOMIZED
Weights are uniformly distributed in Wmin,Wmax or Wini,Wmax if Weight Initial has been set.
Weight Value  r
Default=0.01
The constant Wval used with Weight Decrease=INTEREST.
Constraint: 0.0r13.

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015