From f0394edfa7d063e37256e673cdecacd9f55f44ae Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Fri, 22 Aug 2008 17:48:36 +0000 Subject: * bugfix in SolveTriangular found by Timothy Hunter (did not compiled for very small fixed size matrices) * bugfix in Dot unroller * added special random generator for the unit tests and reduced the tolerance threshold by an order of magnitude this fixes issues with sum.cpp but other tests still failed sometimes, this have to be carefully checked... --- test/inverse.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/inverse.cpp') diff --git a/test/inverse.cpp b/test/inverse.cpp index 9c7c6524c..de6b09621 100644 --- a/test/inverse.cpp +++ b/test/inverse.cpp @@ -37,8 +37,8 @@ template void inverse(const MatrixType& m) typedef typename MatrixType::Scalar Scalar; typedef Matrix VectorType; - MatrixType m1 = MatrixType::Random(rows, cols), - m2 = MatrixType::Random(rows, cols), + MatrixType m1 = test_random_matrix(rows, cols), + m2 = test_random_matrix(rows, cols), mzero = MatrixType::Zero(rows, cols), identity = MatrixType::Identity(rows, rows); -- cgit v1.2.3