From 139a0e2c53e966d6a3ec54d00752f5ebb283293f Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Mon, 8 Dec 2008 13:40:42 +0000 Subject: [PATCH] removed obsolete comment git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@724343 13f79535-47bb-0310-9956-ffa450edef68 --- .../commons/math/estimation/LevenbergMarquardtEstimator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java b/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java index 7cbb91396..018395d18 100644 --- a/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java +++ b/src/java/org/apache/commons/math/estimation/LevenbergMarquardtEstimator.java @@ -27,8 +27,7 @@ import java.util.Arrays; * (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.

+ * are changed to implement this.

* *

The resolution engine is a simple translation of the MINPACK lmder routine with minor