Uses of Class
org.apache.commons.math3.genetics.AbstractListChromosome
Packages that use AbstractListChromosome
Package
Description
This package provides Genetic Algorithms components and implementations.
-
Uses of AbstractListChromosome in org.apache.commons.math3.genetics
Subclasses of AbstractListChromosome in org.apache.commons.math3.geneticsModifier and TypeClassDescriptionclass
Chromosome represented by a vector of 0s and 1s.class
RandomKey<T>
Random Key chromosome is used for permutation representation.Methods in org.apache.commons.math3.genetics that return AbstractListChromosomeModifier and TypeMethodDescriptionabstract AbstractListChromosome
<T> AbstractListChromosome.newFixedLengthChromosome
(List<T> chromosomeRepresentation) Creates a new instance of the same class asthis
is, with a givenarrayRepresentation
.Methods in org.apache.commons.math3.genetics with parameters of type AbstractListChromosomeModifier and TypeMethodDescriptionprotected ChromosomePair
CycleCrossover.mate
(AbstractListChromosome<T> first, AbstractListChromosome<T> second) Helper forCycleCrossover.crossover(Chromosome, Chromosome)
.protected ChromosomePair
OrderedCrossover.mate
(AbstractListChromosome<T> first, AbstractListChromosome<T> second)