Uses of Class
org.apache.commons.math4.legacy.genetics.InvalidRepresentationException
-
Packages that use InvalidRepresentationException Package Description org.apache.commons.math4.legacy.genetics This package provides Genetic Algorithms components and implementations. -
-
Uses of InvalidRepresentationException in org.apache.commons.math4.legacy.genetics
Methods in org.apache.commons.math4.legacy.genetics that throw InvalidRepresentationException Modifier and Type Method Description protected abstract void
AbstractListChromosome. checkValidity(List<T> chromosomeRepresentation)
Asserts thatrepresentation
can represent a valid chromosome.protected void
BinaryChromosome. checkValidity(List<Integer> chromosomeRepresentation)
Asserts thatrepresentation
can represent a valid chromosome.protected void
RandomKey. checkValidity(List<Double> chromosomeRepresentation)
Asserts thatrepresentation
can represent a valid chromosome.Constructors in org.apache.commons.math4.legacy.genetics that throw InvalidRepresentationException Constructor Description AbstractListChromosome(List<T> representation)
Constructor, copying the input representation.AbstractListChromosome(T[] representation)
Constructor, copying the input representation.BinaryChromosome(Integer[] representation)
Constructor.BinaryChromosome(List<Integer> representation)
Constructor.RandomKey(Double[] representation)
Constructor.RandomKey(List<Double> representation)
Constructor.
-