Brian Silverman | 72890c2 | 2015-09-19 14:37:37 -0400 | [diff] [blame] | 1 | #include "../Eigen/Cholesky" |
2 | |||||
3 | #ifdef EIGEN_SHOULD_FAIL_TO_BUILD | ||||
4 | #define SCALAR int | ||||
5 | #else | ||||
6 | #define SCALAR float | ||||
7 | #endif | ||||
8 | |||||
9 | using namespace Eigen; | ||||
10 | |||||
11 | int main() | ||||
12 | { | ||||
13 | LLT<Matrix<SCALAR,Dynamic,Dynamic> > llt(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10)); | ||||
14 | } |