|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.math3.genetics.TournamentSelection
public class TournamentSelection
Tournament selection scheme. Each of the two selected chromosomes is selected
based on n-ary tournament -- this is done by drawing arity
random
chromosomes without replacement from the population, and then selecting the
fittest chromosome among them.
Constructor Summary | |
---|---|
TournamentSelection(int arity)
Creates a new TournamentSelection instance. |
Method Summary | |
---|---|
int |
getArity()
Gets the arity (number of chromosomes drawn to the tournament). |
ChromosomePair |
select(Population population)
Select two chromosomes from the population. |
void |
setArity(int arity)
Sets the arity (number of chromosomes drawn to the tournament). |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public TournamentSelection(int arity)
arity
- how many chromosomes will be drawn to the tournamentMethod Detail |
---|
public ChromosomePair select(Population population) throws MathIllegalArgumentException
arity
random chromosomes without replacement from the
population, and then selecting the fittest chromosome among them.
select
in interface SelectionPolicy
population
- the population from which the chromosomes are chosen.
MathIllegalArgumentException
- if the tournament arity is bigger than the population sizepublic int getArity()
public void setArity(int arity)
arity
- arity of the tournament
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |