Java org.apache.commons.math3.optim.nonlinear.scalar.noderiv CustomPowellOptimizer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.optim.nonlinear.scalar.noderiv CustomPowellOptimizer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.optim.nonlinear.scalar.noderiv CustomPowellOptimizer.

The text is from its open source code.

Constructor

CustomPowellOptimizer(double rel, double abs, ConvergenceChecker checker, boolean basisConvergence)
This constructor allows to specify a user-defined convergence checker, in addition to the parameters that control the default convergence checking procedure.
CustomPowellOptimizer(double rel, double abs, double lineRel, double lineAbs)
Builds an instance with the default convergence checking procedure.
CustomPowellOptimizer(double rel, double abs, double lineRel, double lineAbs, ConvergenceChecker checker, boolean basisConvergence)
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.