|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.tools.math.optimization.ec.pso.PSOOptimization
public abstract class PSOOptimization
This class performs the optimization of a value vector with a particle swarm approach.
Field Summary | |
---|---|
private double |
globalWeight
|
private double |
inertiaWeight
|
private double |
inertiaWeightDelta
|
private double |
localWeight
|
private int |
maxGen
|
private double |
maxValue
|
private int |
maxWithoutImprovement
|
private double |
minValue
|
private Population |
population
|
private RandomGenerator |
random
|
Constructor Summary | |
---|---|
PSOOptimization(int popSize,
int individualSize,
int maxGen,
int maxWithoutImprovement,
double inertiaWeight,
double localWeight,
double globalWeight,
double minValue,
double maxValue,
boolean dynamicInertiaWeight,
RandomGenerator random)
Creates a new PSO optimization with the given parameters. |
Method Summary | |
---|---|
protected Population |
createInitialPopulation(int popSize,
int individualSize)
Creates the initial population. |
private void |
evaluate(Population population)
Calculates the fitness for all individuals and gives the fitness values to the population. |
abstract PerformanceVector |
evaluateIndividual(double[] individual)
Subclasses must implement this method to calculate the fitness of the given individual. |
double |
getBestFitnessEver()
Returns the best fitness ever. |
double |
getBestFitnessInGeneration()
Returns the best fitness in the current generation. |
PerformanceVector |
getBestPerformanceEver()
Returns the best performance vector ever. |
double[] |
getBestValuesEver()
Returns the best values ever. |
int |
getGeneration()
Returns the current generation. |
void |
nextIteration()
This method is invoked after each evaluation. |
void |
optimize()
Invoke this method for optimization. |
void |
setMaxValue(double maxValue)
|
void |
setMinValue(double minValue)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private int maxGen
private int maxWithoutImprovement
private double inertiaWeight
private double localWeight
private double globalWeight
private double minValue
private double maxValue
private double inertiaWeightDelta
private RandomGenerator random
private Population population
Constructor Detail |
---|
public PSOOptimization(int popSize, int individualSize, int maxGen, int maxWithoutImprovement, double inertiaWeight, double localWeight, double globalWeight, double minValue, double maxValue, boolean dynamicInertiaWeight, RandomGenerator random)
Method Detail |
---|
public abstract PerformanceVector evaluateIndividual(double[] individual) throws OperatorException
OperatorException
public void nextIteration()
public void setMinValue(double minValue)
public void setMaxValue(double maxValue)
protected Population createInitialPopulation(int popSize, int individualSize)
public void optimize() throws OperatorException
optimize
in interface Optimization
OperatorException
private void evaluate(Population population) throws OperatorException
OperatorException
public int getGeneration()
getGeneration
in interface Optimization
public double getBestFitnessInGeneration()
getBestFitnessInGeneration
in interface Optimization
public double getBestFitnessEver()
getBestFitnessEver
in interface Optimization
public PerformanceVector getBestPerformanceEver()
getBestPerformanceEver
in interface Optimization
public double[] getBestValuesEver()
getBestValuesEver
in interface Optimization
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |