Class BBOBTransformation
java.lang.Object
org.moeaframework.problem.AbstractProblem
org.moeaframework.problem.BBOB2016.BBOBFunction
org.moeaframework.problem.BBOB2016.BBOBTransformation
- All Implemented Interfaces:
AutoCloseable,Named,Problem
- Direct Known Subclasses:
TransformObjectiveOscillate,TransformObjectivePenalize,TransformObjectivePower,TransformObjectiveShift,TransformVariablesAffine,TransformVariablesAsymmetric,TransformVariablesBrs,TransformVariablesConditioning,TransformVariablesOscillate,TransformVariablesScale,TransformVariablesShift,TransformVariablesXHat,TransformVariablesZHat
Abstract class for transformations provided by the BBOB test suite.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected BBOBFunctionThe inner function that is being transformed.Fields inherited from class org.moeaframework.problem.AbstractProblem
numberOfConstraints, numberOfObjectives, numberOfVariables -
Constructor Summary
ConstructorsConstructorDescriptionBBOBTransformation(BBOBFunction function) Constructs a new instance of a BBOB test suite transformation. -
Method Summary
Modifier and TypeMethodDescriptionReturns a new solution for this problem.Methods inherited from class org.moeaframework.problem.AbstractProblem
close, getNumberOfConstraints, getNumberOfObjectives, getNumberOfVariables
-
Field Details
-
function
The inner function that is being transformed.
-
-
Constructor Details
-
BBOBTransformation
Constructs a new instance of a BBOB test suite transformation.- Parameters:
function- the inner function that is being transformed
-
-
Method Details
-
newSolution
Description copied from interface:ProblemReturns a new solution for this problem. Implementations must initialize the variables so that the valid range of values is defined, but typically leave the actual value at a default or undefined state.- Specified by:
newSolutionin interfaceProblem- Overrides:
newSolutionin classBBOBFunction- Returns:
- a new solution for this problem
-