|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.commons.math.genetics.ListPopulation
public abstract class ListPopulation
Population of chromosomes represented by a List
.
Constructor Summary | |
---|---|
ListPopulation(int populationLimit)
Creates a new ListPopulation instance and initializes its inner chromosome list. |
|
ListPopulation(java.util.List<Chromosome> chromosomes,
int populationLimit)
Creates a new ListPopulation instance. |
Method Summary | |
---|---|
void |
addChromosome(Chromosome chromosome)
Add the given chromosome to the population. |
java.util.List<Chromosome> |
getChromosomes()
Access the list of chromosomes. |
Chromosome |
getFittestChromosome()
Access the fittest chromosome in this population. |
int |
getPopulationLimit()
Access the maximum population size. |
int |
getPopulationSize()
Access the current population size. |
java.util.Iterator<Chromosome> |
iterator()
Chromosome list iterator |
void |
setChromosomes(java.util.List<Chromosome> chromosomes)
Sets the list of chromosomes. |
void |
setPopulationLimit(int populationLimit)
Sets the maximal population size. |
java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.commons.math.genetics.Population |
---|
nextGeneration |
Constructor Detail |
---|
public ListPopulation(java.util.List<Chromosome> chromosomes, int populationLimit)
chromosomes
- list of chromosomes in the populationpopulationLimit
- maximal size of the populationpublic ListPopulation(int populationLimit)
populationLimit
- maximal size of the populationMethod Detail |
---|
public void setChromosomes(java.util.List<Chromosome> chromosomes)
chromosomes
- the list of chromosomespublic java.util.List<Chromosome> getChromosomes()
public void addChromosome(Chromosome chromosome)
addChromosome
in interface Population
chromosome
- the chromosome to add.public Chromosome getFittestChromosome()
getFittestChromosome
in interface Population
public int getPopulationLimit()
getPopulationLimit
in interface Population
public void setPopulationLimit(int populationLimit)
populationLimit
- maximal population size.public int getPopulationSize()
getPopulationSize
in interface Population
public java.lang.String toString()
toString
in class java.lang.Object
public java.util.Iterator<Chromosome> iterator()
iterator
in interface java.lang.Iterable<Chromosome>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |