Uses of Class
net.sourceforge.jswarm_pso.Particle

Packages that use Particle
net.sourceforge.jswarm_pso   
net.sourceforge.jswarm_pso.example_2   
 

Uses of Particle in net.sourceforge.jswarm_pso
 

Fields in net.sourceforge.jswarm_pso declared as Particle
(package private)  Particle[] Swarm.particles
          Particles in this swarm
(package private)  Particle Swarm.sampleParticle
          A sample particles: Build other particles based on this one
 

Methods in net.sourceforge.jswarm_pso that return Particle
 Particle Swarm.getBestParticle()
           
 Particle Swarm.getParticle(int i)
           
 Particle[] Swarm.getParticles()
           
 Particle Swarm.getSampleParticle()
           
 

Methods in net.sourceforge.jswarm_pso with parameters of type Particle
 double FitnessFunction.evaluate(Particle particle)
          Evaluates a particles
 void Swarm.setParticles(Particle[] particle)
           
 void Swarm.setSampleParticle(Particle sampleParticle)
           
 void ParticleUpdateFullyRandom.update(Swarm swarm, Particle particle)
          Update particle's velocity and position
 void ParticleUpdateRepulsive.update(Swarm swarm, Particle particle)
          Update particle's position and velocity using repulsive algorithm
 void ParticleUpdateSimple.update(Swarm swarm, Particle particle)
          Update particle's velocity and position
 void ParticleUpdateRandomByParticle.update(Swarm swarm, Particle particle)
          Update particle's velocity and position
abstract  void ParticleUpdate.update(Swarm swarm, Particle particle)
          Update particle's velocity and position
 

Constructors in net.sourceforge.jswarm_pso with parameters of type Particle
Particle(Particle sampleParticle)
          Constructor
ParticleUpdate(Particle particle)
          Constructor
ParticleUpdateFullyRandom(Particle particle)
          Constructor
ParticleUpdateRandomByParticle(Particle particle)
          Constructor
ParticleUpdateRepulsive(Particle particle)
          Constructor
ParticleUpdateSimple(Particle particle)
          Constructor
Swarm(int numberOfParticles, Particle sampleParticle, FitnessFunction fitnessFunction)
          Create a Swarm and set default values
SwarmRepulsive(int numberOfParticles, Particle sampleParticle, FitnessFunction fitnessFunction)
          Create a Swarm and set default values
 

Uses of Particle in net.sourceforge.jswarm_pso.example_2
 

Subclasses of Particle in net.sourceforge.jswarm_pso.example_2
 class MyParticle
          Simple particle example