xegaEvalPopulation {xegaPopulation} | R Documentation |
Evaluates a population of genes in a problem environment
Description
xegaEvalPopulation()
evaluates a population
of genes in a problem environment.
Usage
xegaEvalPopulation(pop, lF)
Arguments
pop |
Population of genes. |
lF |
Local function configuration. |
Details
Parallelization of the evaluation of fitness functions
is possible by defining lF$lapply
.
Value
List of
-
$pop
gene vector, -
$fit
fitness vector, -
$evalFail
number of failed evaluations.
See Also
Other Population Layer:
xegaBestGeneInPopulation()
,
xegaBestInPopulation()
,
xegaInitPopulation()
,
xegaLogEvalsPopulation()
,
xegaNextPopulation()
,
xegaObservePopulation()
,
xegaRepEvalPopulation()
,
xegaSummaryPopulation()
Examples
pop10<-xegaInitPopulation(10, lFxegaGaGene)
lFxegaGaGene[["lapply"]]<-ApplyFactory(method="Sequential")
result<-xegaEvalPopulation(pop10, lFxegaGaGene)
[Package xegaPopulation version 1.0.0.7 Index]