I'm using Particle Swarm Optimization(PSO) in java. I am having little knowledge about what we do. Since, I am applying for multiple sequence alignment in bioinformatics.

We need to find position and velocity for aligning those sequences. I need detailed explanation and references about PSO and the need for calculating velocity and position in PSO. If possible I need simple example explaining PSO in java. Actually, I need to understand how it optimizes a problem.

public class Position {
 private double x;
 private double y;

 public Position(double x, double y) {
 this.x = x;
 this.y = y;
 }

 public double getX() {
 return x;
 }

 public void setX(double x) {
 this.x = x;
 }

 public double getY() {
 return y;
 }

 public void setY(double y) {
 this.y = y;
 }
}

Here is the class for representing the position of the particle with getters and setters

Like wise other classes are available here

link|improve this question

50% accept rate
You might like to use "class Position extends Point2D.Double" also for Velocity as well. ;) – Peter Lawrey Jan 10 at 11:53
1  
Math.pow(x ,2) is much slower than x * x – Peter Lawrey Jan 10 at 11:55
While browsing I got this code, I really need to understand about Particle Swarm Optimization with example. I am unable to understand how PSO works in this example. If anyone has sample java code explaining PSO it will also be fine. – Hariharan Ram Jan 10 at 11:59
I am sure that's a Java programming question, but someone might have done this before. – Peter Lawrey Jan 10 at 12:05
Very less information is available and since I am having very less experience in implementing Numerical Algorithms. It will save my time if I have explanation about PSO with example. – Hariharan Ram Jan 10 at 12:12
show 3 more comments
feedback

1 Answer

up vote 1 down vote accepted

Particle Swarm Optimization:

  1. randomly initialize a set of particles at random positions in the search space;
  2. evaluate all positions and update the global best position and the personal best positions;
  3. update each velocity based on the relative position of the global best position, the current velocity of the particle, the personal best position of the particle and some random vector;
  4. goto 2.
link|improve this answer
Can I get any books to describe code for the project. – Hariharan Ram Jan 20 at 9:35
book: swarm intelligence, paper: pso, wiki: pso – jgroenen Jan 20 at 14:57
Thanks, in what basis we have to find the problem has to be optimized using PSO. That is, how particle, velocity are updated for a given problem. – Hariharan Ram Jan 21 at 3:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.