You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2009/03/15 22:03:40 UTC

svn commit: r754750 - /commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java

Author: luc
Date: Sun Mar 15 21:03:39 2009
New Revision: 754750

URL: http://svn.apache.org/viewvc?rev=754750&view=rev
Log:
removed a spurious print statement

Modified:
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java?rev=754750&r1=754749&r2=754750&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/StepInterpolatorAbstractTest.java Sun Mar 15 21:03:39 2009
@@ -77,9 +77,6 @@
                                                32 * (yP3h[i] - yM3h[i]) +
                                              -168 * (yP2h[i] - yM2h[i]) +
                                               672 * (yP1h[i] - yM1h[i])) / (840 * h);
-                    if (Math.abs(approYDot - yDot[i]) >= threshold) {
-                        System.out.println("gotcha!");
-                    }
                     assertEquals(approYDot, yDot[i], threshold);
                 }