mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-06-30 02:05:18 +08:00

(does not support complex and does not re-use the QR decomposition) * Rewrite the cache friendly product to have only one instance per scalar type ! This significantly speeds up compilation time and reduces executable size. The current drawback is that some trivial expressions might be evaluated like conjugate or negate. * Renamed "cache optimal" to "cache friendly" * Added the ability to directly access matrix data of some expressions via: - the stride()/_stride() methods - DirectAccessBit flag (replace ReferencableBit)
14 lines
207 B
Plaintext
14 lines
207 B
Plaintext
#ifndef EIGEN_QR_MODULE_H
|
|
#define EIGEN_QR_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
#include "Eigen/src/QR/QR.h"
|
|
#include "Eigen/src/QR/EigenSolver.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#endif // EIGEN_QR_MODULE_H
|