Update Policy
UpdatePolicy - renewal policy determining the order of chromosome's evolution in CellularGA with CellularType.Asynchronous type.
Inheritors
Types
UpdatePolicy defining the order of evolution with fixed random sweep: similar to NewRandomSweep but an array chromosomes' indices is created and shuffled with random, then it will be cached.
Basic UpdatePolicy defining the order of evolution from the first to the last chromosome in a CellularPopulation, like CellularType.Synchronous.
UpdatePolicy defining the order of evolution with new random sweep: instead of passing from the first to the last chromosome, an array chromosomes' indices is created and randomly shuffled, then a pass is made through the elements of this array. The chromosome whose index is indicated in the current cell of the array evolves.
UpdatePolicy defining the order of evolution with uniform choice: chromosome for evolution is chosen randomly.