1 #ifndef EIGEN_JACOBI_MODULE_H 2 #define EIGEN_JACOBI_MODULE_H 3 4 #include "Core" 5 6 #include "src/Core/util/DisableStupidWarnings.h" 7 8 /** \defgroup Jacobi_Module Jacobi module 9 * This module provides Jacobi and Givens rotations. 10 * 11 * \code 12 * #include <Eigen/Jacobi> 13 * \endcode 14 * 15 * In addition to listed classes, it defines the two following MatrixBase methods to apply a Jacobi or Givens rotation: 16 * - MatrixBase::applyOnTheLeft() 17 * - MatrixBase::applyOnTheRight(). 18 */ 19 20 #include "src/Jacobi/Jacobi.h" 21 22 #include "src/Core/util/ReenableStupidWarnings.h" 23 24 #endif // EIGEN_JACOBI_MODULE_H 25 /* vim: set filetype=cpp et sw=2 ts=2 ai: */ 26 27