public class SMSEMOA<S extends Solution<?>> extends AbstractGeneticAlgorithm<S,List<S>>
| Modifier and Type | Field and Description |
|---|---|
protected int |
evaluations |
protected int |
maxEvaluations |
protected double |
offset |
protected int |
populationSize |
protected Problem<S> |
problem |
crossoverOperator, mutationOperator, selectionOperator| Constructor and Description |
|---|
SMSEMOA(Problem<S> problem,
int maxEvaluations,
int populationSize,
double offset,
CrossoverOperator<S> crossoverOperator,
MutationOperator<S> mutationOperator,
SelectionOperator<List<S>,S> selectionOperator)
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
protected Ranking<S> |
computeRanking(List<S> solutionList) |
protected List<S> |
createInitialPopulation() |
protected List<S> |
evaluatePopulation(List<S> population) |
List<S> |
getResult() |
protected void |
initProgress() |
protected boolean |
isStoppingConditionReached() |
protected List<S> |
replacement(List<S> population,
List<S> offspringPopulation) |
protected List<S> |
reproduction(List<S> population) |
protected List<S> |
selection(List<S> population) |
protected void |
updateProgress() |
getPopulation, run, setPopulationprotected final int maxEvaluations
protected final int populationSize
protected final double offset
protected int evaluations
public SMSEMOA(Problem<S> problem, int maxEvaluations, int populationSize, double offset, CrossoverOperator<S> crossoverOperator, MutationOperator<S> mutationOperator, SelectionOperator<List<S>,S> selectionOperator)
protected void initProgress()
initProgress in class AbstractEvolutionaryAlgorithm<S extends Solution<?>,List<S extends Solution<?>>>protected void updateProgress()
updateProgress in class AbstractEvolutionaryAlgorithm<S extends Solution<?>,List<S extends Solution<?>>>protected boolean isStoppingConditionReached()
isStoppingConditionReached in class AbstractEvolutionaryAlgorithm<S extends Solution<?>,List<S extends Solution<?>>>protected List<S> createInitialPopulation()
createInitialPopulation in class AbstractEvolutionaryAlgorithm<S extends Solution<?>,List<S extends Solution<?>>>protected List<S> evaluatePopulation(List<S> population)
evaluatePopulation in class AbstractEvolutionaryAlgorithm<S extends Solution<?>,List<S extends Solution<?>>>protected List<S> reproduction(List<S> population)
reproduction in class AbstractEvolutionaryAlgorithm<S extends Solution<?>,List<S extends Solution<?>>>protected List<S> replacement(List<S> population, List<S> offspringPopulation)
replacement in class AbstractEvolutionaryAlgorithm<S extends Solution<?>,List<S extends Solution<?>>>Copyright © 2015. All rights reserved.