Package | Description |
---|---|
org.apache.commons.math3.genetics |
This package provides Genetic Algorithms components and implementations.
|
Modifier and Type | Method and Description |
---|---|
protected void |
RandomKey.checkValidity(java.util.List<java.lang.Double> chromosomeRepresentation)
Asserts that
representation can represent a valid chromosome. |
protected void |
BinaryChromosome.checkValidity(java.util.List<java.lang.Integer> chromosomeRepresentation)
Asserts that
representation can represent a valid chromosome. |
protected abstract void |
AbstractListChromosome.checkValidity(java.util.List<T> chromosomeRepresentation)
Asserts that
representation can represent a valid chromosome. |
Constructor and Description |
---|
AbstractListChromosome(java.util.List<T> representation)
Constructor, copying the input representation.
|
AbstractListChromosome(T[] representation)
Constructor, copying the input representation.
|
BinaryChromosome(java.lang.Integer[] representation)
Constructor.
|
BinaryChromosome(java.util.List<java.lang.Integer> representation)
Constructor.
|
RandomKey(java.lang.Double[] representation)
Constructor.
|
RandomKey(java.util.List<java.lang.Double> representation)
Constructor.
|