Tab police

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1166925 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-09-08 22:17:30 +00:00
parent acb06a976b
commit 6f0ff08189
2 changed files with 2 additions and 2 deletions

View File

@ -53,5 +53,5 @@ public final class RegulaFalsiSolverTest extends BaseSecantSolverAbstractTest {
final UnivariateRealSolver solver = new RegulaFalsiSolver();
final double root = solver.solve(3624, f, 1, 10);
Assert.assertEquals(3.4341896575482003, root, 1e-15);
}
}
}

View File

@ -265,7 +265,7 @@ public class BOBYQAOptimizerTest {
new BOBYQAOptimizer(2 * dim + 1, lB, uB);
RealPointValuePair result = optim.optimize(maxEvaluations, func, goal, startPoint);
// System.out.println(func.getClass().getName() + " = "
// + optim.getEvaluations() + " f(");
// + optim.getEvaluations() + " f(");
// for (double x: result.getPoint()) System.out.print(x + " ");
// System.out.println(") = " + result.getValue());
Assert.assertEquals(expected.getValue(),