You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2008/12/08 14:40:43 UTC

svn commit: r724343 - /commons/proper/math/trunk/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java

Author: luc
Date: Mon Dec  8 05:40:42 2008
New Revision: 724343

URL: http://svn.apache.org/viewvc?rev=724343&view=rev
Log:
removed obsolete comment

Modified:
    commons/proper/math/trunk/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java?rev=724343&r1=724342&r2=724343&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java Mon Dec  8 05:40:42 2008
@@ -27,8 +27,7 @@
  * (i.e. systems having more variables than equations). Over-determined systems
  * are solved by ignoring the variables which have the smallest impact according
  * to their jacobian column norm. Only the rank of the matrix and some loop bounds
- * are changed to implement this. This feature has undergone only basic testing
- * for now and should still be considered experimental.</p>
+ * are changed to implement this.</p>
  *
  * <p>The resolution engine is a simple translation of the MINPACK <a
  * href="http://www.netlib.org/minpack/lmder.f">lmder</a> routine with minor