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

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/math/optimization/UnivariateRealOptimizer.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:
24
24
 
25
25
/**
26
26
 * Interface for (univariate real) optimization algorithms.
27
 
 *  
28
 
 * @version $Revision: 799857 $ $Date: 2009-08-01 09:07:12 -0400 (Sat, 01 Aug 2009) $
 
27
 *
 
28
 * @version $Revision: 811685 $ $Date: 2009-09-05 13:36:48 -0400 (Sat, 05 Sep 2009) $
29
29
 * @since 2.0
30
30
 */
31
31
public interface UnivariateRealOptimizer extends ConvergingAlgorithm {
97
97
 
98
98
    /**
99
99
     * Get the result of the last run of the optimizer.
100
 
     * 
 
100
     *
101
101
     * @return the last result.
102
102
     * @throws IllegalStateException if there is no result available, either
103
103
     * because no result was yet computed or the last attempt failed.
106
106
 
107
107
    /**
108
108
     * Get the result of the last run of the optimizer.
109
 
     * 
 
109
     *
110
110
     * @return the value of the function at the last result.
111
111
     * @throws IllegalStateException if there is no result available, either
112
112
     * because no result was yet computed or the last attempt failed.
113
113
     */
114
114
    double getFunctionValue();
115
115
 
116
 
}
 
 
b'\\ No newline at end of file'
 
116
}