Class GridSearchMinimizer.Solution

    • Method Detail

      • search

        public double search​(double lower,
                             double initial,
                             double upper)
        Search for a minimum within the interval [lower, upper].
        Specified by:
        search in interface UnivariateMinimizer.Solution
        Parameters:
        lower - the lower bound
        initial - not used
        upper - the upper bound
        Returns:
        the minimizer found
      • search

        public double search​(double lower,
                             double upper)
        Description copied from interface: UnivariateMinimizer.Solution
        Search for a minimum within the interval [lower, upper].
        Specified by:
        search in interface UnivariateMinimizer.Solution
        Parameters:
        lower - the lower bound for the bracketing interval which contains a minimum
        upper - the upper bound for the bracketing interval which contains a minimum
        Returns:
        an approximate minimizer