Package org.moeaframework.core.operator
Class CompoundVariation
java.lang.Object
org.moeaframework.core.operator.AbstractCompoundVariation<Variation>
org.moeaframework.core.operator.CompoundVariation
- All Implemented Interfaces:
Configurable,Named,Variation
Construct a variation operator applying one or more variations sequentially. See
AbstractCompoundVariation
for usage.-
Field Summary
Fields inherited from class org.moeaframework.core.operator.AbstractCompoundVariation
operators -
Constructor Summary
ConstructorsConstructorDescriptionCompoundVariation(Variation... operators) Constructs a compound variation operator with the specified variation operators. -
Method Summary
Methods inherited from class org.moeaframework.core.operator.AbstractCompoundVariation
applyConfiguration, contains, evolve, getArity, getConfiguration, getName, getOperators, setNameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.moeaframework.core.configuration.Configurable
applyConfiguration, getConfiguration
-
Constructor Details
-
CompoundVariation
Constructs a compound variation operator with the specified variation operators.- Parameters:
operators- the variation operators in the order they are applied
-