Package pulse.search.direction
Class SR1Optimiser
-
- All Implemented Interfaces:
Serializable
,Descriptive
,Reflexive
public class SR1Optimiser extends CompositePathOptimiser
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class pulse.search.direction.CompositePathOptimiser
EPS, MAX_FAILED_ATTEMPTS
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SR1Optimiser
getInstance()
This class uses a singleton pattern, meaning there is only instance of this class.void
prepare(GeneralTask task)
Calculated the gradient at the end of this step.String
toString()
-
Methods inherited from class pulse.search.direction.CompositePathOptimiser
getLinearOptimiserDescriptor, getLinearSolver, initState, iteration, listedTypes, setLinearSolver
-
Methods inherited from class pulse.search.direction.GradientBasedOptimiser
dx, getGradientResolution, getGradientStep, gradient, listedKeywords, reset, set, setGradientResolution
-
Methods inherited from class pulse.search.direction.PathOptimiser
compatibleWith, genericProperties, getErrorTolerance, getMaxIterations, getSolver, ignoreSiblings, setErrorTolerance, setInstance, setMaxIterations, setSolver, update
-
Methods inherited from class pulse.util.PropertyHolder
addListener, areDetailsHidden, data, describe, firePropertyChanged, getDescriptor, getListeners, getPrefix, initListeners, isListedNumericType, isListedParameter, 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
-
prepare
public void prepare(GeneralTask task) throws SolverException
Calculated the gradient at the end of this step. Invokes
hessian(...)
to calculate the Hessian matrix at the<i>k</i>+1
step using the and gradient values, the previously calculated Hessian matrix on step k, and the result of the linear search αk+1.- Specified by:
prepare
in classPathOptimiser
- Parameters:
task
- theSearchTask
undergoing optimisation- Throws:
SolverException
-
toString
public String toString()
- Overrides:
toString
in classPathOptimiser
-
getInstance
public static SR1Optimiser getInstance()
This class uses a singleton pattern, meaning there is only instance of this class.- Returns:
- the single (static) instance of this class
-
-