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/basicstuff.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/basicstuff.cpp') diff --git a/test/basicstuff.cpp b/test/basicstuff.cpp index 8b322deda..769e021af 100644 --- a/test/basicstuff.cpp +++ b/test/basicstuff.cpp @@ -34,18 +34,18 @@ template void basicStuff(const MatrixType& m) // this test relies a lot on Random.h, and there's not much more that we can do // to test it, hence I consider that we will have tested Random.h - 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), mzero = MatrixType::Zero(rows, cols), identity = Matrix ::Identity(rows, rows), - square = test_random_matrix >(rows, rows); - VectorType v1 = test_random_matrix(rows), - v2 = test_random_matrix(rows), + square = Matrix::Random(rows, rows); + VectorType v1 = VectorType::Random(rows), + v2 = VectorType::Random(rows), vzero = VectorType::Zero(rows); - Scalar x = test_random(); + Scalar x = ei_random(); int r = ei_random(0, rows-1), c = ei_random(0, cols-1); -- cgit v1.2.3