Fix javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1551360 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-12-16 21:13:59 +00:00
parent b285f17023
commit 68fa81123a
1 changed files with 2 additions and 2 deletions

View File

@ -453,10 +453,10 @@ class SimplexTableau implements Serializable {
} }
/** /**
* Subtracts a multiple of one row from another. * Divides one row by a given divisor.
* <p> * <p>
* After application of this operation, the following will hold: * 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 dividendRow index of the row
* @param divisor value of the divisor * @param divisor value of the divisor