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 2011/06/15 09:44:05 UTC

svn commit: r1135946 - in /commons/proper/math/trunk/src: main/java/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegrator.java site/xdoc/changes.xml

Author: luc
Date: Wed Jun 15 07:44:05 2011
New Revision: 1135946

URL: http://svn.apache.org/viewvc?rev=1135946&view=rev
Log:
Javadoc fixes in ODE.

JIRA: MATH-594

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegrator.java
    commons/proper/math/trunk/src/site/xdoc/changes.xml

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegrator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegrator.java?rev=1135946&r1=1135945&r2=1135946&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegrator.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/ode/nonstiff/AdamsMoultonIntegrator.java Wed Jun 15 07:44:05 2011
@@ -39,7 +39,7 @@ import org.apache.commons.math.util.Fast
  * classical implementations are fixed step size. The value of state vector
  * at step n+1 is a simple combination of the value at step n and of the
  * derivatives at steps n+1, n, n-1 ... Since y'<sub>n+1</sub> is needed to
- * compute y<sub>n+1</sub>,another method must be used to compute a first
+ * compute y<sub>n+1</sub>, another method must be used to compute a first
  * estimate of y<sub>n+1</sub>, then compute y'<sub>n+1</sub>, then compute
  * a final estimate of y<sub>n+1</sub> using the following formulas. Depending
  * on the number k of previous steps one wants to use for computing the next

Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=1135946&r1=1135945&r2=1135946&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Wed Jun 15 07:44:05 2011
@@ -52,6 +52,9 @@ The <action> type attribute can be add,u
     If the output is not quite correct, check for invisible trailing spaces!
      -->
     <release version="3.0" date="TBD" description="TBD">
+      <action dev="luc" type="fix" issue="MATH-594" due-to="Dennis Hendriks">
+        Javadoc fixes in ODE.
+      </action>
       <action dev="luc" type="fix" issue="MATH-586" due-to="Dennis Hendriks">
         Added a way to specify a custom root solver to find events in ODE integration.
       </action>