Uses of Class
pulse.search.direction.PathOptimiser
-
Packages that use PathOptimiser Package Description pulse.search pulse.search.direction Provides a list ofPathSolver
s and associated classes, which are used to determine the direction of the minimum of a specificSearchTask
using an iterative approach.pulse.search.direction.pso -
-
Uses of PathOptimiser in pulse.search
Methods in pulse.search with parameters of type PathOptimiser Modifier and Type Method Description void
GeneralTask. setOptimiser(PathOptimiser optimiser)
-
Uses of PathOptimiser in pulse.search.direction
Subclasses of PathOptimiser in pulse.search.direction Modifier and Type Class Description class
BFGSOptimiser
The 'advanced'PathSolver
implementing the variable-metric (quasi-Newton) search method.class
CompositePathOptimiser
class
GradientBasedOptimiser
class
LMOptimiser
Given an objective function equal to the sum of squared residuals, iteratively approaches the minimum of this function by applying the Levenberg-Marquardt formulas.class
SR1Optimiser
class
SteepestDescentOptimiser
The simplest possiblePathSolver
, which assumes that the minimum direction coincides with the inverted gradient.Methods in pulse.search.direction that return PathOptimiser Modifier and Type Method Description static PathOptimiser
PathOptimiser. getInstance()
Methods in pulse.search.direction with parameters of type PathOptimiser Modifier and Type Method Description static void
PathOptimiser. setInstance(PathOptimiser selectedPathOptimiser)
-
Uses of PathOptimiser in pulse.search.direction.pso
Subclasses of PathOptimiser in pulse.search.direction.pso Modifier and Type Class Description class
ParticleSwarmOptimiser
-