Package org.moeaframework.problem.ZDT
Class ZDT5
java.lang.Object
org.moeaframework.problem.AbstractProblem
org.moeaframework.problem.ZDT.ZDT
org.moeaframework.problem.ZDT.ZDT5
- All Implemented Interfaces:
AutoCloseable
,Problem
The ZDT5 test problem.
-
Field Summary
Fields inherited from class org.moeaframework.problem.AbstractProblem
numberOfConstraints, numberOfObjectives, numberOfVariables
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Evaluates the solution, updating the solution's objectives in place.Returns a new solution for this problem.Methods inherited from class org.moeaframework.problem.AbstractProblem
close, getName, getNumberOfConstraints, getNumberOfObjectives, getNumberOfVariables
-
Constructor Details
-
ZDT5
public ZDT5()Constructs a ZDT5 test problem with 11 decision variables. -
ZDT5
public ZDT5(int numberOfVariables) Constructs a ZDT5 test problem with the specified number of decision variables.- 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
-
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 classZDT
- Returns:
- a new solution for this problem
-