Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / failtest / ldlt_int.cpp
blob243e457468cf6e2b50c849a32853b7c6f46b4e72
1 #include "../Eigen/Cholesky"
3 #ifdef EIGEN_SHOULD_FAIL_TO_BUILD
4 #define SCALAR int
5 #else
6 #define SCALAR float
7 #endif
9 using namespace Eigen;
11 int main()
13 LDLT<Matrix<SCALAR,Dynamic,Dynamic> > ldlt(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));