operators | R Documentation |
A list object contains the GA or IslandGA operators function names.
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 |
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 as GA
.
operators = list(population = "random_population",
selection = "selection_linearrank",
crossover = "uniformcrossover",
mutation = "mutation")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.