You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
580 B

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