vote up 2 vote down star
1

Can anyone provide some pseudo code for a roulette selection function? How would I implement this:

alt text

I don't really understand how to read this math notation. I never took any probability or statistics.

flag

The denominator is just a sum : SUM(f_j for j=1 upto N). This just says that the probability p_i of choosing item i is just its fitness f_i over the sum of all fitnesses. – rampion May 16 at 16:56

2 Answers

vote up 2 vote down check

It's been a few years since i've done this myself, however the following pseudo code was found easily enough on google.

for all members of population
    sum += fitness of this individual
end for

for all members of population
    probability = sum of probabilities + (fitness / sum)
    sum of probabilities += probability
end for

loop until new population is full
     do this twice
         number = Random between 0 and 1
       for all members of population
           if number > probability but less than next probability 
                then you have been selected
       end for
     end
     create offspring
end loop

The site where this came from can be found here if you need further details.

link|flag
You may be able to make this more efficient by doing a binary search on the probability array (rather than an iterative search). – rampion May 16 at 16:54
vote up 1 vote down

Here is some code in C :

// Find the sum of fitnesses. The function fitness(i) should return the fitness value for member i

float sumFitness = 0.0f;

for (int i=0; i < nmembers; i++)

    sumFitness += fitness(i);

// Get a floating point number in the interval 0.0 ... sumFitness

float randomNumber = (float(rand() % 10000) / 9999.0f) * sumFitness;

// Translate this number to the corresponding member

int memberID=0;

float partialSum=0.0f;

while (randomNumber > partialSum)

{ partialSum += fitness(memberID);

memberID++; }

// We have just found the member of the population using the roulette algorithm

// It is stored in the "memberID" variable

// Repeat this procedure as many times to find random members of the population

link|flag

Your Answer

Get an OpenID
or

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