Author: tn Date: Mon Dec 16 21:13:59 2013 New Revision: 1551360 URL: http://svn.apache.org/r1551360 Log: Fix javadoc.
Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java?rev=1551360&r1=1551359&r2=1551360&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java Mon Dec 16 21:13:59 2013 @@ -453,10 +453,10 @@ class SimplexTableau implements Serializ } /** - * Subtracts a multiple of one row from another. + * Divides one row by a given divisor. * <p> * After application of this operation, the following will hold: - * <pre>minuendRow = minuendRow - multiple * subtrahendRow</pre> + * <pre>dividendRow = dividendRow / divisor</pre> * * @param dividendRow index of the row * @param divisor value of the divisor