Changed variable visibility: "protected" -> "private".
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1296547 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a998dcce9c
commit
f8efb929f4
|
@ -39,10 +39,10 @@ public class SimplexSolver extends AbstractLinearOptimizer {
|
|||
private static final int DEFAULT_ULPS = 10;
|
||||
|
||||
/** Amount of error to accept for algorithm convergence. */
|
||||
protected final double epsilon;
|
||||
private final double epsilon;
|
||||
|
||||
/** Amount of error to accept in floating point comparisons (as ulps). */
|
||||
protected final int maxUlps;
|
||||
private final int maxUlps;
|
||||
|
||||
/**
|
||||
* Build a simplex solver with default settings.
|
||||
|
|
Loading…
Reference in New Issue