From 76a5cd998b2f2b9dd1cc09e58b6b64e51124b8a3 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sun, 29 Dec 2013 15:17:45 +0000 Subject: [PATCH] Checkstyle warnings. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1554035 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math3/optim/linear/SimplexTableau.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java b/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java index 04b19a24a..06ab424c9 100644 --- a/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java +++ b/src/main/java/org/apache/commons/math3/optim/linear/SimplexTableau.java @@ -100,10 +100,10 @@ class SimplexTableau implements Serializable { /** Maps basic variables to row they are basic in. */ private int[] basicVariables; - + /** Maps rows to their corresponding basic variables. */ private int[] basicRows; - + /** * Builds a tableau for a linear problem. * @@ -317,7 +317,7 @@ class SimplexTableau implements Serializable { final int row = basicVariables[col]; return row == -1 ? null : row; } - + /** * Returns the variable that is basic in this row. * @param row the index of the row to check @@ -509,7 +509,7 @@ class SimplexTableau implements Serializable { * After application of this operation, the following will hold: *
dividendRow = dividendRow / divisor
* - * @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: *
minuendRow = minuendRow - multiple * subtrahendRow
* - * @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);