Class ZDT4

All Implemented Interfaces:
AutoCloseable, Problem

public class ZDT4 extends ZDT
The ZDT4 test problem.
  • Constructor Details

    • ZDT4

      public ZDT4()
      Constructs a ZDT4 test problem with 10 decision variables.
    • ZDT4

      public ZDT4(int numberOfVariables)
      Constructs a ZDT4 test problem with the specified number of decision variables.
      Parameters:
      numberOfVariables - the number of decision variables
  • Method Details

    • evaluate

      public void evaluate(Solution solution)
      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

      public Solution 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 interface Problem
      Overrides:
      newSolution in class ZDT
      Returns:
      a new solution for this problem