Uses of Class
pulse.search.direction.GradientGuidedPath
-
Packages that use GradientGuidedPath Package Description 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. -
-
Uses of GradientGuidedPath in pulse.search.direction
Subclasses of GradientGuidedPath in pulse.search.direction Modifier and Type Class Description class
ComplexPath
A more complex version ofPath
, which in addition to other variables stores the Hessian matrix at the current step.Methods in pulse.search.direction that return GradientGuidedPath Modifier and Type Method Description GradientGuidedPath
CompositePathOptimiser. initState(GeneralTask t)
Creates a newPath
instance for storing the gradient, direction, and minimum point for thisPathSolver
.GradientGuidedPath
LMOptimiser. initState(GeneralTask t)
GradientGuidedPath
SteepestDescentOptimiser. initState(GeneralTask t)
Creates a newPath
instance for storing the gradient, direction, and minimum point for thisPathSolver
.Methods in pulse.search.direction with parameters of type GradientGuidedPath Modifier and Type Method Description Vector
DirectionSolver. direction(GradientGuidedPath p)
Finds the direction of the minimum using the previously calculated values stored inp
.default Vector
HessianDirectionSolver. direction(GradientGuidedPath p)
Uses an approximation of the Hessian matrix, containing the information on second derivatives, calculated with the BFGS formula in combination with the local value of the gradient to evaluate the direction of the minimum onp
.
-