* It takes 10 to 15 iterations for the last two tests to converge.
* In fact, if not for the bisection alternative, the solver would
* exceed the default maximal iteration of 100.
*/
public void testExpm1Function() throws MathException {
UnivariateRealFunction f = new Expm1Function();
UnivariateRealSolver solver = new MullerSolver();
double min, max, expected, result, tolerance;
min = -1.0; max = 2.0; expected = 0.0;
tolerance = Math.max(solver.getAbsoluteAccuracy(),