Uses of Class
org.apache.commons.math3.genetics.AbstractListChromosome
-
Packages that use AbstractListChromosome Package Description org.apache.commons.math3.genetics 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.genetics Modifier and Type Class Description classBinaryChromosomeChromosome represented by a vector of 0s and 1s.classRandomKey<T>Random Key chromosome is used for permutation representation.Methods in org.apache.commons.math3.genetics that return AbstractListChromosome Modifier and Type Method Description abstract AbstractListChromosome<T>AbstractListChromosome. newFixedLengthChromosome(java.util.List<T> chromosomeRepresentation)Creates a new instance of the same class asthisis, with a givenarrayRepresentation.Methods in org.apache.commons.math3.genetics with parameters of type AbstractListChromosome Modifier and Type Method Description private ChromosomePairOnePointCrossover. crossover(AbstractListChromosome<T> first, AbstractListChromosome<T> second)protected ChromosomePairCycleCrossover. mate(AbstractListChromosome<T> first, AbstractListChromosome<T> second)Helper forCycleCrossover.crossover(Chromosome, Chromosome).private ChromosomePairNPointCrossover. mate(AbstractListChromosome<T> first, AbstractListChromosome<T> second)protected ChromosomePairOrderedCrossover. mate(AbstractListChromosome<T> first, AbstractListChromosome<T> second)private ChromosomePairUniformCrossover. mate(AbstractListChromosome<T> first, AbstractListChromosome<T> second)
-