fixed an exception type in javadoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@613577 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-01-20 15:52:12 +00:00
parent 90400c773c
commit 4ed5ea3874
1 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ public abstract class DirectSearchOptimizer {
* @return the point/cost pairs giving the minimal cost
* @exception CostException if the cost function throws one during
* the search
* @exception NoConvergenceException if none of the starts did
* @exception ConvergenceException if none of the starts did
* converge (it is not thrown if at least one start did converge)
*/
public PointCostPair minimizes(CostFunction f, int maxEvaluations,
@ -144,7 +144,7 @@ public abstract class DirectSearchOptimizer {
* @return the point/cost pairs giving the minimal cost
* @exception CostException if the cost function throws one during
* the search
* @exception NoConvergenceException if none of the starts did
* @exception ConvergenceException if none of the starts did
* converge (it is not thrown if at least one start did converge)
*/
public PointCostPair minimizes(CostFunction f, int maxEvaluations,