| Abstract factory class used to create
UnivariateRealSolver instances.
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);
Jakarta Commons Discovery
is used to determine the concrete factory returned by
UnivariateRealSolverFactory.newInstance(). The default is
UnivariateRealSolverFactoryImpl .
version: $Revision: 155427 $ $Date: 2005-02-26 06:11:52 -0700 (Sat, 26 Feb 2005) $ |