Checkstyle warnings.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1554035 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8e23b250a4
commit
76a5cd998b
|
@ -509,7 +509,7 @@ class SimplexTableau implements Serializable {
|
|||
* After application of this operation, the following will hold:
|
||||
* <pre>dividendRow = dividendRow / divisor</pre>
|
||||
*
|
||||
* @param dividendRow index of the row
|
||||
* @param dividendRowIndex index of the row
|
||||
* @param divisor value of the divisor
|
||||
*/
|
||||
protected void divideRow(final int dividendRowIndex, final double divisor) {
|
||||
|
@ -525,9 +525,9 @@ class SimplexTableau implements Serializable {
|
|||
* After application of this operation, the following will hold:
|
||||
* <pre>minuendRow = minuendRow - multiple * subtrahendRow</pre>
|
||||
*
|
||||
* @param minuendRow row index
|
||||
* @param subtrahendRow row index
|
||||
* @param multiple multiplication factor
|
||||
* @param minuendRowIndex row index
|
||||
* @param subtrahendRowIndex row index
|
||||
* @param multiplier multiplication factor
|
||||
*/
|
||||
protected void subtractRow(final int minuendRowIndex, final int subtrahendRowIndex, final double multiplier) {
|
||||
final double[] minuendRow = getRow(minuendRowIndex);
|
||||
|
|
Loading…
Reference in New Issue