Class Poloni

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

public class Poloni extends AbstractProblem
The Poloni problem. Van Veldhuizen observed a typo in the original paper; this implementation uses Van Veldhuizen's version of the problem.

Properties:

  • Disconnected Pareto set
  • Disconnected and convex Pareto front
  • Maximization (objectives are negated)

References:

  1. Van Veldhuizen, D. A (1999). "Multiobjective Evolutionary Algorithms: Classifications, Analyses, and New Innovations." Air Force Institute of Technology, Ph.D. Thesis, Appendix B.
  2. Poloni, C., et al. (1996). "Multiobjective Optimization by GAs: Application to System and Component Design." Computational Methods in Applied Sciences '96: Invited Lectures and Special Technological Sessions of the Third ECCOMAS Computational Fluid Dynamics Conference and the Second ECCOMAS Conference on Numerical Methods in Engineering, pp. 258-264.
  • Constructor Details

    • Poloni

      public Poloni()
      Constructs the Poloni 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.
      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.
      Returns:
      a new solution for this problem