mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-09 07:00:27 +08:00
e3fac69f19
This is the first step towards a non-selfadjoint eigen solver. Notes: - We might consider merging Tridiagonalization and Hessenberg toghether ? - Or we could factorize some code into a Householder class (could also be shared with QR)
17 lines
321 B
Plaintext
17 lines
321 B
Plaintext
#ifndef EIGEN_QR_MODULE_H
|
|
#define EIGEN_QR_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
#include "src/QR/QR.h"
|
|
#include "src/QR/Tridiagonalization.h"
|
|
#include "src/QR/EigenSolver.h"
|
|
#include "src/QR/SelfAdjointEigenSolver.h"
|
|
#include "src/QR/HessenbergDecomposition.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#endif // EIGEN_QR_MODULE_H
|