Research Article

Quantum Behaved Particle Swarm Optimization with Neighborhood Search for Numerical Optimization

Algorithm 1

The QPSO algorithm.
Begin
while FEs <= MAX_FEs do
  for each particle i do
   Update the position according to (3);
   Calculate the fitness value of the new particle;
   FEs++;
  end for
  Update the pbest,  gbest and p in the population;
end while
End