changed the field TOO_SMALL from protected to private static
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@651244 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ae31d86b8b
commit
ed9ea97ac2
|
@ -73,7 +73,7 @@ public class BigMatrixImpl implements BigMatrix, Serializable {
|
|||
private int scale = 64;
|
||||
|
||||
/** Bound to determine effective singularity in LU decomposition */
|
||||
protected static BigDecimal TOO_SMALL = new BigDecimal(10E-12);
|
||||
private static final BigDecimal TOO_SMALL = new BigDecimal(10E-12);
|
||||
|
||||
/** BigDecimal 0 */
|
||||
static final BigDecimal ZERO = new BigDecimal(0);
|
||||
|
|
|
@ -69,7 +69,7 @@ public class RealMatrixImpl implements RealMatrix, Serializable {
|
|||
private int parity = 1;
|
||||
|
||||
/** Bound to determine effective singularity in LU decomposition */
|
||||
protected static double TOO_SMALL = 10E-12;
|
||||
private static final double TOO_SMALL = 10E-12;
|
||||
|
||||
/**
|
||||
* Creates a matrix with no data
|
||||
|
|
Loading…
Reference in New Issue