Roulette wheel selection in GA: ArrayIndexOutOfBoundsException error

860 Views Asked by At

Based on this answer I've tried to do my roulette wheel selection in genetic algorithm.

private static final int NUMBER_OF_TOURISTS = 20;

private static int[] roulette(int population[]) {
    int sumProb = 0;
    for (int i = 0; i < population.length; i++) {
        sumProb += population[i];
    }

    int[] rouletteIndex = new int[NUMBER_OF_TOURISTS];
    Random r = new Random();
    for (int i = 0; i < NUMBER_OF_TOURISTS; i++) {
        int numberRand = r.nextInt(sumProb);
//-------------------------------------------------------
        int j = 0;          
        while (numberRand > 0) {
            numberRand = numberRand - population[j];
            j++;
        }
        rouletteIndex[i] = j-1;
//-------------------------------------------------------
    }
    return rouletteIndex;
}

after this I get:

[6, 2, -1, 19, 13, 2, 14, 2, 6, 19, 7, 14, 18, 0, 1, 9, 13, 10, 7, 2]

"-1"? But how, when j should be always greater than 0. Is this happen when numberRand = 0 and than while loop doesn't start even once? But how to fix this?

1

There are 1 best solutions below

2
On

Random.nextInt(int bound) returns 0 (inclusive) to specified bound (exclusive).

So your loop:

while (numberRand > 0) {
    numberRand = numberRand - population[j];
    j++;
}

Will not run if nextInt(int bound) returns 0, resulting in j being 0 at: rouletteIndex[i] = j-1;