Chromosome Double Array
data class ChromosomeDoubleArray<F : Comparable<F>>(var value: DoubleArray, var fitness: F? = null) : Chromosome<DoubleArray, F>
Base instance for Chromosome with value as DoubleArray of something
Use doubles function to easily create ChromosomeDoubleArray
Properties
Link copied to clipboard
Combination of genes for a Chromosome (individual) (Often an array or string)
Functions
Link copied to clipboard
Clone function to create deap copied Chromosome with the same value and fitness
Link copied to clipboard
Link copied to clipboard
Base evaluates function for Chromosome by fitnessFunction