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/10 22:58:29 UTC

svn commit: r783516 - /commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java

Author: luc
Date: Wed Jun 10 20:58:29 2009
New Revision: 783516

URL: http://svn.apache.org/viewvc?rev=783516&view=rev
Log:
fixed a forgotten field in copy constructor

Modified:
    commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java?rev=783516&r1=783515&r2=783516&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/ode/sampling/NordsieckStepInterpolator.java Wed Jun 10 20:58:29 2009
@@ -77,7 +77,8 @@
      */
     public NordsieckStepInterpolator(final NordsieckStepInterpolator interpolator) {
         super(interpolator);
-        scalingH = interpolator.scalingH;
+        scalingH      = interpolator.scalingH;
+        referenceTime = interpolator.referenceTime;
         if (interpolator.scaled != null) {
             scaled = interpolator.scaled.clone();
         }