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/nullary.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/nullary.cpp') diff --git a/test/nullary.cpp b/test/nullary.cpp index b0a416b25..cc842203e 100644 --- a/test/nullary.cpp +++ b/test/nullary.cpp @@ -49,10 +49,10 @@ bool equalsIdentity(const MatrixType& A) template void testVectorType(const VectorType& base) { - typedef typename ei_traits::Index Index; - typedef typename ei_traits::Scalar Scalar; - Scalar low = ei_random(-500,500); - Scalar high = ei_random(-500,500); + typedef typename internal::traits::Index Index; + typedef typename internal::traits::Scalar Scalar; + Scalar low = internal::random(-500,500); + Scalar high = internal::random(-500,500); if (low>high) std::swap(low,high); const Index size = base.size(); const Scalar step = (high-low)/(size-1); -- cgit v1.2.3