ecr2 icon indicating copy to clipboard operation
ecr2 copied to clipboard

ecr: Evolutionary Computation in R (version 2)

Results 17 ecr2 issues
Sort by recently updated
recently updated
newest added

Hi Jakob, I just became aware of your package. I wonder if it would be better to avoid duplicating efforts in the implementation of performance indicators (such as IGD, hypervolume...

The first mu function evaluations do not seem to be counted for the stopping criterion stopOnEvals, like the following example shows: ``` library(ecr) library(smoof) dtlz2 = makeDTLZ2Function(dimensions = 2, n.objectives...

`ecr::evaluateFitness` fails if package is not loaded ``` objective_function = function(x) { sum(x) } ctrl = ecr::initECRControl(fitness.fun = objective_function, n.objectives = 1) population = ecr::initPopulation(mu = 10, gen.fun = ecr::genBin,...

Hello, I am getting this error when calling evaluateFitness(): ``` Error in parallelMap(function(x) do.call(fitness.fun, c(list(x), list(...))), : Level 'ecr.evaluateFitness' not registered ``` Any idea what is causing this? I was...

enhancement

I am quite sure this issue is not really an issue of ecr2 but rather of some other functionalities of R, but as this is so far the only package,...

I could be wrong but it doesn't appear that the monitor parameter is used at all in the `ecr` black box function. Is that right? Is there a way to...

Just a part of the currently implemented EMOA performance indicators are exported so far due to missing tests and missing time.

EA-analysis

Oftentimes we have multiple runs of an algorithm on several instances from different groups. First step is generally to reduce approximation sets to scalar value (performance indicators). However, usually we...

EA-analysis