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/06/28 23:43:59 UTC

svn commit: r789155 - in /commons/proper/math/trunk/src/test/org/apache/commons/math/ode: ./ nonstiff/ sampling/

Author: luc
Date: Sun Jun 28 21:43:58 2009
New Revision: 789155

URL: http://svn.apache.org/viewvc?rev=789155&view=rev
Log:
moved test problems one package up, to prepare their reuse for stiff integrators

Added:
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem1.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem1.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem2.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem2.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem3.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem3.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem4.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem4.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem5.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem5.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem6.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem6.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemAbstract.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemFactory.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemFactory.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemHandler.java
      - copied, changed from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemHandler.java
Removed:
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem1.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem2.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem3.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem4.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem5.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem6.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemFactory.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemHandler.java
Modified:
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/ContinuousOutputModelTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsBashforthIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54IntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54StepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853IntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853StepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54IntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54StepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesIntegratorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/NordsieckStepInterpolatorTest.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepInterpolatorTestUtils.java
    commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepNormalizerTest.java

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/ContinuousOutputModelTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/ContinuousOutputModelTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/ContinuousOutputModelTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/ContinuousOutputModelTest.java Sun Jun 28 21:43:58 2009
@@ -26,7 +26,6 @@
 import org.apache.commons.math.ode.IntegratorException;
 import org.apache.commons.math.ode.nonstiff.DormandPrince54Integrator;
 import org.apache.commons.math.ode.nonstiff.DormandPrince853Integrator;
-import org.apache.commons.math.ode.nonstiff.TestProblem3;
 import org.apache.commons.math.ode.sampling.DummyStepInterpolator;
 import org.apache.commons.math.ode.sampling.StepInterpolator;
 

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem1.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem1.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem1.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem1.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem1.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem1.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem1.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 /**
  * This class is used in the junit tests for the ODE integrators.

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem2.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem2.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem2.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem2.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem2.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem2.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem2.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 /**
  * This class is used in the junit tests for the ODE integrators.

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem3.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem3.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem3.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem3.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem3.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem3.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem3.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 /**
  * This class is used in the junit tests for the ODE integrators.

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem4.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem4.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem4.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem4.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem4.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem4.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem4.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 import org.apache.commons.math.ode.events.EventHandler;
 

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem5.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem5.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem5.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem5.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem5.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem5.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem5.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 /**
  * This class is used in the junit tests for the ODE integrators.

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem6.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem6.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem6.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem6.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem6.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblem6.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblem6.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 /**
  * This class is used in the junit tests for the ODE integrators.

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemAbstract.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemAbstract.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemAbstract.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemAbstract.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemAbstract.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
 import org.apache.commons.math.ode.events.EventHandler;

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemFactory.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemFactory.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemFactory.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemFactory.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemFactory.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemFactory.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemFactory.java Sun Jun 28 21:43:58 2009
@@ -15,12 +15,12 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 /**
  * This class is used in the junit tests for the ODE integrators.
  */
-class TestProblemFactory {
+public class TestProblemFactory {
 
   /** Problems pool. */
   private static TestProblemAbstract[] pool = {

Copied: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemHandler.java (from r787795, commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemHandler.java)
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemHandler.java?p2=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemHandler.java&p1=commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemHandler.java&r1=787795&r2=789155&rev=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/TestProblemHandler.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/TestProblemHandler.java Sun Jun 28 21:43:58 2009
@@ -15,7 +15,7 @@
  * limitations under the License.
  */
 
-package org.apache.commons.math.ode.nonstiff;
+package org.apache.commons.math.ode;
 
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.ODEIntegrator;
@@ -26,7 +26,7 @@
  * This class is used to handle steps for the test problems
  * integrated during the junit tests for the ODE integrators.
  */
-class TestProblemHandler
+public class TestProblemHandler
   implements StepHandler {
 
   /** Associated problem. */

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsBashforthIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsBashforthIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsBashforthIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsBashforthIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -23,6 +23,10 @@
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblem6;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.junit.Test;
 
 public class AdamsBashforthIntegratorTest {

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -23,6 +23,10 @@
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblem6;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.junit.Test;
 
 public class AdamsMoultonIntegratorTest {

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -23,6 +23,12 @@
 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemFactory;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.ClassicalRungeKuttaIntegrator;
 import org.apache.commons.math.ode.sampling.StepHandler;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaStepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ClassicalRungeKuttaStepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -29,6 +29,7 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;
 import org.junit.Test;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54IntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54IntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54IntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54IntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -20,6 +20,12 @@
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
+import org.apache.commons.math.ode.TestProblem4;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.DormandPrince54Integrator;
 import org.apache.commons.math.ode.nonstiff.EmbeddedRungeKuttaIntegrator;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54StepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54StepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54StepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince54StepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -30,6 +30,7 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolator;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853IntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853IntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853IntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853IntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -20,6 +20,11 @@
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
+import org.apache.commons.math.ode.TestProblem4;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.DormandPrince853Integrator;
 import org.apache.commons.math.ode.sampling.DummyStepHandler;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853StepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853StepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853StepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/DormandPrince853StepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -30,6 +30,7 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolator;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -23,6 +23,11 @@
 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemFactory;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.EulerIntegrator;
 import org.apache.commons.math.ode.sampling.StepHandler;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerStepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/EulerStepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -29,6 +29,8 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;
 import org.junit.Test;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -23,6 +23,12 @@
 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemFactory;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.GillIntegrator;
 import org.apache.commons.math.ode.sampling.StepHandler;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillStepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GillStepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -29,6 +29,7 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.nonstiff.GillIntegrator;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -20,6 +20,12 @@
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
+import org.apache.commons.math.ode.TestProblem4;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.GraggBulirschStoerIntegrator;
 import org.apache.commons.math.ode.sampling.StepHandler;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerStepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/GraggBulirschStoerStepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -30,6 +30,7 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolator;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54IntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54IntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54IntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54IntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -26,6 +26,11 @@
 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
+import org.apache.commons.math.ode.TestProblem4;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventException;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.HighamHall54Integrator;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54StepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54StepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54StepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/HighamHall54StepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -30,6 +30,7 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolator;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -23,6 +23,11 @@
 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemFactory;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.MidpointIntegrator;
 import org.apache.commons.math.ode.sampling.StepHandler;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointStepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/MidpointStepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -29,6 +29,8 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;
 import org.junit.Test;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesIntegratorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesIntegratorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesIntegratorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesIntegratorTest.java Sun Jun 28 21:43:58 2009
@@ -23,6 +23,12 @@
 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
+import org.apache.commons.math.ode.TestProblem5;
+import org.apache.commons.math.ode.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemFactory;
+import org.apache.commons.math.ode.TestProblemHandler;
 import org.apache.commons.math.ode.events.EventHandler;
 import org.apache.commons.math.ode.nonstiff.ThreeEighthesIntegrator;
 import org.apache.commons.math.ode.sampling.StepHandler;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesStepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/nonstiff/ThreeEighthesStepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -29,6 +29,7 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.sampling.StepHandler;
 import org.apache.commons.math.ode.sampling.StepInterpolatorTestUtils;
 import org.junit.Test;

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/NordsieckStepInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/NordsieckStepInterpolatorTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/NordsieckStepInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/NordsieckStepInterpolatorTest.java Sun Jun 28 21:43:58 2009
@@ -29,9 +29,9 @@
 import org.apache.commons.math.ode.ContinuousOutputModel;
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem1;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.nonstiff.AdamsBashforthIntegrator;
-import org.apache.commons.math.ode.nonstiff.TestProblem1;
-import org.apache.commons.math.ode.nonstiff.TestProblem3;
 import org.junit.Test;
 
 public class NordsieckStepInterpolatorTest {

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepInterpolatorTestUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepInterpolatorTestUtils.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepInterpolatorTestUtils.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepInterpolatorTestUtils.java Sun Jun 28 21:43:58 2009
@@ -21,7 +21,7 @@
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
-import org.apache.commons.math.ode.nonstiff.TestProblemAbstract;
+import org.apache.commons.math.ode.TestProblemAbstract;
 
 public class StepInterpolatorTestUtils {
 

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepNormalizerTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepNormalizerTest.java?rev=789155&r1=789154&r2=789155&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepNormalizerTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/ode/sampling/StepNormalizerTest.java Sun Jun 28 21:43:58 2009
@@ -20,8 +20,8 @@
 import org.apache.commons.math.ode.DerivativeException;
 import org.apache.commons.math.ode.FirstOrderIntegrator;
 import org.apache.commons.math.ode.IntegratorException;
+import org.apache.commons.math.ode.TestProblem3;
 import org.apache.commons.math.ode.nonstiff.DormandPrince54Integrator;
-import org.apache.commons.math.ode.nonstiff.TestProblem3;
 import org.apache.commons.math.ode.sampling.FixedStepHandler;
 import org.apache.commons.math.ode.sampling.StepNormalizer;