Uses of Class
pulse.search.direction.pso.ParticleState
-
Packages that use ParticleState Package Description pulse.search.direction.pso -
-
Uses of ParticleState in pulse.search.direction.pso
Methods in pulse.search.direction.pso that return ParticleState Modifier and Type Method Description ParticleState
ConstrictionMover. attemptMove(Particle p, Particle[] neighbours, ParticleState gBest)
ParticleState
FIPSMover. attemptMove(Particle p, Particle[] neighbours, ParticleState gBest)
ParticleState
Mover. attemptMove(Particle p, Particle[] neighbours, ParticleState gBest)
ParticleState
SwarmState. getBestSoFar()
ParticleState
Particle. getBestState()
Returns the personal best state ever achieved by the particle.ParticleState
Particle. getCurrentState()
Returns the current state (position, velocity, fitness) of the particle.Methods in pulse.search.direction.pso with parameters of type ParticleState Modifier and Type Method Description void
Particle. adopt(ParticleState state)
ParticleState
ConstrictionMover. attemptMove(Particle p, Particle[] neighbours, ParticleState gBest)
ParticleState
FIPSMover. attemptMove(Particle p, Particle[] neighbours, ParticleState gBest)
ParticleState
Mover. attemptMove(Particle p, Particle[] neighbours, ParticleState gBest)
boolean
ParticleState. isBetterThan(ParticleState s)
void
SwarmState. setBestSoFar(ParticleState bestSoFar)
Constructors in pulse.search.direction.pso with parameters of type ParticleState Constructor Description Particle(ParticleState cur, int id)
ParticleState(ParticleState another)
-