fr.inria.optimization.cmaes.fitness
Interface IObjectiveFunction

All Known Implementing Classes:
AbstractObjectiveFunction, FunctionCollector

public interface IObjectiveFunction

Minimalistic interface of a single-objective function (fitness function) to be minimized.


Method Summary
 boolean isFeasible(double[] x)
           
 double valueOf(double[] x)
           
 

Method Detail

valueOf

double valueOf(double[] x)
Parameters:
x - a point (candidate solution) in the pre-image of the objective function
Returns:
objective function value of the input search point

isFeasible

boolean isFeasible(double[] x)