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/corners.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/corners.cpp') diff --git a/test/corners.cpp b/test/corners.cpp index fe2b205d7..8d12c6146 100644 --- a/test/corners.cpp +++ b/test/corners.cpp @@ -34,8 +34,8 @@ template void corners(const MatrixType& m) Index rows = m.rows(); Index cols = m.cols(); - Index r = ei_random(1,rows); - Index c = ei_random(1,cols); + Index r = internal::random(1,rows); + Index c = internal::random(1,cols); MatrixType matrix = MatrixType::Random(rows,cols); const MatrixType const_matrix = MatrixType::Random(rows,cols); @@ -45,10 +45,10 @@ template void corners(const MatrixType& m) COMPARE_CORNER(bottomLeftCorner(r,c), block(rows-r,0,r,c)); COMPARE_CORNER(bottomRightCorner(r,c), block(rows-r,cols-c,r,c)); - Index sr = ei_random(1,rows) - 1; - Index nr = ei_random(1,rows-sr); - Index sc = ei_random(1,cols) - 1; - Index nc = ei_random(1,cols-sc); + Index sr = internal::random(1,rows) - 1; + Index nr = internal::random(1,rows-sr); + Index sc = internal::random(1,cols) - 1; + Index nc = internal::random(1,cols-sc); COMPARE_CORNER(topRows(r), block(0,0,r,cols)); COMPARE_CORNER(middleRows(sr,nr), block(sr,0,nr,cols)); -- cgit v1.2.3