From 3231090f6492ef2d5fdb37abaf3eed7410c78155 Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Tue, 31 Aug 2010 14:27:58 +0000 Subject: [PATCH] Deprecation warning. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@991207 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/math/ConvergingAlgorithm.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/math/ConvergingAlgorithm.java b/src/main/java/org/apache/commons/math/ConvergingAlgorithm.java index 31ff7b8d5..748d48040 100644 --- a/src/main/java/org/apache/commons/math/ConvergingAlgorithm.java +++ b/src/main/java/org/apache/commons/math/ConvergingAlgorithm.java @@ -26,6 +26,10 @@ package org.apache.commons.math; * @see ConvergenceException * @version $Revision$ $Date$ * @since 2.0 + * @deprecated in 2.2 (to be removed in 3.0). The concept of "iteration" will + * be moved to a new {@code IterativeAlgorithm}. The concept of "accuracy" is + * currently is also contained in {@link org.apache.commons.math.optimization.SimpleRealPointChecker} + * and similar classes. */ public interface ConvergingAlgorithm {