xegaEvalPopulation {xegaPopulation}R Documentation

Evaluates a population of genes in a a problem environment

Description

EvalPopulation() 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$evalPopLapply.

Value

List of fitness values.

See Also

Other Population Layer: xegaBestGeneInPopulation(), xegaBestInPopulation(), xegaInitPopulation(), xegaLogEvalsPopulation(), xegaNextPopulation(), xegaObservePopulation(), xegaSummaryPopulation()

Examples

pop10<-xegaInitPopulation(10, lFxegaGaGene)
lFxegaGaGene[["evalPopLapply"]]<-ApplyFactory(method="Sequential") 
fit<-xegaEvalPopulation(pop10, lFxegaGaGene)


[Package xegaPopulation version 1.0.0.0 Index]