Author: luc
Date: Sun Jan 18 13:09:42 2009
New Revision: 735546
URL: http://svn.apache.org/viewvc?rev=735546&view=rev
Log:
removed commented out code
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java?rev=735546&r1=735545&r2=735546&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java
Sun Jan 18 13:09:42 2009
@@ -30,33 +30,6 @@
*/
public interface UnivariateRealMinimizer extends ConvergingAlgorithm {
-// /**
-// * Set the function value accuracy.
-// * <p>
-// * This is used to determine when an evaluated function value or some
other
-// * value which is used as divisor is zero.</p>
-// * <p>
-// * This is a safety guard and it shouldn't be necessary to change this in
-// * general.</p>
-// *
-// * @param accuracy the accuracy.
-// * @throws IllegalArgumentException if the accuracy can't be achieved by
-// * the minimizer or is otherwise deemed unreasonable.
-// */
-// void setFunctionValueAccuracy(double accuracy);
-//
-// /**
-// * Get the actual function value accuracy.
-// * @return the accuracy
-// */
-// double getFunctionValueAccuracy();
-//
-// /**
-// * Reset the actual function accuracy to the default.
-// * The default value is provided by the minimizer implementation.
-// */
-// void resetFunctionValueAccuracy();
-
/**
* Find a minimum in the given interval.
* <p>