Documentation of 'org.apache.commons.math3.optimization.direct.PowellOptimizer' Java class
PowellOptimizer
org.apache.commons.math3.optimization.direct

Class PowellOptimizer

    • Constructor Detail

      • PowellOptimizer

        public PowellOptimizer(double rel,
                               double abs,
                               ConvergenceChecker<PointValuePair> checker)
        Deprecated. 
        This constructor allows to specify a user-defined convergence checker, in addition to the parameters that control the default convergence checking procedure.
        The internal line search tolerances are set to the square-root of their corresponding value in the multivariate optimizer.
        Parameters:
        rel - Relative threshold.
        abs - Absolute threshold.
        checker - Convergence checker.
        Throws:
        NotStrictlyPositiveException - if abs <= 0.
        NumberIsTooSmallException - if rel < 2 * Math.ulp(1d).
      • PowellOptimizer

        public PowellOptimizer(double rel,
                               double abs,
                               double lineRel,
                               double lineAbs,
                               ConvergenceChecker<PointValuePair> checker)
        Deprecated. 
        This constructor allows to specify a user-defined convergence checker, in addition to the parameters that control the default convergence checking procedure and the line search tolerances.
        Parameters:
        rel - Relative threshold for this optimizer.
        abs - Absolute threshold for this optimizer.
        lineRel - Relative threshold for the internal line search optimizer.
        lineAbs - Absolute threshold for the internal line search optimizer.
        checker - Convergence checker.
        Throws:
        NotStrictlyPositiveException - if abs <= 0.
        NumberIsTooSmallException - if rel < 2 * Math.ulp(1d).
      • PowellOptimizer

        public PowellOptimizer(double rel,
                               double abs)
        Deprecated. 
        The parameters control the default convergence checking procedure.
        The internal line search tolerances are set to the square-root of their corresponding value in the multivariate optimizer.
        Parameters:
        rel - Relative threshold.
        abs - Absolute threshold.
        Throws:
        NotStrictlyPositiveException - if abs <= 0.
        NumberIsTooSmallException - if rel < 2 * Math.ulp(1d).
      • PowellOptimizer

        public PowellOptimizer(double rel,
                               double abs,
                               double lineRel,
                               double lineAbs)
        Deprecated. 
        Builds an instance with the default convergence checking procedure.
        Parameters:
        rel - Relative threshold.
        abs - Absolute threshold.
        lineRel - Relative threshold for the internal line search optimizer.
        lineAbs - Absolute threshold for the internal line search optimizer.
        Throws:
        NotStrictlyPositiveException - if abs <= 0.
        NumberIsTooSmallException - if rel < 2 * Math.ulp(1d).
        Since:
        3.1

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.