From 8c3f7d8e94aaf4100b482ad18218b7e8cc6c02b0 Mon Sep 17 00:00:00 2001 From: Thomas Capricelli Date: Sun, 13 Sep 2009 01:44:34 +0200 Subject: [PATCH] cleaning --- unsupported/Eigen/src/NonLinear/LevenbergMarquardt.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/unsupported/Eigen/src/NonLinear/LevenbergMarquardt.h b/unsupported/Eigen/src/NonLinear/LevenbergMarquardt.h index 8952a1dbf..27768a160 100644 --- a/unsupported/Eigen/src/NonLinear/LevenbergMarquardt.h +++ b/unsupported/Eigen/src/NonLinear/LevenbergMarquardt.h @@ -389,7 +389,6 @@ LevenbergMarquardt::minimizeOneStep( /* end of the inner loop. repeat if iteration unsuccessful. */ } while (ratio < Scalar(1e-4)); /* end of the outer loop. */ - return Running; } @@ -650,14 +649,12 @@ LevenbergMarquardt::minimizeNumericalDiffOneStep( return XtolTooSmall; if (gnorm <= epsilon()) return GtolTooSmall; - /* end of the inner loop. repeat if iteration unsuccessful. */ } while (ratio < Scalar(1e-4)); /* end of the outer loop. */ return Running; } - template typename LevenbergMarquardt::Status LevenbergMarquardt::minimizeNumericalDiff( @@ -950,15 +947,12 @@ LevenbergMarquardt::minimizeOptimumStorageOneStep( return XtolTooSmall; if (gnorm <= epsilon()) return GtolTooSmall; - /* end of the inner loop. repeat if iteration unsuccessful. */ } while (ratio < Scalar(1e-4)); /* end of the outer loop. */ - return Running; } - template typename LevenbergMarquardt::Status LevenbergMarquardt::minimizeOptimumStorage(