Chromosome String
data class ChromosomeString<F : Comparable<F>>(var value: String, var fitness: F? = null) : Chromosome<String, F>
Base instance for Chromosome with value as String of something
Use string function to easily create ChromosomeString
Properties
Functions
Link copied to clipboard
Clone function to create deap copied Chromosome with the same value and fitness
Link copied to clipboard
Base evaluates function for Chromosome by fitnessFunction