added doc details to recognize particle swarm optimization

This commit is contained in:
tlegrand 2007-07-03 09:13:07 +00:00
commit 3adf8a19f4
20 changed files with 25 additions and 20 deletions

View file

@ -35,7 +35,7 @@
//-----------------------------------------------------------------------------
/** Standard PSO velocity performer. Derivated from abstract eoVelocity,
/** Standard velocity performer for particle swarm optimization. Derivated from abstract eoVelocity,
* At step t: v(t+1)= v(t) + c1*r1* ( xbest(t)-x(t) ) + c2*r2* ( gbest(t) - x(t) )
* (ci given and Ri chosen at random in [0;1]).
*/