|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.features.Population
public class Population
A set of individuals. Stores generation number and best individuals.
Field Summary | |
---|---|
private Individual |
bestEver
All generations' best individual. |
private PerformanceVector |
bestPerformanceEver
All generations' best performance. |
private Individual |
currentBest
The currently best individual. |
private PerformanceVector |
currentBestPerformance
The currently best performance. |
private int |
generation
Current generation number |
private int |
generationOfLastImproval
Generation of the last improval. |
private java.util.ArrayList<Individual> |
individuals
List of ExampleSet |
static java.util.Comparator<Individual> |
PERFORMANCE_COMPARATOR
|
Constructor Summary | |
---|---|
Population()
Construct an empty generation. |
Method Summary | |
---|---|
void |
add(Individual individual)
Adds a single individual. |
void |
addAllIndividuals(java.util.Collection<Individual> newIndividuals)
Adds all individuals from the given collection. |
void |
clear()
Removes all individuals. |
boolean |
empty()
Returns true is the population contains no individuals. |
Individual |
get(int i)
Returns a single individual. |
Individual |
getBestIndividualEver()
Returns all generations' best individual. |
PerformanceVector |
getBestPerformanceEver()
Returns the best performance. |
Individual |
getCurrentBest()
Returns the last generation's best individual. |
PerformanceVector |
getCurrentBestPerformance()
Returns the last generation's best performance. |
int |
getGeneration()
Returns the current number of the generation. |
int |
getGenerationsWithoutImproval()
Returns the number of generations without improval. |
int |
getNumberOfIndividuals()
Returns the number of all individuals. |
void |
nextGeneration()
Increase the generation number by one. |
void |
remove(Individual individual)
Removes a single individual. |
void |
remove(int i)
Removes a single individual. |
private Individual |
searchBest()
Finds the current generation's best individual. |
void |
sort()
Sorts the individuals in ascending order according to their performance, thus the best one will be in last position. |
java.lang.String |
toString()
|
void |
updateEvaluation()
Remember the current generation's best individual and update the best individual. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final java.util.Comparator<Individual> PERFORMANCE_COMPARATOR
private java.util.ArrayList<Individual> individuals
private int generation
private int generationOfLastImproval
private Individual bestEver
private PerformanceVector bestPerformanceEver
private Individual currentBest
private PerformanceVector currentBestPerformance
Constructor Detail |
---|
public Population()
Method Detail |
---|
public void clear()
public void add(Individual individual)
public void addAllIndividuals(java.util.Collection<Individual> newIndividuals)
public void remove(Individual individual)
public void remove(int i)
public Individual get(int i)
public int getNumberOfIndividuals()
public boolean empty()
public void nextGeneration()
public int getGeneration()
public int getGenerationsWithoutImproval()
public void updateEvaluation()
private Individual searchBest()
public PerformanceVector getBestPerformanceEver()
public Individual getBestIndividualEver()
public Individual getCurrentBest()
public PerformanceVector getCurrentBestPerformance()
public void sort()
public java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |