~ubuntu-branches/ubuntu/quantal/commons-math/quantal

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2010-04-05 23:33:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100405233302-gpqlceked76nw28a
Tags: 2.1-1
* New upstream release.
* Bump Standards-Version to 3.8.4: no changes needed
* Bump debhelper to >= 7
* Switch to 3.0 (quilt) source format:
  - Remove B-D on quilt
  - Add d/source/format
  - Remove d/README.source

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
/**
22
22
 * Provide a default implementation for several functions useful to generic
23
23
 * converging algorithms.
24
 
 *  
25
 
 * @version $Revision: 786927 $ $Date: 2009-06-20 19:37:47 -0400 (Sat, 20 Jun 2009) $
 
24
 *
 
25
 * @version $Revision: 811685 $ $Date: 2009-09-05 13:36:48 -0400 (Sat, 05 Sep 2009) $
26
26
 * @since 2.0
27
27
 */
28
28
public abstract class ConvergingAlgorithmImpl implements ConvergingAlgorithm{
51
51
 
52
52
    /**
53
53
     * Construct an algorithm with given iteration count and accuracy.
54
 
     * 
 
54
     *
55
55
     * @param defaultAbsoluteAccuracy maximum absolute error
56
56
     * @param defaultMaximalIterationCount maximum number of iterations
57
 
     * @throws IllegalArgumentException if f is null or the 
 
57
     * @throws IllegalArgumentException if f is null or the
58
58
     * defaultAbsoluteAccuracy is not valid
59
59
     */
60
60
    protected ConvergingAlgorithmImpl(final int defaultMaximalIterationCount,