You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2012/03/03 02:31:53 UTC

svn commit: r1296547 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/linear/SimplexSolver.java

Author: erans
Date: Sat Mar  3 01:31:52 2012
New Revision: 1296547

URL: http://svn.apache.org/viewvc?rev=1296547&view=rev
Log:
Changed variable visibility: "protected" -> "private".

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/linear/SimplexSolver.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/linear/SimplexSolver.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/linear/SimplexSolver.java?rev=1296547&r1=1296546&r2=1296547&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/linear/SimplexSolver.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/linear/SimplexSolver.java Sat Mar  3 01:31:52 2012
@@ -39,10 +39,10 @@ public class SimplexSolver extends Abstr
     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.