This is an automated email from the ASF dual-hosted git repository. erans pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-math.git
commit e9389912d514645da9f9b8a5cdf970921ba6a579 Author: Gilles Sadowski <gillese...@gmail.com> AuthorDate: Tue Jul 21 12:18:20 2020 +0200 Javadoc. --- .../org/apache/commons/math4/optim/linear/SimplexTableau.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java b/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java index d4cf0f3..337381c 100644 --- a/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java +++ b/src/main/java/org/apache/commons/math4/optim/linear/SimplexTableau.java @@ -384,11 +384,12 @@ class SimplexTableau implements Serializable { } /** - * Given the minimum and maximum value of the exponent for some doubles, pick a change in - * exponent to bring those values closer to 1 - * @param minExp - * @param maxExp - * @return + * Given the minimum and maximum value of the exponent of two {@code double} + * values, pick a change in exponent to bring those values closer to 1. + * + * @param minExp Smallest exponent. + * @param maxExp Largest exponent. + * @return the new exponent. */ private int computeExpChange(int minExp, int maxExp) { int expChange = 0;