Class GoldenSectionOptimiser

    • Field Detail

      • PHI

        public static final double PHI
        The golden section φ, which is approximately equal to 0.618033989.
    • Method Detail

      • linearStep

        public double linearStep​(GeneralTask task)
                          throws SolverException

        Let a and b be the start and end point of a Segment, initially defined by the super.domain(IndexedVector,Vector) method. This method will start a loop, which at each step i will compare the values of the target function at the end points of a Segment constructed from one of the end points ai or bi and substituting the second end point with either ai + φ*(b-a) or bi - φ*(b-a). This theoretically ensures the least number of steps to reach the minimum (as compared to the standard dichotomy methods).

        Specified by:
        linearStep in class LinearOptimiser
        Parameters:
        task - the target function is the sum of squared residuals (SSR) for this task
        Returns:
        a double, representing the step magnitude that needs to be multiplied by the direction of the search determined previously using the PathSolver to arrive at the next set of parameters corresponding to a lower SSR value of this task
        Throws:
        SolverException
      • getInstance

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