Class BFGSOptimiser

  • All Implemented Interfaces:
    Serializable, Descriptive, Reflexive

    public class BFGSOptimiser
    extends CompositePathOptimiser
    The 'advanced' PathSolver implementing the variable-metric (quasi-Newton) search method.

    The latter does not only rely on the gradient (first derivatives) of the target function, as commonly used in simpler optimisation methods, such as the steepest descent method, but also accounts for the second-order derivatives. This leads to an additional term in the equation defining the minimum direction. This term is called the 'Hessian' matrix, which is calculated approximately using the BFGS formula. Note that the initial value for the 'Hessian' matrix is an identity matrix. It is recommended to use this PathSolver in combination with the WolfeSolver.

    See Also:
    Wikipedia page, WolfeOptimiser, Serialized Form
    • 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 gk and gk+1 gradient values, the previously calculated Hessian matrix on step k, and the result of the linear search αk+1.

        Specified by:
        prepare in class PathOptimiser
        Parameters:
        task - the SearchTask undergoing optimisation
        Throws:
        SolverException
      • getInstance

        public static BFGSOptimiser getInstance()
        This class uses a singleton pattern, meaning there is only instance of this class.
        Returns:
        the single (static) instance of this class