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/07/25 19:22:06 UTC

svn commit: r797801 - /commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java

Author: psteitz
Date: Sat Jul 25 17:22:06 2009
New Revision: 797801

URL: http://svn.apache.org/viewvc?rev=797801&view=rev
Log:
Fixed javadoc link.

Modified:
    commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java?rev=797801&r1=797800&r2=797801&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java Sat Jul 25 17:22:06 2009
@@ -70,7 +70,7 @@
     /**
      * Returns the row with the minimum ratio as given by the minimum ratio test (MRT).
      * @param tableau simple tableau for the problem
-     * @param col the column to test the ratio of.  See {@link #getPivotColumn()}
+     * @param col the column to test the ratio of.  See {@link #getPivotColumn(SimplexTableau)}
      * @return row with the minimum ratio
      */
     private Integer getPivotRow(final int col, final SimplexTableau tableau) {