Package org.moeaframework.problem.misc
Class Murata
java.lang.Object
org.moeaframework.problem.AbstractProblem
org.moeaframework.problem.misc.Murata
- All Implemented Interfaces:
AutoCloseable,Named,AnalyticalProblem,Problem
The Murata problem. The optimum is defined by
(x, 2) where 1 <= x < = 4.
Properties:
- Connected Pareto set
- Concave Pareto front
References:
- Murata, T. and Ishibuchi, H. (1995). "MOGA: Multi-Objective Genetic Algorithms." IEEE International Conference on Evolutionary Computation, pp. 289-294.
- Van Veldhuizen, D. A (1999). "Multiobjective Evolutionary Algorithms: Classifications, Analyses, and New Innovations." Air Force Institute of Technology, Ph.D. Thesis, Appendix B.
-
Field Summary
Fields inherited from class org.moeaframework.problem.AbstractProblem
numberOfConstraints, numberOfObjectives, numberOfVariables -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidEvaluates the solution, updating the solution's objectives in place.generate()Returns a randomly-generated solution using the analytical solution to this problem.Returns a new solution for this problem.Methods inherited from class org.moeaframework.problem.AbstractProblem
close, getNumberOfConstraints, getNumberOfObjectives, getNumberOfVariablesMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.moeaframework.problem.Problem
close, getName, getNumberOfConstraints, getNumberOfObjectives, getNumberOfVariables, isType
-
Constructor Details
-
Murata
public Murata()Constructs the Murata problem.
-
-
Method Details
-
evaluate
Description copied from interface:ProblemEvaluates 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. -
newSolution
Description copied from interface:ProblemReturns 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:
newSolutionin interfaceProblem- Returns:
- a new solution for this problem
-
generate
Description copied from interface:AnalyticalProblemReturns a randomly-generated solution using the analytical solution to this problem. The exact behavior of this method depends on the implementation, but in general (1) the solutions should be non-dominated and (2) spread uniformly across the Pareto front.It is not always possible to guarantee these conditions. For example, a discontinuous / disconnected Pareto surface could generate dominated solutions, and a biased problem could result in non-uniform distributions. Therefore, we recommend callers filter solutions through a
NondominatedPopulation, in particular one that maintains a spread of solutions.Furthermore, some implementations may not provide the corresponding decision variables for the solution. These implementations should indicate this by returning a solution with
0decision variables.- Specified by:
generatein interfaceAnalyticalProblem- Returns:
- a randomly-generated Pareto optimal solution to this problem
-