fr.inria.optimization.cmaes
Interface ISolutionPoint

All Known Implementing Classes:
CMASolution

public interface ISolutionPoint

solution point in search space, single-objective case


Method Summary
 long getEvaluationNumber()
          count at what evaluation number the search point x was evaluated
 double getFitness()
          objective function value (fitness) of the search point x
 double[] getX()
          value of the point in search space, that is in the preimage of the objective function to be optimized
 void setEvaluationNumber(long evaluation)
          count at what evaluation number the search point x was evaluated
 void setFitness(double fitness)
          objective function value (fitness) of the search point x
 void setX(double[] x)
          value of the solution point in search space, the preimage of the objective function to be optimized
 

Method Detail

getFitness

double getFitness()
objective function value (fitness) of the search point x


getEvaluationNumber

long getEvaluationNumber()
count at what evaluation number the search point x was evaluated


getX

double[] getX()
value of the point in search space, that is in the preimage of the objective function to be optimized


setFitness

void setFitness(double fitness)
objective function value (fitness) of the search point x


setEvaluationNumber

void setEvaluationNumber(long evaluation)
count at what evaluation number the search point x was evaluated


setX

void setX(double[] x)
value of the solution point in search space, the preimage of the objective function to be optimized