xegaEvalPopulation {xegaPopulation} | R Documentation |
EvalPopulation()
evaluates a population
of genes in a problem environment.
xegaEvalPopulation(pop, lF)
pop |
Population of genes. |
lF |
Local function configuration. |
Parallelization of the evaluation of fitness functions
is possible by defining lf$evalPopLapply
.
List of fitness values.
Other Population Layer:
xegaBestGeneInPopulation()
,
xegaBestInPopulation()
,
xegaInitPopulation()
,
xegaLogEvalsPopulation()
,
xegaNextPopulation()
,
xegaObservePopulation()
,
xegaSummaryPopulation()
pop10<-xegaInitPopulation(10, lFxegaGaGene)
lFxegaGaGene[["evalPopLapply"]]<-ApplyFactory(method="Sequential")
fit<-xegaEvalPopulation(pop10, lFxegaGaGene)