Package org.moeaframework.problem.single
Class Beale
java.lang.Object
org.moeaframework.problem.AbstractProblem
org.moeaframework.problem.single.Beale
- All Implemented Interfaces:
AutoCloseable,Named,Problem
The single-objective Beale problem with an optimum at
x = (3.0, 0.5) with f(x) = 0.-
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.Returns the reference set, typically a single solution unless the problem has multiple local minima, for this single objective problem.Returns a new solution for this problem.Methods inherited from class org.moeaframework.problem.AbstractProblem
close, getNumberOfConstraints, getNumberOfObjectives, getNumberOfVariables
-
Constructor Details
-
Beale
public Beale()Constructs a new instance of the Beale 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.- Parameters:
solution- the solution to be evaluated
-
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.- Returns:
- a new solution for this problem
-
getReferenceSet
Returns the reference set, typically a single solution unless the problem has multiple local minima, for this single objective problem.- Returns:
- the reference set
-