From 4716040703be1ee906439385d20475dcddad5ce3 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 25 Oct 2010 10:15:22 -0400 Subject: bug #86 : use internal:: namespace instead of ei_ prefix --- test/nomalloc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/nomalloc.cpp') diff --git a/test/nomalloc.cpp b/test/nomalloc.cpp index b4c0ff741..0e3caa4ae 100644 --- a/test/nomalloc.cpp +++ b/test/nomalloc.cpp @@ -62,10 +62,10 @@ template void nomalloc(const MatrixType& m) v2 = VectorType::Random(rows), vzero = VectorType::Zero(rows); - Scalar s1 = ei_random(); + Scalar s1 = internal::random(); - Index r = ei_random(0, rows-1), - c = ei_random(0, cols-1); + Index r = internal::random(0, rows-1), + c = internal::random(0, cols-1); VERIFY_IS_APPROX((m1+m2)*s1, s1*m1+s1*m2); VERIFY_IS_APPROX((m1+m2)(r,c), (m1(r,c))+(m2(r,c))); -- cgit v1.2.3