fr.inria.optimization.cmaes.fitness
Interface IObjectiveFunctionParallel
- All Known Implementing Classes:
- AbstractObjectiveFunction, FunctionCollector
public interface IObjectiveFunctionParallel
Interface to a single-objective function to be minimized,
that accepts an array
of points double[][], a population to be evaluated within one call to method valuesOf().
Method Summary |
double[] |
valuesOf(double[][] pop)
|
valuesOf
double[] valuesOf(double[][] pop)
- Parameters:
pop
- is an array of search points to be evaluated, where
pop[i] is the i-th point.
- Returns:
- array of objective function values. The i-th value
is the objective function value of pop[i].