From 89db6968bc088e8ad3b74dda22ef08acdbf172b0 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sun, 18 Jan 2009 21:09:42 +0000 Subject: [PATCH] removed commented out code git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@735546 13f79535-47bb-0310-9956-ffa450edef68 --- .../minimization/UnivariateRealMinimizer.java | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java b/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java index 582dc09cf..9799f4cb8 100644 --- a/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java +++ b/src/java/org/apache/commons/math/analysis/minimization/UnivariateRealMinimizer.java @@ -30,33 +30,6 @@ import org.apache.commons.math.analysis.UnivariateRealFunction; */ public interface UnivariateRealMinimizer extends ConvergingAlgorithm { -// /** -// * Set the function value accuracy. -// *

-// * This is used to determine when an evaluated function value or some other -// * value which is used as divisor is zero.

-// *

-// * This is a safety guard and it shouldn't be necessary to change this in -// * general.

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