
Algorithm::Evolutionary::Op::TournamentSelect - Tournament selector, takes individuals from one population and puts them into another

my $popSize = 100; my $tournamentSize = 7; my $selector = new Algorithm::Evolutionary::Op::TournamentSelect $popSize, $tournamentSize; my @newPop = $selector->apply( @pop ); #Creates a new population from old

Algorithm::Evolutionary::Op::Selector

One of the possible selectors used for selecting the pool of individuals that are going to be the parents of the following generation. Takes a set of individuals randomly out of the population, and select a few of the best.

Creates a new tournament selector
Applies the tournament selection to a population, returning another of the said size

Algorithm::Evolutionary::Op::RouleteWheel is another option for selecting a pool of individuals

This file is released under the GPL. See the LICENSE file included in this distribution, or go to http://www.fsf.org/licenses/gpl.txt CVS Info: $Date: 2009/07/24 08:46:59 $ $Header: /cvsroot/opeal/Algorithm-Evolutionary/lib/Algorithm/Evolutionary/Op/TournamentSelect.pm,v 3.0 2009/07/24 08:46:59 jmerelo Exp $ $Author: jmerelo $