You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2009/06/30 02:37:05 UTC

svn commit: r789510 - in /commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff: AdamsIntegrator.java AdamsNordsieckTransformer.java

Author: psteitz
Date: Tue Jun 30 00:37:05 2009
New Revision: 789510

URL: http://svn.apache.org/viewvc?rev=789510&view=rev
Log:
Fixed broken javadoc links.

Modified:
    commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsIntegrator.java
    commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsNordsieckTransformer.java

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsIntegrator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsIntegrator.java?rev=789510&r1=789509&r2=789510&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsIntegrator.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsIntegrator.java Tue Jun 30 00:37:05 2009
@@ -104,7 +104,7 @@
      * @param highOrder high order scaled derivatives
      * (h<sup>2</sup>/2 y'', ... h<sup>k</sup>/k! y(k))
      * @return updated high order derivatives
-     * @see #updateHighOrderDerivativesPhase2(double[], double[], RealMatrix)
+     * @see #updateHighOrderDerivativesPhase2(double[], double[], Array2DRowRealMatrix)
      */
     public Array2DRowRealMatrix updateHighOrderDerivativesPhase1(final Array2DRowRealMatrix highOrder) {
         return transformer.updateHighOrderDerivativesPhase1(highOrder);
@@ -121,7 +121,7 @@
      * @param end first order scaled derivatives at step end
      * @param highOrder high order scaled derivatives, will be modified
      * (h<sup>2</sup>/2 y'', ... h<sup>k</sup>/k! y(k))
-     * @see #updateHighOrderDerivativesPhase1(RealMatrix)
+     * @see #updateHighOrderDerivativesPhase1(Array2DRowRealMatrix)
      */
     public void updateHighOrderDerivativesPhase2(final double[] start,
                                                  final double[] end,

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsNordsieckTransformer.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsNordsieckTransformer.java?rev=789510&r1=789509&r2=789510&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsNordsieckTransformer.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/ode/nonstiff/AdamsNordsieckTransformer.java Tue Jun 30 00:37:05 2009
@@ -280,7 +280,7 @@
      * @param highOrder high order scaled derivatives
      * (h<sup>2</sup>/2 y'', ... h<sup>k</sup>/k! y(k))
      * @return updated high order derivatives
-     * @see #updateHighOrderDerivativesPhase2(double[], double[], RealMatrix)
+     * @see #updateHighOrderDerivativesPhase2(double[], double[], Array2DRowRealMatrix)
      */
     public Array2DRowRealMatrix updateHighOrderDerivativesPhase1(final Array2DRowRealMatrix highOrder) {
         return update.multiply(highOrder);
@@ -297,7 +297,7 @@
      * @param end first order scaled derivatives at step end
      * @param highOrder high order scaled derivatives, will be modified
      * (h<sup>2</sup>/2 y'', ... h<sup>k</sup>/k! y(k))
-     * @see #updateHighOrderDerivativesPhase1(RealMatrix)
+     * @see #updateHighOrderDerivativesPhase1(Array2DRowRealMatrix)
      */
     public void updateHighOrderDerivativesPhase2(final double[] start,
                                                  final double[] end,