Solvers implementing the following algorithms are supported:
Bisection
Brent's method
Secant method
Concrete factories extending this class also specify a default solver, instances of which
are returned by newDefaultSolver().
Common usage:
SolverFactory factory = UnivariateRealSolverFactory.newInstance();
// create a Brent solver to use with a UnivariateRealFunction f
BrentSolver solver = factory.newBrentSolver(f);
Solvers implementing the following algorithms are supported:
- Bisection
- Brent's method
- Secant method
Concrete factories extending this class also specify a default solver, instances of which are returned bynewDefaultSolver().Common usage:
Jakarta Commons Discovery is used to determine the concrete factory returned byUnivariateRealSolverFactory.newInstance().The default is UnivariateRealSolverFactoryImpl .