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/linearstructure.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/linearstructure.cpp') diff --git a/test/linearstructure.cpp b/test/linearstructure.cpp index b5c58bdaa..312102701 100644 --- a/test/linearstructure.cpp +++ b/test/linearstructure.cpp @@ -42,11 +42,11 @@ template void linearStructure(const MatrixType& m) m3(rows, cols), mzero = MatrixType::Zero(rows, cols); - Scalar s1 = ei_random(); - while (ei_abs(s1)<1e-3) s1 = ei_random(); + Scalar s1 = internal::random(); + while (internal::abs(s1)<1e-3) 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), m1); VERIFY_IS_APPROX(m1+m1, 2*m1); -- cgit v1.2.3