Warning, /include/eigen3/Eigen/Jacobi 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 // This Source Code Form is subject to the terms of the Mozilla
0005 // Public License v. 2.0. If a copy of the MPL was not distributed
0006 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
0007
0008 #ifndef EIGEN_JACOBI_MODULE_H
0009 #define EIGEN_JACOBI_MODULE_H
0010
0011 #include "Core"
0012
0013 #include "src/Core/util/DisableStupidWarnings.h"
0014
0015 /** \defgroup Jacobi_Module Jacobi module
0016 * This module provides Jacobi and Givens rotations.
0017 *
0018 * \code
0019 * #include <Eigen/Jacobi>
0020 * \endcode
0021 *
0022 * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation:
0023 * - MatrixBase::applyOnTheLeft()
0024 * - MatrixBase::applyOnTheRight().
0025 */
0026
0027 #include "src/Jacobi/Jacobi.h"
0028
0029 #include "src/Core/util/ReenableStupidWarnings.h"
0030
0031 #endif // EIGEN_JACOBI_MODULE_H
0032