From 8844f632fa0b8f36c114785ff190aa6e656c0f86 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sat, 8 Dec 2012 18:22:23 +0100 Subject: Move work in progress Levenberg Marquardt module in unsupported --- unsupported/Eigen/LevenbergMarquardt | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 unsupported/Eigen/LevenbergMarquardt (limited to 'unsupported/Eigen/LevenbergMarquardt') diff --git a/unsupported/Eigen/LevenbergMarquardt b/unsupported/Eigen/LevenbergMarquardt new file mode 100644 index 000000000..5ce1a23f6 --- /dev/null +++ b/unsupported/Eigen/LevenbergMarquardt @@ -0,0 +1,46 @@ +// This file is part of Eigen, a lightweight C++ template library +// for linear algebra. +// +// Copyright (C) 2009 Thomas Capricelli +// +// This Source Code Form is subject to the terms of the Mozilla +// Public License v. 2.0. If a copy of the MPL was not distributed +// with this file, You can obtain one at http://mozilla.org/MPL/2.0/. + +#ifndef EIGEN_LEVENBERGMARQUARDT_MODULE +#define EIGEN_LEVENBERGMARQUARDT_MODULE + +// #include + +#include +#include +#include +#include +#ifdef EIGEN_SPQR_SUPPORT +#include +#endif + +/** \ingroup NonLinearOptimization_modules + * \defgroup LevenbergMarquardt_Module Levenberg-Marquardt optimization module + * + * \code + * #include + * \endcode + * + * + */ + +#include "Eigen/SparseCore" +#ifndef EIGEN_PARSED_BY_DOXYGEN + +#include "src/LevenbergMarquardt/LMqrsolv.h" +#include "src/LevenbergMarquardt/LMcovar.h" +#include "src/LevenbergMarquardt/LMpar.h" + +#endif + +#include "src/LevenbergMarquardt/LevenbergMarquardt.h" +#include "src/LevenbergMarquardt/LMonestep.h" + + +#endif // EIGEN_LEVENBERGMARQUARDT_MODULE -- cgit v1.2.3