You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
255 B

  1. #include "../Eigen/LU"
  2. #ifdef EIGEN_SHOULD_FAIL_TO_BUILD
  3. #define SCALAR int
  4. #else
  5. #define SCALAR float
  6. #endif
  7. using namespace StormEigen;
  8. int main()
  9. {
  10. PartialPivLU<Matrix<SCALAR,Dynamic,Dynamic> > lu(Matrix<SCALAR,Dynamic,Dynamic>::Random(10,10));
  11. }