Uses of Class
org.apache.commons.math3.genetics.ChromosomePair
Packages that use ChromosomePair
Package
Description
This package provides Genetic Algorithms components and implementations.
-
Uses of ChromosomePair in org.apache.commons.math3.genetics
Methods in org.apache.commons.math3.genetics that return ChromosomePairModifier and TypeMethodDescriptionCrossoverPolicy.crossover
(Chromosome first, Chromosome second) Perform a crossover operation on the given chromosomes.CycleCrossover.crossover
(Chromosome first, Chromosome second) Perform a crossover operation on the given chromosomes.NPointCrossover.crossover
(Chromosome first, Chromosome second) Performs a N-point crossover.OnePointCrossover.crossover
(Chromosome first, Chromosome second) Performs one point crossover.OrderedCrossover.crossover
(Chromosome first, Chromosome second) Perform a crossover operation on the given chromosomes.UniformCrossover.crossover
(Chromosome first, Chromosome second) Perform a crossover operation on the given chromosomes.protected ChromosomePair
CycleCrossover.mate
(AbstractListChromosome<T> first, AbstractListChromosome<T> second) Helper forCycleCrossover.crossover(Chromosome, Chromosome)
.protected ChromosomePair
OrderedCrossover.mate
(AbstractListChromosome<T> first, AbstractListChromosome<T> second) SelectionPolicy.select
(Population population) Select two chromosomes from the population.TournamentSelection.select
(Population population) Select two chromosomes from the population.