Home | History | Annotate | Download | only in Eigen
      1 #ifndef EIGEN_HOUSEHOLDER_MODULE_H
      2 #define EIGEN_HOUSEHOLDER_MODULE_H
      3 
      4 #include "Core"
      5 
      6 #include "src/Core/util/DisableStupidWarnings.h"
      7 
      8 /** \defgroup Householder_Module Householder module
      9   * This module provides Householder transformations.
     10   *
     11   * \code
     12   * #include <Eigen/Householder>
     13   * \endcode
     14   */
     15 
     16 #include "src/Householder/Householder.h"
     17 #include "src/Householder/HouseholderSequence.h"
     18 #include "src/Householder/BlockHouseholder.h"
     19 
     20 #include "src/Core/util/ReenableStupidWarnings.h"
     21 
     22 #endif // EIGEN_HOUSEHOLDER_MODULE_H
     23 /* vim: set filetype=cpp et sw=2 ts=2 ai: */
     24