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.

41 lines
983 B

  1. #ifndef EIGEN_LU_MODULE_H
  2. #define EIGEN_LU_MODULE_H
  3. #include "Core"
  4. #include "src/Core/util/DisableStupidWarnings.h"
  5. /** \defgroup LU_Module LU module
  6. * This module includes %LU decomposition and related notions such as matrix inversion and determinant.
  7. * This module defines the following MatrixBase methods:
  8. * - MatrixBase::inverse()
  9. * - MatrixBase::determinant()
  10. *
  11. * \code
  12. * #include <Eigen/LU>
  13. * \endcode
  14. */
  15. #include "src/misc/Solve.h"
  16. #include "src/misc/Kernel.h"
  17. #include "src/misc/Image.h"
  18. #include "src/LU/FullPivLU.h"
  19. #include "src/LU/PartialPivLU.h"
  20. #ifdef EIGEN_USE_LAPACKE
  21. #include "src/LU/PartialPivLU_MKL.h"
  22. #endif
  23. #include "src/LU/Determinant.h"
  24. #include "src/LU/Inverse.h"
  25. #if defined EIGEN_VECTORIZE_SSE
  26. #include "src/LU/arch/Inverse_SSE.h"
  27. #endif
  28. #ifdef EIGEN2_SUPPORT
  29. #include "src/Eigen2Support/LU.h"
  30. #endif
  31. #include "src/Core/util/ReenableStupidWarnings.h"
  32. #endif // EIGEN_LU_MODULE_H
  33. /* vim: set filetype=cpp et sw=2 ts=2 ai: */