~ubuntu-branches/ubuntu/trusty/commons-math/trusty

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/math/ConvergingAlgorithm.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan, Torsten Werner, Damien Raude-Morvan
  • Date: 2011-03-07 21:14:46 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110307211446-4zea7og4eeyzhpai
Tags: 2.2-1
[ Torsten Werner ]
* Change maintainers into Maintainers.

[ Damien Raude-Morvan ]
* New upstream release (Closes: #617209).
* d/control: Bump Standards-Version to 3.9.1 (no changes needed).
* d/copyright: Refresh years, upgrade to DEP5 r166 and relicence my work
  under Apache-2.0.
* d/ant.properties: Set junit.jar to /usr/share/java/junit4.jar
  to ensure unit tests are launched.
* d/docs: Install upstream RELEASE-NOTES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 * execution of the algorithms per se.
25
25
 * </p>
26
26
 * @see ConvergenceException
27
 
 * @version $Revision: 811786 $ $Date: 2009-09-06 05:36:08 -0400 (Sun, 06 Sep 2009) $
 
27
 * @version $Revision: 1042336 $ $Date: 2010-12-05 13:40:48 +0100 (dim. 05 déc. 2010) $
28
28
 * @since 2.0
 
29
 * @deprecated in 2.2 (to be removed in 3.0). The concept of "iteration" will
 
30
 * be moved to a new {@code IterativeAlgorithm}. The concept of "accuracy" is
 
31
 * currently is also contained in {@link org.apache.commons.math.optimization.SimpleRealPointChecker}
 
32
 * and similar classes.
29
33
 */
 
34
@Deprecated
30
35
public interface ConvergingAlgorithm {
31
36
 
32
37
    /**