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/product_selfadjoint.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/product_selfadjoint.cpp') diff --git a/test/product_selfadjoint.cpp b/test/product_selfadjoint.cpp index c84582484..2e1fc7ec0 100644 --- a/test/product_selfadjoint.cpp +++ b/test/product_selfadjoint.cpp @@ -47,9 +47,9 @@ template void product_selfadjoint(const MatrixType& m) r2 = RowVectorType::Random(rows); RhsMatrixType m4 = RhsMatrixType::Random(rows,10); - Scalar s1 = ei_random(), - s2 = ei_random(), - s3 = ei_random(); + Scalar s1 = internal::random(), + s2 = internal::random(), + s3 = internal::random(); m1 = (m1.adjoint() + m1).eval(); @@ -83,13 +83,13 @@ void test_product_selfadjoint() CALL_SUBTEST_1( product_selfadjoint(Matrix()) ); CALL_SUBTEST_2( product_selfadjoint(Matrix()) ); CALL_SUBTEST_3( product_selfadjoint(Matrix3d()) ); - s = ei_random(1,150); + s = internal::random(1,150); CALL_SUBTEST_4( product_selfadjoint(MatrixXcf(s, s)) ); - s = ei_random(1,150); + s = internal::random(1,150); CALL_SUBTEST_5( product_selfadjoint(MatrixXcd(s,s)) ); - s = ei_random(1,320); + s = internal::random(1,320); CALL_SUBTEST_6( product_selfadjoint(MatrixXd(s,s)) ); - s = ei_random(1,320); + s = internal::random(1,320); CALL_SUBTEST_7( product_selfadjoint(Matrix(s,s)) ); } } -- cgit v1.2.3