PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_glopt_bnd_pso (e05sa)
Purpose
nag_glopt_bnd_pso (e05sa) is designed to search for the global minimum or maximum of an arbitrary function, using Particle Swarm Optimization (PSO). Derivatives are not required, although these may be used by an accompanying local minimization function if desired.
nag_glopt_bnd_pso (e05sa) is essentially identical to
nag_glopt_nlp_pso (e05sb), but with a simpler interface and with various optional parameters removed; otherwise most arguments are identical. In particular,
nag_glopt_bnd_pso (e05sa) does not handle general constraints.
Syntax
[
xb,
fb,
iopts,
opts,
user,
itt,
inform,
ifail] = e05sa(
bl,
bu,
objfun,
monmod,
iopts,
opts, 'ndim',
ndim, 'npar',
npar, 'user',
user)
[
xb,
fb,
iopts,
opts,
user,
itt,
inform,
ifail] = nag_glopt_bnd_pso(
bl,
bu,
objfun,
monmod,
iopts,
opts, 'ndim',
ndim, 'npar',
npar, 'user',
user)
Before calling
nag_glopt_bnd_pso (e05sa),
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_bnd_pso (e05sa).
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 24: |
npar was made optional |
Description
nag_glopt_bnd_pso (e05sa) uses a stochastic method based on Particle Swarm Optimization (PSO) to search for the global optimum of a nonlinear function
, subject to a set of bound constraints on the variables. 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:
where the objective
is a scalar function,
is a vector in
and the vectors
are lower and upper bounds respectively for the
variables. The objective function may be nonlinear. Continuity of
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_bnd_pso (e05sa).
For multi-modal functions for which derivatives cannot be provided, particularly functions with a significant level of noise in their evaluation,
nag_glopt_bnd_pso (e05sa) should be used either alone, or coupled with
nag_opt_uncon_simplex (e04cb).
The
lower and upper box bounds on the variable
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.
nag_glopt_bnd_pso (e05sa) may also be used to maximize the objective function (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_bnd_pso (e05sa) will exit with
, 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 and
objfun.
nag_glopt_nlp_pso (e05sb) provides a comprehensive interface, allowing for 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:
– double array
- 2:
– double array
-
is
, the array of lower bounds,
bu is
, the array of upper bounds. The
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).
If
for any
, variable
will remain locked to
regardless of the
Boundary option selected.
It is strongly advised that you place sensible lower and upper bounds on all variables, even if your model allows for variables to be unbounded (using the option ) since these define the initial search space.
Constraints:
- , for ;
- for at least one .
- 3:
– 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
-variable vector
. 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:
– int64int32nag_int scalar
-
Indicates which functionality is required.
- 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 that is greater than objf may be approximated by this upper bound; that is objf can remain unaltered.
- only
First derivatives can be evaluated and returned in vecout. Any unaltered elements of vecout will be approximated using finite differences.
- only
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.
- must be calculated and returned in objf. The value of objf on entry may not be used as an upper bound.
- or only
All first derivatives must be evaluated and returned in vecout.
- or only
must be calculated and returned in objf, and all first derivatives must be evaluated and returned in vecout.
- 2:
– int64int32nag_int scalar
-
The number of dimensions.
- 3:
– double array
-
, the point at which the objective function and/or its gradient are to be evaluated.
- 4:
– double scalar
-
The value of
objf passed to
objfun varies with the argument
mode.
- objf is an upper bound for the value of , often equal to the best value of found so far by a given particle. 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.
- , , , or
- objf is meaningless on entry.
- 5:
– double array
-
If
or
, the values of
vecout are used internally to indicate whether a finite difference approximation is required. See
nag_opt_nlp1_solve (e04uc).
- 6:
– 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.
- 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.
- objfun is called for the very first time. You may save computational time if certain data must be read or calculated only once.
- 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.
- Used in all other cases.
- 7:
– Any MATLAB object
objfun is called from
nag_glopt_bnd_pso (e05sa) with the object supplied to
nag_glopt_bnd_pso (e05sa).
Output Parameters
- 1:
– int64int32nag_int scalar
-
If the value of
mode is set to be negative, then
nag_glopt_bnd_pso (e05sa) will exit as soon as possible with
and
.
- 2:
– double scalar
-
The value of
objf returned varies with the argument
mode.
- objf must be the value of . Only values of strictly less than objf on entry need be accurate.
- or
- Need not be set.
- , or
- must be calculated and returned in objf. The entry value of objf may not be used as an upper bound.
- 3:
– double array
-
The required values of
vecout returned to the calling function depend on the value of
mode.
- or
- The value of vecout need not be set.
- or
- vecout can contain components of the gradient of the objective function for some , or acceptable approximations. Any unaltered elements of vecout will be approximated using finite differences.
- or
- vecout must contain the gradient of the objective function for all . 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:
– Any MATLAB object
- 4:
– 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_bnd_pso_dummy_monmod (e05sxm)nag_glopt_bnd_pso_dummy_monmod (e05sxm) .
[x, user, inform] = monmod(ndim, npar, x, xb, fb, xbest, fbest, itt, user, inform)
Input Parameters
- 1:
– int64int32nag_int scalar
-
The number of dimensions.
- 2:
– int64int32nag_int scalar
-
The number of particles.
- 3:
– double array
-
Note: the th component of the th particle, , is stored in .
The
npar particle locations,
, which will currently be used during the next iteration unless altered in
monmod.
- 4:
– double array
-
The location, , of the best solution yet found.
- 5:
– double scalar
-
The objective value, , of the best solution yet found.
- 6:
– double array
-
Note: the th component of the position of the th particle's cognitive memory, , is stored in .
The locations currently in the cognitive memory,
, for
(see
Algorithmic Details).
- 7:
– double array
-
The objective values currently in the cognitive memory,
, for .
- 8:
– int64int32nag_int array
-
Iteration and function evaluation counters (see description of
itt below).
- 9:
– Any MATLAB object
monmod is called from
nag_glopt_bnd_pso (e05sa) with the object supplied to
nag_glopt_bnd_pso (e05sa).
- 10:
– int64int32nag_int scalar
-
, 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:
– double array
-
Note: the th component of the th particle, , is stored in .
The particle locations to be used during the next iteration.
- 2:
– Any MATLAB object
- 3:
– int64int32nag_int scalar
-
Setting
will cause near immediate exit from
nag_glopt_bnd_pso (e05sa). This value will be returned as
inform with
. You need not set
inform unless you wish to force an exit.
- 5:
– 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_bnd_pso (e05sa),
nag_glopt_optset (e05zk) or
nag_glopt_optget (e05zl).
- 6:
– 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_bnd_pso (e05sa),
nag_glopt_optset (e05zk) or
nag_glopt_optget (e05zl).
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
bl,
bu. (An error is raised if these dimensions are not equal.)
, the number of dimensions.
Constraint:
.
- 2:
– int64int32nag_int scalar
Default:
, the number of particles to be used in the swarm. Assuming all particles remain within bounds, each complete iteration will perform at least
npar function evaluations. Otherwise, significantly fewer objective function evaluations may be performed.
Constraint:
, where num_threads is the value returned by the OpenMP environment variable OMP_NUM_THREADS, or num_threads is for a serial version of this function.
- 3:
– Any MATLAB object
user is not used by
nag_glopt_bnd_pso (e05sa), but is passed to
objfun 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:
– double array
-
The location of the best solution found, , in .
- 2:
– double scalar
-
The objective value of the best solution, .
- 3:
– 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_bnd_pso (e05sa).
- 4:
– 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_bnd_pso (e05sa).
- 5:
– Any MATLAB object
- 6:
– int64int32nag_int array
-
Integer iteration counters for
nag_glopt_bnd_pso (e05sa).
- Number of complete iterations.
- Number of complete iterations without improvement to the current optimum.
- Number of particles converged to the current optimum.
- Number of improvements to the optimum.
- Number of function evaluations performed.
- Number of particles reset.
- 7:
– int64int32nag_int scalar
-
Indicates which finalization criterion was reached. The possible values of
inform are:
inform | Meaning |
| Exit from a user-supplied subroutine. |
0 | nag_glopt_bnd_pso (e05sa) 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 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 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 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 , increasing this limit if the number of iterations without improvement is small, or decreasing this limit and running the algorithm multiple times with , may provide a superior result. |
- 8:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
For this reason, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended; otherwise, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.nag_glopt_bnd_pso (e05sa) will return
if and only if a finalization criterion has been reached which can guarantee success. This may only happen if the option
Target Objective Value has been set and reached at a point within the search domain. The finalization criterion
Target Objective Value is not activated using default option settings, and must be explicitly set using
nag_glopt_optset (e05zk) if required.
nag_glopt_bnd_pso (e05sa) will return 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
-
A finalization criterion was reached that cannot guarantee success.
- W
-
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
-
User requested exit during call to
monmod.
User requested exit during call to
objfun.
-
-
Constraint: .
-
-
Constraint: , where num_threads is the value returned by the OpenMP environment variable OMP_NUM_THREADS, or num_threads is for a serial version of this function.
-
-
Constraint: for all .
On entry, for all .
Constraint: for at least one .
-
-
Error occurred whilst adjusting to exterior local minimizer options.
Error occurred whilst adjusting to interior local minimizer options.
-
-
Either the option arrays have not been initialized for nag_glopt_bnd_pso (e05sa), or they have become corrupted.
- W
-
Derivative checks indicate possible errors in the supplied derivatives.
Gradient checks may be disabled by setting .
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
If
(or
) or
on exit, either a
Target Objective Value or finalization criterion has 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_bnd_pso (e05sa), 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 basin 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,
. This may only happen if a
Target Objective Value is assigned and is reached by the algorithm.
On successful exit without guaranteed success, 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_bnd_pso (e05sa) is relatively static throughout. As such, nag_glopt_bnd_pso (e05sa) may be used in problems with high dimension number () 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 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 Schwefel function:
In two dimensions the optimum is , located at .
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_bnd_pso (e05sa). The function is minimized several times to demonstrate using
nag_glopt_bnd_pso (e05sa) alone, and coupled with local minimizers. This program uses the non-default option
to produce repeatable solutions.
Open in the MATLAB editor:
e05sa_example
function e05sa_example
fprintf('e05sa example results\n\n');
bu = [ 500, 500];
bl = [-500, -500];
npar = int64(5);
x_target = [-420.9687463599820;-420.9687463599820];
f_target = -837.9657745448674;
iopts = zeros(100, 1, 'int64');
opts = zeros(100, 1);
[iopts, opts, ifail] = e05zk('Initialize = e05sa', iopts, opts);
[ivalue, rvalue, boundary, optype, ifail] = ...
e05zl(...
'Boundary', iopts, opts);
[maxits, rvalue, itsstr, optype, ifail] = ...
e05zl(...
'Maximum Iterations Completed', iopts, opts);
[ivalue, distol, cvalue, optype, ifail] = ...
e05zl(...
'Distance Tolerance', iopts, opts);
fprintf('\nDefault Option Queries:\n\n');
fprintf('Boundary : %s\n', boundary);
fprintf('Maximum Iterations Completed : %d (%s)\n', maxits, strtrim(itsstr));
fprintf('Distance Tolerance : %10.4e\n', distol);
fprintf('\n1. Solution without using coupled local minimizer.\n');
[iopts, opts, ifail] = e05zk(...
'Repeatability = On', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Verify Gradients = Off', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Boundary = Hyperspherical', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Maximum iterations static = 150', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Repulsion Initialize = 30', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Repulsion Finalize = 30', iopts, opts);
wstat = warning();
warning('OFF');
[xb, fb, iopts, opts, user, itt, inform, ifail] = ...
e05sa(bl, bu, @objfun, 'e05sxm', iopts, opts, 'npar', npar);
switch ifail
case {0,1}
display_result(x_target, f_target, xb,fb,itt,inform);
case 3
display_result(x_target, f_target, xb,fb,itt,inform);
otherwise
end
fprintf('\n2. Solution using coupled local minimizer e04cb.\n');
optstr = sprintf('Target Objective Value = %32.16e', f_target);
[iopts, opts, ifail] = e05zk(optstr, iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Target Objective Tolerance = 1.0e-5', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Target Objective Safeguard = 1.0e-8', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Local Minimizer = e04cb', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Local Interior Iterations = 10', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Local Exterior Iterations = 20', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Local Interior Tolerance = 1.0e-4', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Local Exterior Tolerance = 1.0e-4', iopts, opts);
[xb, fb, iopts, opts, user, itt, inform, ifail] = ...
e05sa(...
bl, bu, @objfun, 'e05sxm', iopts, opts, 'npar', npar);
switch ifail
case {0,1}
display_result(x_target, f_target, xb,fb,itt,inform);
case 3
display_result(x_target, f_target, xb,fb,itt,inform);
otherwise
end
fprintf('\n3. Solution using coupled local minimizer e04dg.\n');
[iopts, opts, ifail] = e05zk(...
'Local Minimizer = e04dg', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Local Interior Iterations = 5', iopts, opts);
[iopts, opts, ifail] = e05zk(...
'Local Exterior Iterations = 20', iopts, opts);
%[iopts, opts, ifail] = e05zk('Verify Gradients = off', iopts, opts);
[xb, fb, iopts, opts, user, itt, inform, ifail] = ...
e05sa(...
bl, bu, @objfun, 'e05sxm', iopts, opts, 'npar', npar);
switch ifail
case {0,1}
display_result(x_target, f_target, xb,fb,itt,inform);
case 3
display_result(x_target, f_target, xb,fb,itt,inform);
otherwise
end
warning(wstat);
function [mode, objf, vecout, user] = ...
objfun(mode, ndim, x, objf, vecout, nstate, user)
switch nstate
case (2)
case (-1)
case (1)
case (0)
otherwise
mode = int64(-1);
error('*** Error detected in objfun');
end
evalobjf = false;
evalobjg = false;
switch mode
case {0,5}
evalobjf = true;
case {1,6}
evalobjg = true;
case {2,7}
evalobjf = true;
evalobjg = true;
otherwise
mode = int64(-1);
error('*** Illegal value of mode (%d) in objfun', mode);
end
if evalobjf
objf = sum(x(1:double(ndim)).*sin(sqrt(abs(x(1:double(ndim))))));
end
if evalobjg
vecout = sqrt(abs(x));
for i=1:double(ndim)
if abs(x(i)) < x02aj
vecout(i) = 0;
else
v = vecout(i);
vecout(i) = sin(v) + signtransfer(x(i)*cos(v)/(2*v), x(i));
end
end
end
function [r] = signtransfer(x, y)
if y >= 0
r = abs(x);
else
r = -abs(x);
end
function [] = display_result(x_target, f_target, xb,fb,itt,inform)
fprintf('\nAlgorithm Statistics\n--------------------\n');
fprintf('Total complete iterations : %4d\n', itt(1));
fprintf('Complete iterations since improvement : %4d\n', itt(2));
fprintf('Total particles converged to xb : %4d\n', itt(3));
fprintf('Total improvements to global optimum : %4d\n', itt(4));
fprintf('Total function evaluations : %4d\n', itt(5));
fprintf('Total particles re-initialized : %4d\n\n', itt(6));
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');
otherwise
fprintf('User termination case: %d\n', inform);
end
fprintf('\n Known objective optimum : %13.5f\n', f_target);
fprintf(' Achieved objective value : %13.5f\n\n', fb);
title = 'Comparison between known and achieved optima.';
clabs = {'x_target'; 'xb '};
ncols = int64(80);
indent = int64(0);
[ifail] = x04cb(...
'G', 'N', [x_target, xb], 'f9.2', title, 'I', clabs, ...
'C', clabs, ncols, indent);
fprintf('\n');
e05sa example results
Default Option Queries:
Boundary : FLOATING
Maximum Iterations Completed : 1000 (DEFAULT)
Distance Tolerance : 1.0000e-04
1. Solution without using coupled local minimizer.
Algorithm Statistics
--------------------
Total complete iterations : 395
Complete iterations since improvement : 152
Total particles converged to xb : 2
Total improvements to global optimum : 59
Total function evaluations : 2773
Total particles re-initialized : 2
Solution Status : No improvement in preset iteration limit
Known objective optimum : -837.96577
Achieved objective value : -837.96567
Comparison between known and achieved optima.
x_target xb
1 -420.97 -420.95
2 -420.97 -420.94
2. Solution using coupled local minimizer e04cb.
Algorithm Statistics
--------------------
Total complete iterations : 51
Complete iterations since improvement : 1
Total particles converged to xb : 0
Total improvements to global optimum : 12
Total function evaluations : 537
Total particles re-initialized : 0
Solution Status : Target value achieved
Known objective optimum : -837.96577
Achieved objective value : -837.96577
Comparison between known and achieved optima.
x_target xb
1 -420.97 -420.97
2 -420.97 -420.97
3. Solution using coupled local minimizer e04dg.
Algorithm Statistics
--------------------
Total complete iterations : 8
Complete iterations since improvement : 1
Total particles converged to xb : 0
Total improvements to global optimum : 10
Total function evaluations : 120
Total particles re-initialized : 0
Solution Status : Target value achieved
Known objective optimum : -837.96577
Achieved objective value : -837.96561
Comparison between known and achieved optima.
x_target xb
1 -420.97 -420.94
2 -420.97 -420.98
Algorithmic Details
The following pseudo-code describes the algorithm used with the repulsion mechanism.
The definition of terms used in the above pseudo-code are as follows.
|
the number of particles, npar |
|
array of ndim lower box bounds |
|
array of ndim upper box bounds |
|
position of particle |
|
best position found by particle |
|
best position found by any particle |
|
|
|
, best value found by particle |
|
, best value found by any particle |
|
velocity of particle |
|
weight on for velocity update, decreasing according to Weight Decrease |
|
maximum absolute velocity, dependent upon Maximum Variable Velocity |
|
swarm iteration counter |
|
iterations since was updated |
, |
diagonal matrices with random elements in range |
|
the cognitive advance coefficient which weights velocity towards , adjusted using Advance Cognitive |
|
the global advance coefficient which weights velocity towards , adjusted using Advance Global |
|
the Distance Tolerance for resetting a converged particle |
|
an array of random numbers whose -th element is drawn from a uniform distribution in the range , for |
|
local optimizer interior options |
|
local optimizer exterior options |
|
apply local optimizer using the set of options using the solution as the starting point, if used (not default) |
monmod |
monitor progress and possibly modify |
BOUNDARY |
apply required behaviour for outside bounding box, (see Boundary) |
new () |
true if , , were updated at this iteration |
Additionally a repulsion phase can be introduced by changing from the default values of options
Repulsion Finalize (
),
Repulsion Initialize (
) and
Repulsion Particles (
). If the number of static particles is denoted
then the following can be inserted after the new(
) check in the pseudo-code above.
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_bnd_pso (e05sa) the maximum length of the argument
cvalue used by
nag_glopt_optget (e05zl) is
.
Advance Cognitive Default
The cognitive advance coefficient, . When larger than the global advance coefficient, this will cause particles to be attracted toward their previous best positions. Setting will cause nag_glopt_bnd_pso (e05sa) to act predominantly as a local optimizer. Setting may cause the swarm to diverge, and is generally inadvisable. At least one of the global and cognitive coefficients must be nonzero.
Advance Global Default
The global advance coefficient, . When larger than the cognitive coefficient this will encourage convergence toward the best solution yet found. Values will inhibit particles overshooting the optimum. Values cause particles to fly over the optimum some of the time. Larger values can prohibit convergence. Setting 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 Default
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 , .
- 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. and 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 -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 .
Distance Scaling Default
Determines whether distances should be scaled by box widths.
- ON
- When a distance is calculated between and , a scaled norm is used.
- OFF
- Distances are calculated as the standard norm without any rescaling.
Distance Tolerance Default
This is the distance, 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:
.
Function Precision Default
The parameter defines , which is intended to be a measure of the accuracy with which the problem function can be computed. If or , the default value is used.
The value of
should reflect the relative precision of
; i.e.,
acts as a relative precision when
is large, and as an absolute precision when
is small. For example, if
is typically of order
and the first six significant digits are known to be correct, an appropriate value for
would be
. In contrast, if
is typically of order
and the first six significant digits are known to be correct, an appropriate value for
would be
. The choice of
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
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 Default
Contracts the box boundaries used by a box constrained local minimizer to,
, containing the start point
, where
Smaller values of
thereby restrict the size of the domain exposed to the local minimizer, possibly reducing the amount of work done by the local minimizer.
Constraint:
.
Local Interior Iterations
Local Interior Major Iterations
Local Exterior Iterations
Local Exterior Major Iterations
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:
Unless set, these are functions of the parameters passed to nag_glopt_bnd_pso (e05sa).
Setting will disable the local minimizer in the corresponding algorithmic region. For example, setting and will cause the algorithm to perform no local minimizations inside the main loop of the algorithm, and a local minimization with upto 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
and
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
, and may subsequently be reactivated in either phase by setting
.
Constraint:
, .
Local Interior Tolerance Default
Local Exterior Tolerance Default
This is the tolerance provided to a local minimizer in the interior (exterior) of the main loop of the algorithm.
Constraint:
, .
Local Interior Minor Iterations
Local Exterior Minor Iterations
Where applicable, the secondary number of iterations the chosen local minimizer will use inside (outside) the main loop. Currently the relevant default values are:
Constraint:
, .
Local Minimizer Default
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,
.
- 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_bnd_pso (e05sa) will have been acted upon by
Local Boundary Restriction. As such, the domain exposed may be greatly smaller than that provided to
nag_glopt_bnd_pso (e05sa).
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,
.
- 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,
.
The box bounds forwarded to this function from
nag_glopt_bnd_pso (e05sa) will have been acted upon by
Local Boundary Restriction. As such, the domain exposed may be greatly smaller than that provided to
nag_glopt_bnd_pso (e05sa).
- 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,
or
.
- 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 the objective function that 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,
,
or
.
The box bounds forwarded to this function from
nag_glopt_bnd_pso (e05sa) will have been acted upon by
Local Boundary Restriction. As such, the domain exposed may be greatly smaller than that provided to
nag_glopt_bnd_pso (e05sa).
Maximum Function Evaluations Default
The maximum number of evaluations of the objective function. When reached this will return and .
Constraint:
.
Maximum Iterations Completed Default
The maximum number of complete iterations that may be performed. Once exceeded nag_glopt_bnd_pso (e05sa) will exit with and .
Unless set, this adapts to the parameters passed to nag_glopt_bnd_pso (e05sa).
Constraint:
.
Maximum Iterations Static Default
The maximum number of iterations without any improvement to the current global optimum. If exceeded
nag_glopt_bnd_pso (e05sa) will exit with
and
. This exit will be hindered by setting
Maximum Iterations Static Particles to larger values.
Constraint:
.
Maximum Iterations Static Particles Default
The minimum number of particles that must have converged to the current optimum before the function may exit due to
Maximum Iterations Static with
and
.
Constraint:
.
Maximum Particles Converged Default
The maximum number of particles that may converge to the current optimum. When achieved, nag_glopt_bnd_pso (e05sa) will exit with and . This exit will be hindered by setting ‘Repulsion’ options, as these cause the swarm to re-expand.
Constraint:
.
Maximum Particles Reset Default
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:
.
Maximum Variable Velocity Default
Along any dimension , the absolute velocity is bounded above by . 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 may cause significant and potentially unrecoverable swarm divergence.
Constraint:
.
Optimize Default
Determines whether to maximize or minimize the objective function.
- MINIMIZE
- The objective function will be minimized.
- MAXIMIZE
- The objective function will be maximized. This is accomplished by minimizing the negative of the objective.
Repeatability Default
Allows for the same random number generator seed to be used for every call to
nag_glopt_bnd_pso (e05sa).
is recommended in general.
- OFF
- The internal generation of random numbers will be nonrepeatable.
- ON
- The same seed will be used.
Repulsion Finalize Default
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:
.
Repulsion Initialize Default
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:
.
Repulsion Particles Default
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:
.
Swarm Standard Deviation Default
The target standard deviation of the particle distances from the current optimum. Once the standard deviation is below this level, nag_glopt_bnd_pso (e05sa) will exit with and . 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_bnd_pso (e05sa), 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:
.
Target Objective Default
Target Objective Value Default
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_bnd_pso (e05sa) will exit with
and
. Other than checking for feasibility only (
), 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_bnd_pso (e05sa) will exit with
. This option may take any real value
, or the character ON/OFF as well as DEFAULT. If this option is queried using
nag_glopt_optget (e05zl), the current value of
will be returned in
rvalue, and
cvalue will indicate whether this option is ON or OFF. The behaviour of the option is as follows:
- Once a point is found with an objective value within the Target Objective Tolerance of , nag_glopt_bnd_pso (e05sa) will exit successfully with and .
- OFF
- The current value of will remain stored, however it will not be used as a finalization criterion.
- ON
- The current value of stored will be used as a finalization criterion.
- DEFAULT
- The stored value of will be reset to its default value (), and this finalization criterion will be deactivated.
Target Objective Safeguard Default
If you have given a target objective value to reach in
(the value of the optional parameter
Target Objective Value),
sets your desired safeguarded termination tolerance, for when
is close to zero.
Constraint:
.
Target Objective Tolerance Default
The optional tolerance to a user-specified target value.
Constraint:
.
Target Warning Default
Activates or deactivates the error exit associated with the target value being achieved before entry into the main loop of the algorithm, .
- 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 .
Verify Gradients Default
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.
- OBJECTIVE
FULL
- A more expensive gradient check will be performed on the gradients corresponding to the objective objfun.
Weight Decrease Default
Determines how particle weights decrease.
- OFF
- Weights do not decrease.
- INTEREST
- Weights decrease through compound interest as , where is the Weight Value and is the current number of iterations.
- LINEAR
- Weights decrease linearly following , where is the iteration number and is the maximum number of iterations as set by Maximum Iterations Completed.
Weight Initial Default
The initial value of any particle's inertial weight, , or the minimum possible initial value if initial weights are randomized. When set, this will override or , and as such these must be set afterwards if so desired.
Constraint:
.
Weight Initialize Default
Determines how the initial weights are distributed.
- INITIAL
- All weights are initialized at the initial weight, , if set. If Weight Initial has not been set, this will be the maximum weight, .
- MAXIMUM
- All weights are initialized at the maximum weight, .
- RANDOMIZED
- Weights are uniformly distributed in or if Weight Initial has been set.
Weight Maximum Default
The maximum particle weight, .
Constraint:
(If has been set then .)
Weight Minimum Default
The minimum achievable weight of any particle, . Once achieved, no further weight reduction is possible.
Constraint:
(If has been set then .)
Weight Reset Default
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 or if Weight Initial has been set.
Weight Value Default
The constant used with .
Constraint:
.
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015