Warning, /include/eigen3/unsupported/Eigen/LevenbergMarquardt is written in an unsupported language. File is not indexed.
0001 // This file is part of Eigen, a lightweight C++ template library
0002 // for linear algebra.
0003 //
0004 // Copyright (C) 2009 Thomas Capricelli <orzel@freehackers.org>
0005 //
0006 // This Source Code Form is subject to the terms of the Mozilla
0007 // Public License v. 2.0. If a copy of the MPL was not distributed
0008 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0009
0010 #ifndef EIGEN_LEVENBERGMARQUARDT_MODULE
0011 #define EIGEN_LEVENBERGMARQUARDT_MODULE
0012
0013 // #include <vector>
0014
0015 #include "../../Eigen/Core"
0016 #include "../../Eigen/Jacobi"
0017 #include "../../Eigen/QR"
0018 #include "NumericalDiff"
0019
0020 #include "../../Eigen/SparseQR"
0021
0022 /**
0023 * \defgroup LevenbergMarquardt_Module Levenberg-Marquardt module
0024 *
0025 * \code
0026 * #include </Eigen/LevenbergMarquardt>
0027 * \endcode
0028 *
0029 *
0030 */
0031
0032 #include "../../Eigen/SparseCore"
0033
0034 #include "../../Eigen/src/Core/util/DisableStupidWarnings.h"
0035
0036 #ifndef EIGEN_PARSED_BY_DOXYGEN
0037
0038 #include "src/LevenbergMarquardt/LMqrsolv.h"
0039 #include "src/LevenbergMarquardt/LMcovar.h"
0040 #include "src/LevenbergMarquardt/LMpar.h"
0041
0042 #endif
0043
0044 #include "src/LevenbergMarquardt/LevenbergMarquardt.h"
0045 #include "src/LevenbergMarquardt/LMonestep.h"
0046
0047 #include "../../Eigen/src/Core/util/ReenableStupidWarnings.h"
0048
0049 #endif // EIGEN_LEVENBERGMARQUARDT_MODULE