From 46fe7a3d9ec14ea56a879c48ba7f15e78342c8cb Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 1 Sep 2008 17:31:21 +0000 Subject: if EIGEN_NICE_RANDOM is defined, the random functions will return numbers with few bits left of the comma and for floating-point types will never return zero. This replaces the custom functions in test/main.h, so one does not anymore need to think about that when writing tests. --- test/array.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/array.cpp') diff --git a/test/array.cpp b/test/array.cpp index 25387d0cd..f0b09051f 100644 --- a/test/array.cpp +++ b/test/array.cpp @@ -38,12 +38,12 @@ template void scalarAdd(const MatrixType& m) int rows = m.rows(); int cols = m.cols(); - MatrixType m1 = test_random_matrix(rows, cols), - m2 = test_random_matrix(rows, cols), + MatrixType m1 = MatrixType::Random(rows, cols), + m2 = MatrixType::Random(rows, cols), m3(rows, cols); - Scalar s1 = test_random(), - s2 = test_random(); + Scalar s1 = ei_random(), + s2 = ei_random(); VERIFY_IS_APPROX(m1.cwise() + s1, s1 + m1.cwise()); VERIFY_IS_APPROX(m1.cwise() + s1, MatrixType::Constant(rows,cols,s1) + m1); -- cgit v1.2.3