You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2012/10/09 12:45:16 UTC

svn commit: r1395949 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/CMAESOptimizer.java

Author: erans
Date: Tue Oct  9 10:45:16 2012
New Revision: 1395949

URL: http://svn.apache.org/viewvc?rev=1395949&view=rev
Log:
Javadoc. [After the MATH-867 fix, this warning is obsolete.]

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/CMAESOptimizer.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/CMAESOptimizer.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/CMAESOptimizer.java?rev=1395949&r1=1395948&r2=1395949&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/CMAESOptimizer.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/optimization/direct/CMAESOptimizer.java Tue Oct  9 10:45:16 2012
@@ -75,13 +75,6 @@ import org.apache.commons.math3.util.Mat
  *  <li><a href="http://en.wikipedia.org/wiki/CMA-ES">Wikipedia</a></li>
  * </ul>
  *
- * When simple constraints (boundaries) are used, care must be taken that the
- * difference between the upper and lower bounds does not overflow; should it
- * be the case, a {@link org.apache.commons.math3.exception.NumberIsTooLargeException
- * NumberIsTooLargeException} will be thrown by the
- * {@link BaseAbstractMultivariateSimpleBoundsOptimizer#optimize(int,
- * MultivariateFunction,GoalType,double[],double[],double[]) optimize} method.
- *
  * @version $Id$
  * @since 3.0
  */