Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / eigen / failtest / colpivqr_int.cpp
blobdb11910d42a58066af6bec7ddd1aa26fdb470327
1 #include "../Eigen/QR"
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 ColPivHouseholderQR<Matrix<SCALAR,Dynamic,Dynamic> > qr(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));