In o.a.c.m3.SymmLQ: reduced visibility of some fields/methods (from protected

to package protected). See MATH-761.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1302785 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2012-03-20 06:37:26 +00:00
parent d90d2aa935
commit 439fdb9d9d
1 changed files with 3 additions and 3 deletions

View File

@ -598,7 +598,7 @@ public class SymmLQ
* value of the state variables of {@code this} object correspond to the
* current iteration count {@code k}.
*/
protected void update() {
void update() {
final RealVector v = y.mapMultiply(1. / beta);
y = a.operate(v);
daxpbypz(-shift, v, -beta / oldb, r1, y);
@ -812,10 +812,10 @@ public class SymmLQ
}
/** The cubic root of {@link #MACH_PREC}. */
protected static final double CBRT_MACH_PREC;
static final double CBRT_MACH_PREC;
/** The machine precision. */
protected static final double MACH_PREC;
static final double MACH_PREC;
/** Key for the exception context. */
private static final String OPERATOR = "operator";