operators {changepointGA} | R Documentation |
operators
Description
A list object contains the GA or IslandGA operators function names.
Arguments
population |
It could be a function or a matrix. The function should be designed for initializing a population. The default population initialization is random initialization with some imposed constraints. See |
selection |
A function can help select |
crossover |
A function can apply crossover to the chosen parents to produce child for next generation with specified probability. The default for crossover uses the uniform crossover method. See |
mutation |
A function can apply mutation to the produced child with the specified probability |
References
Lu, Q., Lund, R., & Lee, T. C. (2010). An MDL approach to the climate segmentation problem. Ann. Appl. Stat. 4 (1) 299 - 319.
See Also
See Also as GA
.
Examples
operators = list(population = "random_population",
selection = "selection_linearrank",
crossover = "uniformcrossover",
mutation = "mutation")