@Test
public void testSinZero() {
// The sinus function is behaved well around the root at pi. The second
// order derivative is zero, which means linar approximating methods will
// still converge quadratically.
UnivariateFunction f = new Sin();
double result;
UnivariateSolver solver = new BrentSolver();
// Somewhat benign interval. The function is monotone.
result = solver.solve(100, f, 3, 4);
// System.out.println(