Class Ellipsoid
java.lang.Object
org.moeaframework.problem.AbstractProblem
org.moeaframework.problem.BBOB2016.BBOBFunction
org.moeaframework.problem.BBOB2016.Ellipsoid
- All Implemented Interfaces:
AutoCloseable
,Problem
The Ellipsoid function. It is not intended for this function to be used directly since the BBOB test suite applies
additional transformations to the test functions.
Properties:
- Non-separable
- Unimodal
- Ill-conditioned
- Smooth local irregularities
-
Field Summary
Fields inherited from class org.moeaframework.problem.AbstractProblem
numberOfConstraints, numberOfObjectives, numberOfVariables
-
Constructor Summary
ConstructorDescriptionEllipsoid
(int numberOfVariables) Constructs a new instance of the Ellipsoid function. -
Method Summary
Methods inherited from class org.moeaframework.problem.BBOB2016.BBOBFunction
newSolution
Methods inherited from class org.moeaframework.problem.AbstractProblem
close, getName, getNumberOfConstraints, getNumberOfObjectives, getNumberOfVariables
-
Field Details
-
CONDITION
public static final double CONDITIONThe conditioning factor.- See Also:
-
-
Constructor Details
-
Ellipsoid
public Ellipsoid(int numberOfVariables) Constructs a new instance of the Ellipsoid function.- Parameters:
numberOfVariables
- the number of decision variables
-
-
Method Details
-
evaluate
Description copied from interface:Problem
Evaluates the solution, updating the solution's objectives in place. Algorithms must explicitly call this method when appropriate to evaluate new solutions or reevaluate modified solutions.- Parameters:
solution
- the solution to be evaluated
-