/* * RapidMiner * * Copyright (C) 2001-2008 by Rapid-I and the contributors * * Complete list of developers available at our web site: * * http://rapid-i.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.operator.features.selection; import java.util.LinkedList; import java.util.List; import java.util.Random; import com.rapidminer.operator.features.Individual; import com.rapidminer.operator.features.Population; import com.rapidminer.operator.features.PopulationOperator; /** * Selects a given fixed number of individuals by subdividing a roulette wheel * in sections of size proportional to the individuals' rank based on their * fitness values. Optionally keep the best individual. Since the individuals * are sorted accordingly to their rank this selection operator needs m log m * time for population size m. * * @author Ingo Mierswa * @version $Id: RankSelection.java,v 1.3 2008/05/09 19:23:18 ingomierswa Exp $ */ public class RankSelection implements PopulationOperator { private int popSize; private boolean keepBest; private Random random; public RankSelection(int popSize, boolean keepBest, Random random) { this.popSize = popSize; this.keepBest = keepBest; this.random = random; } /** The default implementation returns true for every generation. */ public boolean performOperation(int generation) { return true; } public void operate(Population population) { List<Individual> newGeneration = new LinkedList<Individual>(); if (keepBest) { newGeneration.add(population.getBestIndividualEver()); } population.sort(); double fitnessSum = (population.getNumberOfIndividuals() * (population.getNumberOfIndividuals() + 1)) / 2.0d; // sum // of // number // of // individuals while (newGeneration.size() < popSize) { double r = fitnessSum * random.nextDouble(); int j = -1; double f = 0; do { j++; f += j; } while (f < r); newGeneration.add(population.get(j)); } population.clear(); population.addAllIndividuals(newGeneration); } }