From a8f66fec6591e11a20a9861bda244e15f969fda2 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 12 Jul 2011 14:41:00 +0200 Subject: add the possibility to configure the maximal matrix size in the unit tests --- test/qr_colpivoting.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/qr_colpivoting.cpp') diff --git a/test/qr_colpivoting.cpp b/test/qr_colpivoting.cpp index ddfb1bad5..dd1f89bd6 100644 --- a/test/qr_colpivoting.cpp +++ b/test/qr_colpivoting.cpp @@ -30,7 +30,7 @@ template void qr() { typedef typename MatrixType::Index Index; - Index rows = internal::random(2,200), cols = internal::random(2,200), cols2 = internal::random(2,200); + Index rows = internal::random(2,EIGEN_TEST_MAX_SIZE), cols = internal::random(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random(2,EIGEN_TEST_MAX_SIZE); Index rank = internal::random(1, std::min(rows, cols)-1); typedef typename MatrixType::Scalar Scalar; -- cgit v1.2.3