Package | Description |
---|---|
fr.cnes.sirius.patrius.math.genetics |
Modifier and Type | Class and Description |
---|---|
class |
CycleCrossover<T>
Cycle Crossover [CX] builds offspring from ordered chromosomes by identifying cycles
between two parent chromosomes.
|
class |
NPointCrossover<T>
N-point crossover policy.
|
class |
OnePointCrossover<T>
One point crossover policy.
|
class |
OrderedCrossover<T>
Order 1 Crossover [OX1] builds offspring from ordered chromosomes by copying a
consecutive slice from one parent, and filling up the remaining genes from the other
parent as they appear.
|
class |
UniformCrossover<T>
Perform Uniform Crossover [UX] on the specified chromosomes.
|
Modifier and Type | Method and Description |
---|---|
CrossoverPolicy |
GeneticAlgorithm.getCrossoverPolicy()
Returns the crossover policy.
|
Constructor and Description |
---|
GeneticAlgorithm(CrossoverPolicy crossoverPolicyIn,
double crossoverRateIn,
MutationPolicy mutationPolicyIn,
double mutationRateIn,
SelectionPolicy selectionPolicyIn)
Create a new genetic algorithm.
|
Copyright © 2020 CNES. All rights reserved.