Package pulse.search.direction.pso
Class ParticleSwarmOptimiser
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.util.Accessible
-
- pulse.util.PropertyHolder
-
- pulse.search.direction.PathOptimiser
-
- pulse.search.direction.pso.ParticleSwarmOptimiser
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
public class ParticleSwarmOptimiser extends PathOptimiser
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParticleSwarmOptimiser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
compatibleWith(OptimiserStatistic os)
Checks if this optimiser is compatible with the statistic passed to the method as its argument.By default, this will accept anyOptimiserStatistic
IterativeState
initState(GeneralTask t)
Creates a newPath
suitable for thisPathSolver
boolean
iteration(GeneralTask task)
Iterates the swarm.protected void
moveParticles()
void
prepare(GeneralTask task)
Defines a set of procedures to be run at the end of the search iteration.-
Methods inherited from class pulse.search.direction.PathOptimiser
genericProperties, getErrorTolerance, getInstance, getMaxIterations, getSolver, ignoreSiblings, listedKeywords, reset, set, setErrorTolerance, setInstance, setMaxIterations, setSolver, toString, update
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, initListeners, isListedNumericType, isListedParameter, listedTypes, numericData, parameterListChanged, removeListeners, setPrefix, updateProperties, updateProperty
-
Methods inherited from class pulse.util.Accessible
accessibleChildren, genericProperty, numericProperties, numericProperty, property, update
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Method Detail
-
moveParticles
protected void moveParticles()
-
iteration
public boolean iteration(GeneralTask task) throws SolverException
Iterates the swarm.- Specified by:
iteration
in classPathOptimiser
- Parameters:
task
- aSearchTask
that needs to be driven to a minimum of SSR.- Returns:
- the SSR value with the newly found parameters.
- Throws:
SolverException
- See Also:
direction(Path)
,LinearOptimiser
-
prepare
public void prepare(GeneralTask task) throws SolverException
Description copied from class:PathOptimiser
Defines a set of procedures to be run at the end of the search iteration.- Specified by:
prepare
in classPathOptimiser
- Parameters:
task
- theSearchTask
undergoing optimisation- Throws:
SolverException
-
initState
public IterativeState initState(GeneralTask t)
Description copied from class:PathOptimiser
Creates a newPath
suitable for thisPathSolver
- Specified by:
initState
in classPathOptimiser
- Parameters:
t
- the task, the optimisation path of which will be tracked- Returns:
- a
Path
instance
-
compatibleWith
public boolean compatibleWith(OptimiserStatistic os)
Description copied from class:PathOptimiser
Checks if this optimiser is compatible with the statistic passed to the method as its argument.By default, this will accept anyOptimiserStatistic
- Overrides:
compatibleWith
in classPathOptimiser
- Parameters:
os
- a selected optimiser metric- Returns:
true
, if not specified otherwise by its subclass implementation.
-
-