Class Schaffer

java.lang.Object
org.moeaframework.problem.AbstractProblem
org.moeaframework.problem.misc.Schaffer
All Implemented Interfaces:
AutoCloseable, Problem, AnalyticalProblem

public class Schaffer extends AbstractProblem implements AnalyticalProblem
The Schaffer problem. The Schaffer problem is univariate, with the optimum defined by 0 <= x <= 2.

Properties:

  • Connected Pareto set
  • Convex Pareto front

References:

  1. Schaffer, J. D. (1984). "Some Experiments in Machine Learning using Vector Evaluated Genetic Algorithms." Ph.D. Thesis, Vanderbilt University, Nashville, USA.
  2. Schaffer, J. D. (1985). "Multiple Objective Optimization with Vector Evaluated Genetic Algorithms." Genetic Algorithms and Their Applications: Proceedings of the First International Conference on Genetic Algorithms, pp. 93-100.
  3. Van Veldhuizen, D. A (1999). "Multiobjective Evolutionary Algorithms: Classifications, Analyses, and New Innovations." Air Force Institute of Technology, Ph.D. Thesis, Appendix B.
  • Constructor Details

    • Schaffer

      public Schaffer()
      Constructs the Schaffer problem.
  • 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.
      Specified by:
      evaluate in interface Problem
      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
      Returns:
      a new solution for this problem
    • generate

      public Solution generate()
      Description copied from interface: AnalyticalProblem
      Returns a randomly-generated solution using the analytical solution to this problem. Note however that discontinuous Pareto surfaces may result in some solutions generated by this method being dominated by other generated solutions. It is therefore recommended using a NondominatedPopulation to remove dominated solutions prior to using the generated reference set.

      The generated solutions should be spread uniformly across the entire Pareto frontier; however, this is a suggestion and is not a requirement of this interface.

      Specified by:
      generate in interface AnalyticalProblem
      Returns:
      a randomly-generated Pareto optimal solution to this problem