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:
parent
acb06a976b
commit
6f0ff08189
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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(),
|
||||
|
|
Loading…
Reference in New Issue