From f566724023e1a82be7fecfe0639e908772d3cea6 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Sun, 13 Jan 2019 17:54:30 +0100 Subject: Fix StorageIndex FIXME in dense LU solvers --- test/lu.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test/lu.cpp') diff --git a/test/lu.cpp b/test/lu.cpp index 24bea784a..46fd60555 100644 --- a/test/lu.cpp +++ b/test/lu.cpp @@ -18,6 +18,8 @@ typename MatrixType::RealScalar matrix_l1_norm(const MatrixType& m) { template void lu_non_invertible() { + STATIC_CHECK(( internal::is_same::StorageIndex,int>::value )); + typedef typename MatrixType::RealScalar RealScalar; /* this test covers the following files: LU.h @@ -191,6 +193,8 @@ template void lu_partial_piv() m1.setRandom(); PartialPivLU plu(m1); + STATIC_CHECK(( internal::is_same::StorageIndex,int>::value )); + VERIFY_IS_APPROX(m1, plu.reconstructedMatrix()); m3 = MatrixType::Random(size,size); -- cgit v1.2.3