Author: erans
Date: Sat Nov 24 11:15:12 2012
New Revision: 1413172

URL: http://svn.apache.org/viewvc?rev=1413172&view=rev
Log:
Formatting.

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/univariate/BaseAbstractUnivariateOptimizer.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/univariate/BaseAbstractUnivariateOptimizer.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/univariate/BaseAbstractUnivariateOptimizer.java?rev=1413172&r1=1413171&r2=1413172&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/univariate/BaseAbstractUnivariateOptimizer.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/univariate/BaseAbstractUnivariateOptimizer.java
 Sat Nov 24 11:15:12 2012
@@ -110,9 +110,9 @@ public abstract class BaseAbstractUnivar
 
     /** {@inheritDoc} */
     public UnivariatePointValuePair optimize(int maxEval, UnivariateFunction f,
-                                                 GoalType goalType,
-                                                 double min, double max,
-                                                 double startValue) {
+                                             GoalType goalType,
+                                             double min, double max,
+                                             double startValue) {
         // Checks.
         if (f == null) {
             throw new NullArgumentException();
@@ -136,9 +136,9 @@ public abstract class BaseAbstractUnivar
 
     /** {@inheritDoc} */
     public UnivariatePointValuePair optimize(int maxEval,
-                                                 UnivariateFunction f,
-                                                 GoalType goalType,
-                                                 double min, double max){
+                                             UnivariateFunction f,
+                                             GoalType goalType,
+                                             double min, double max){
         return optimize(maxEval, f, goalType, min, max, min + 0.5 * (max - 
min));
     }
 


Reply via email to