Removed "println" statements.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@980047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
58c6028e21
commit
6d6d96df69
|
@ -145,12 +145,6 @@ public class PowellOptimizerTest {
|
|||
final RealPointValuePair result = optim.optimize(func, goal, init);
|
||||
final double[] found = result.getPoint();
|
||||
|
||||
System.out.println("Function value at initial guess: " + func.value(init));
|
||||
System.out.println("Function value at optimum: " + result.getValue());
|
||||
System.out.println("Iterations: " + optim.getIterations());
|
||||
System.out.println("Function evaluations: " + optim.getEvaluations());
|
||||
System.out.println(Arrays.toString(found));
|
||||
|
||||
for (int i = 0, dim = optimum.length; i < dim; i++) {
|
||||
Assert.assertEquals(optimum[i], found[i], pointTol);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue