mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-22 01:29:35 +08:00
12 lines
253 B
C++
12 lines
253 B
C++
#include "../Eigen/LU"
|
|
|
|
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
|
|
#define SCALAR int
|
|
#else
|
|
#define SCALAR float
|
|
#endif
|
|
|
|
using namespace Eigen;
|
|
|
|
int main() { PartialPivLU<Matrix<SCALAR, Dynamic, Dynamic> > lu(Matrix<SCALAR, Dynamic, Dynamic>::Random(10, 10)); }
|