blob: 133bb4628a597f8c6058adc01b3d36dc371db729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef EIGEN_LU_H
#define EIGEN_LU_H
#include "Core"
namespace Eigen {
#include "src/LU/Determinant.h"
#include "src/LU/Inverse.h"
} // namespace Eigen
#endif // EIGEN_LU_H
|