From 2dc148477f3256c7f59742e99f5be1701f60892e Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Sat, 25 Jul 2009 17:22:06 +0000 Subject: [PATCH] Fixed javadoc link. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@797801 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/math/optimization/linear/SimplexSolver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java b/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java index 97f5eb9a2..16d3baea1 100644 --- a/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java +++ b/src/java/org/apache/commons/math/optimization/linear/SimplexSolver.java @@ -70,7 +70,7 @@ public class SimplexSolver extends AbstractLinearOptimizer { /** * 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) {