Class BBOBTransformation
java.lang.Object
org.moeaframework.problem.AbstractProblem
org.moeaframework.problem.BBOB2016.BBOBFunction
org.moeaframework.problem.BBOB2016.BBOBTransformation
- All Implemented Interfaces:
AutoCloseable
,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
Modifier and TypeFieldDescriptionprotected BBOBFunction
The inner function that is being transformed.Fields inherited from class org.moeaframework.problem.AbstractProblem
numberOfConstraints, numberOfObjectives, numberOfVariables
-
Constructor Summary
ConstructorDescriptionBBOBTransformation
(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, getName, 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:Problem
Returns 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:
newSolution
in interfaceProblem
- Overrides:
newSolution
in classBBOBFunction
- Returns:
- a new solution for this problem
-