mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
02f1615d2a
extended cache optimal product to work in any row/column major situations, and a few bugfixes (forgot to add the Cholesky header, vectorization of CwiseBinary)
14 lines
257 B
Plaintext
14 lines
257 B
Plaintext
#ifndef EIGEN_CHOLESKY_MODULE_H
|
|
#define EIGEN_CHOLESKY_MODULE_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
#include "Eigen/src/Cholesky/Cholesky.h"
|
|
#include "Eigen/src/Cholesky/CholeskyWithoutSquareRoot.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#endif // EIGEN_CHOLESKY_MODULE_H
|