Uses of Class
net.sourceforge.jswarm_pso.ParticleUpdate

Packages that use ParticleUpdate
net.sourceforge.jswarm_pso   
 

Uses of ParticleUpdate in net.sourceforge.jswarm_pso
 

Subclasses of ParticleUpdate in net.sourceforge.jswarm_pso
 class ParticleUpdateFullyRandom
          Particle update: Fully random approach Note that rlocal and rother are randomly choosen for each particle and for each dimention
 class ParticleUpdateRandomByParticle
          Particle update: Each particle selects an rlocal and rother independently from other particles' values
 class ParticleUpdateRepulsive
          Particle update strategy Warning: It's designed to be used with SwarmRepulsive swarms
 class ParticleUpdateSimple
          Particle update strategy Every Swarm.evolve() itereation the following methods are called - begin(Swarm) : Once at the begining of each iteration - update(Swarm,Particle) : Once for each particle - end(Swarm) : Once at the end of each iteration
 

Fields in net.sourceforge.jswarm_pso declared as ParticleUpdate
(package private)  ParticleUpdate Swarm.particleUpdate
          Particle update strategy
 

Methods in net.sourceforge.jswarm_pso that return ParticleUpdate
 ParticleUpdate Swarm.getParticleUpdate()
           
 

Methods in net.sourceforge.jswarm_pso with parameters of type ParticleUpdate
 void Swarm.setParticleUpdate(ParticleUpdate particleUpdate)