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:
Gilles Sadowski 2012-03-03 01:31:52 +00:00
parent a998dcce9c
commit f8efb929f4
1 changed files with 2 additions and 2 deletions

View File

@ -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.