eigen/failtest/llt_int.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
251 B
C++
Raw Permalink Normal View History

#include "../Eigen/Cholesky"
#ifdef EIGEN_SHOULD_FAIL_TO_BUILD
#define SCALAR int
#else
#define SCALAR float
#endif
using namespace Eigen;
int main() { LLT<Matrix<SCALAR, Dynamic, Dynamic> > llt(Matrix<SCALAR, Dynamic, Dynamic>::Random(10, 10)); }