Javadoc.
This commit is contained in:
parent
91207d4c6d
commit
e9389912d5
|
@ -384,11 +384,12 @@ class SimplexTableau implements Serializable {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Given the minimum and maximum value of the exponent for some doubles, pick a change in
|
* Given the minimum and maximum value of the exponent of two {@code double}
|
||||||
* exponent to bring those values closer to 1
|
* values, pick a change in exponent to bring those values closer to 1.
|
||||||
* @param minExp
|
*
|
||||||
* @param maxExp
|
* @param minExp Smallest exponent.
|
||||||
* @return
|
* @param maxExp Largest exponent.
|
||||||
|
* @return the new exponent.
|
||||||
*/
|
*/
|
||||||
private int computeExpChange(int minExp, int maxExp) {
|
private int computeExpChange(int minExp, int maxExp) {
|
||||||
int expChange = 0;
|
int expChange = 0;
|
||||||
|
|
Loading…
Reference in New Issue