Learn R Programming

PFIM (version 5.0)

PSOAlgorithm-class: Class "PSOAlgorithm"

Description

The Class "PSOAlgorithm" implements the PSO algortihm : Particle Swarm Optimization

Arguments

Objects from the class <code>PSOAlgorithm</code>

Objects form the xlass PSOAlgorithm can be created by calls of the form PSOAlgorithm(...) where (...) are the parameters for the PSOAlgorithm objects.

Slots for <code>PSOAlgorithm</code> objects

maxIteration:

A numeric giving the maximum of iterations.

populationSize:

A numeric giving the mpopulation size.

intertiaWeight:

A numeric giving the inertial weight.

personalLearningCoefficient:

A numeric giving the personal learning coefficient.

globalLearningCoefficient:

A numeric giving the global learning coefficient.

resultsPSO:

A list giving the iteration and the results when a new best criteria is found.