Package org.moeaframework.algorithm
Class SMSEMOA
java.lang.Object
org.moeaframework.algorithm.AbstractAlgorithm
org.moeaframework.algorithm.AbstractEvolutionaryAlgorithm
org.moeaframework.algorithm.SMSEMOA
- All Implemented Interfaces:
Algorithm,EvolutionaryAlgorithm,Extensible,Configurable,Named,Stateful
Implementation of the S-metric Selection MOEA (SMS-EMOA). The S metric is also known as the hypervolume indicator.
References:
- Emmerich, M., N. Beume, and B. Naujoks (2007). An EMO Algorithm Using the Hypervolume Measure as Selection Criterion. European Journal of Operational Research, 3:1653-1669.
-
Field Summary
Fields inherited from class org.moeaframework.algorithm.AbstractAlgorithm
initialized, numberOfEvaluations, problem, terminated -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new SMS-EMOA instance with default settings.SMSEMOA(Problem problem, int initialPopulationSize, Initialization initialization, Variation variation, FitnessEvaluator fitnessEvaluator) Constructs a new SMS-EMOA instance. -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyConfiguration(TypedProperties properties) Applies the properties to this instance.Gets the current configuration of this instance.Returns the fitness evaluator.getName()Returns the name of this algorithm.voidPerforms any initialization that is required by this algorithm.protected voiditerate()Performs one iteration of the algorithm.voidsetFitnessEvaluator(FitnessEvaluator fitnessEvaluator) Sets the fitness evaluator.voidsetInitialPopulationSize(int initialPopulationSize) Sets the initial population size.voidsetVariation(Variation variation) Replaces the variation operator to be used by this algorithm.Methods inherited from class org.moeaframework.algorithm.AbstractEvolutionaryAlgorithm
getArchive, getInitialization, getInitialPopulationSize, getPopulation, getResult, getVariation, loadState, saveState, setArchive, setInitialization, setPopulationMethods inherited from class org.moeaframework.algorithm.AbstractAlgorithm
assertNotInitialized, evaluate, getExtensions, getNumberOfEvaluations, getProblem, isInitialized, isTerminated, step, terminateMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.moeaframework.algorithm.Algorithm
evaluate, evaluateAll, evaluateAll, getNumberOfEvaluations, getProblem, isInitialized, isTerminated, run, run, step, terminateMethods inherited from interface org.moeaframework.algorithm.extension.Extensible
addExtension, getExtensions, removeExtension
-
Constructor Details
-
SMSEMOA
Constructs a new SMS-EMOA instance with default settings.- Parameters:
problem- the problem
-
SMSEMOA
public SMSEMOA(Problem problem, int initialPopulationSize, Initialization initialization, Variation variation, FitnessEvaluator fitnessEvaluator) Constructs a new SMS-EMOA instance.- Parameters:
problem- the probleminitialPopulationSize- the initial population sizeinitialization- the initialization operatorvariation- the variation operatorfitnessEvaluator- the fitness evaluator
-
-
Method Details
-
getName
Description copied from interface:AlgorithmReturns the name of this algorithm. Whenever possible, this name should match the name recognized byAlgorithmFactory.- Returns:
- the name of this algorithm
-
setVariation
Description copied from class:AbstractEvolutionaryAlgorithmReplaces the variation operator to be used by this algorithm.- Overrides:
setVariationin classAbstractEvolutionaryAlgorithm- Parameters:
variation- the variation operator
-
setInitialPopulationSize
public void setInitialPopulationSize(int initialPopulationSize) Description copied from class:AbstractEvolutionaryAlgorithmSets the initial population size. This value can not be set after initialization.- Overrides:
setInitialPopulationSizein classAbstractEvolutionaryAlgorithm- Parameters:
initialPopulationSize- the initial population size
-
getFitnessEvaluator
Returns the fitness evaluator.- Returns:
- the fitness evaluator
-
setFitnessEvaluator
Sets the fitness evaluator. Ifnull, will default to non-dominated sorting for selection.- Parameters:
fitnessEvaluator- the fitness evaluator
-
initialize
public void initialize()Description copied from interface:AlgorithmPerforms any initialization that is required by this algorithm. This method should only be called once, though the specific implementation may choose to no-op or throwAlgorithmInitializationExceptionif called multiple times.Implementations should always call
super.initialize()to ensure the algorithm is initialized correctly.- Specified by:
initializein interfaceAlgorithm- Overrides:
initializein classAbstractEvolutionaryAlgorithm
-
iterate
protected void iterate()Description copied from class:AbstractAlgorithmPerforms one iteration of the algorithm. This method should be overridden by implementations to perform each logical iteration of the algorithm.- Specified by:
iteratein classAbstractAlgorithm
-
applyConfiguration
Description copied from interface:ConfigurableApplies the properties to this instance. It is strongly recommended to apply a configuration immediately after creating the instance, as some properties can not be changed after the class is used. Exceptions may be thrown if attempting to set such properties.After calling this method, we encourage users to call
TypedProperties.warnIfUnaccessedProperties()to verify all properties were processed. This can identify simple mistakes like typos.If overriding this method, properties should only be updated if a new value is provided. Additionally, if updating any
Configurableobjects inside this object, they should be updated before callingsuper.applyConfiguration(properties).- Parameters:
properties- the user-defined properties
-
getConfiguration
Description copied from interface:ConfigurableGets the current configuration of this instance. In theory, these properties should be able to create a duplicate instance. Note however, they are unlikely to behave identically due to random numbers and other transient fields.- Returns:
- the properties defining this instance
-