|
MOEA Framework 2.5 API Specification |
|||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||
java.lang.Objectorg.moeaframework.core.operator.real.DifferentialEvolutionSelection
public class DifferentialEvolutionSelection
Selection operator to be used in conjunction with the
DifferentialEvolution operator. The select method returns the
solutions [currentIndex, r1, r2, ...], where currentIndex is
set using the setCurrentIndex(int) method and r1, r2, ...
are randomly selected solutions. The returned solutions are guaranteed to
have unique indices in the population, but the solutions themselves may not
be unique if the population contains duplicate solutions.
| Constructor Summary | |
|---|---|
DifferentialEvolutionSelection()
Constructs a differential evolution selection operator. |
|
| Method Summary | |
|---|---|
Solution[] |
select(int arity,
Population population)
Returns an array of length arity of solutions selected from the
specified population. |
void |
setCurrentIndex(int currentIndex)
Sets the current index, which is the index of the first solution returned by the select method. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DifferentialEvolutionSelection()
| Method Detail |
|---|
public void setCurrentIndex(int currentIndex)
select method.
currentIndex - the current index
public Solution[] select(int arity,
Population population)
Selectionarity of solutions selected from the
specified population.
select in interface Selectionarity - the number of solutions selected from the specified
populationpopulation - the population from which solutions are selected
arity of solutions selected from the
specified population
|
MOEA Framework 2.5 API Specification |
|||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||