mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
2a86f052a5
(only 30 muls for size 4) - rework the matrix inversion: now using cofactor technique for size<=3, so the ugly unrolling is only used for size 4 anymore, and even there I'm looking to get rid of it.
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
#ifndef EIGEN_LU_H
|
|
#define EIGEN_LU_H
|
|
|
|
#include "Core"
|
|
|
|
namespace Eigen {
|
|
|
|
#include "Eigen/src/LU/Determinant.h"
|
|
#include "Eigen/src/LU/Inverse.h"
|
|
|
|
} // namespace Eigen
|
|
|
|
#endif // EIGEN_LU_H
|