Author: luc
Date: Sun Jan 20 07:52:12 2008
New Revision: 613577
URL: http://svn.apache.org/viewvc?rev=613577&view=rev
Log:
fixed an exception type in javadoc
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/DirectSearchOptimizer.java
Modified:
commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/DirectSearchOptimizer.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/DirectSearchOptimizer.java?rev=613577&r1=613576&r2=613577&view=diff
==============================================================================
---
commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/DirectSearchOptimizer.java
(original)
+++
commons/proper/math/trunk/src/java/org/apache/commons/math/optimization/DirectSearchOptimizer.java
Sun Jan 20 07:52:12 2008
@@ -102,7 +102,7 @@
* @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 @@
* @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,