|
Watchmaker Framework for Evolutionary Computation API (Version 0.7.1) |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.uncommons.watchmaker.framework.operators.AbstractCrossover<List<T>> org.uncommons.watchmaker.framework.operators.ListCrossover<T>
T
- The component type of the lists that are combined.public class ListCrossover<T>
Variable-point (fixed or random) cross-over for arbitrary lists.
Constructor Summary | |
---|---|
ListCrossover()
Default is single-point cross-over, applied to all parents. |
|
ListCrossover(int crossoverPoints)
Cross-over with a fixed number of cross-over points. |
|
ListCrossover(int crossoverPoints,
Probability crossoverProbability)
Cross-over with a fixed number of cross-over points. |
|
ListCrossover(NumberGenerator<Integer> crossoverPointsVariable)
Cross-over with a variable number of cross-over points. |
|
ListCrossover(NumberGenerator<Integer> crossoverPointsVariable,
NumberGenerator<Probability> crossoverProbabilityVariable)
Cross-over with a variable number of cross-over points. |
Method Summary | |
---|---|
protected List<List<T>> |
mate(List<T> parent1,
List<T> parent2,
int numberOfCrossoverPoints,
Random rng)
Perform cross-over on a pair of parents to generate a pair of offspring. |
Methods inherited from class org.uncommons.watchmaker.framework.operators.AbstractCrossover |
---|
apply |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ListCrossover()
public ListCrossover(int crossoverPoints)
crossoverPoints
- The constant number of cross-over points
to use for all cross-over operations.public ListCrossover(int crossoverPoints, Probability crossoverProbability)
crossoverProbability
.
crossoverPoints
- The constant number of cross-over points
to use for all cross-over operations.crossoverProbability
- The probability that, once selected,
a pair of parents will be subjected to cross-over rather than
being copied, unchanged, into the output population.public ListCrossover(NumberGenerator<Integer> crossoverPointsVariable)
crossoverPointsVariable
- A random variable that provides a number
of cross-over points for each cross-over operation.public ListCrossover(NumberGenerator<Integer> crossoverPointsVariable, NumberGenerator<Probability> crossoverProbabilityVariable)
crossoverProbability
.
crossoverPointsVariable
- A random variable that provides a number
of cross-over points for each cross-over operation.crossoverProbabilityVariable
- The probability that, once selected,
a pair of parents will be subjected to cross-over rather than
being copied, unchanged, into the output population.Method Detail |
---|
protected List<List<T>> mate(List<T> parent1, List<T> parent2, int numberOfCrossoverPoints, Random rng)
mate
in class AbstractCrossover<List<T>>
parent1
- One of two individuals that provides the source material
for generating offspring.parent2
- One of two individuals that provides the source material
for generating offspring.numberOfCrossoverPoints
- The number of cross-overs performed on the
two parents.rng
- A source of randomness used to determine the location of
cross-over points.
|
Watchmaker Framework for Evolutionary Computation API (Version 0.7.1) |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |