function(fitnessFunction,
population, populationSize, functionSet, inputVariables, constantSet)
that return a list of
two obtjects: First, a population that replace the run's current population. Second, a list
of elite individuals to keep.
makeLocalRestartStrategy(populationType = NULL, extinctionPrevention = FALSE, breedingFitness = function(individual) TRUE, breedingTries = 50)
NULL
for
creating untyped populations.geneticProgramming
for details.geneticProgramming
for details.makeLocalRestartStrategy
creates a restart strategy that replaces all individuals with
new individuals. The single best individual is returned as the elite. When using a
multi-criterial fitness function, only the first component counts in the fitness sorting.