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/visitor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/visitor.cpp') diff --git a/test/visitor.cpp b/test/visitor.cpp index 1ddabc63d..2552c6c26 100644 --- a/test/visitor.cpp +++ b/test/visitor.cpp @@ -38,7 +38,7 @@ template void matrixVisitor(const MatrixType& p) for(Index i = 0; i < m.size(); i++) for(Index i2 = 0; i2 < i; i2++) while(m(i) == m(i2)) // yes, == - m(i) = ei_random(); + m(i) = internal::random(); Scalar minc = Scalar(1000), maxc = Scalar(-1000); Index minrow=0,mincol=0,maxrow=0,maxcol=0; @@ -85,7 +85,7 @@ template void vectorVisitor(const VectorType& w) for(Index i = 0; i < size; i++) for(Index i2 = 0; i2 < i; i2++) while(v(i) == v(i2)) // yes, == - v(i) = ei_random(); + v(i) = internal::random(); Scalar minc = Scalar(1000), maxc = Scalar(-1000); Index minidx=0,maxidx=0; -- cgit v1.2.3