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_syrk.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'test/product_syrk.cpp') diff --git a/test/product_syrk.cpp b/test/product_syrk.cpp index 575b21cac..951a254ed 100644 --- a/test/product_syrk.cpp +++ b/test/product_syrk.cpp @@ -39,11 +39,11 @@ template void syrk(const MatrixType& m) MatrixType m1 = MatrixType::Random(rows, cols), m2 = MatrixType::Random(rows, cols); - Rhs1 rhs1 = Rhs1::Random(ei_random(1,320), cols); - Rhs2 rhs2 = Rhs2::Random(rows, ei_random(1,320)); - Rhs3 rhs3 = Rhs3::Random(ei_random(1,320), rows); + Rhs1 rhs1 = Rhs1::Random(internal::random(1,320), cols); + Rhs2 rhs2 = Rhs2::Random(rows, internal::random(1,320)); + Rhs3 rhs3 = Rhs3::Random(internal::random(1,320), rows); - Scalar s1 = ei_random(); + Scalar s1 = internal::random(); m2.setZero(); VERIFY_IS_APPROX((m2.template selfadjointView().rankUpdate(rhs2,s1)._expression()), @@ -75,13 +75,13 @@ void test_product_syrk() for(int i = 0; i < g_repeat ; i++) { int s; - s = ei_random(1,320); + s = internal::random(1,320); CALL_SUBTEST_1( syrk(MatrixXf(s, s)) ); - s = ei_random(1,320); + s = internal::random(1,320); CALL_SUBTEST_2( syrk(MatrixXd(s, s)) ); - s = ei_random(1,200); + s = internal::random(1,200); CALL_SUBTEST_3( syrk(MatrixXcf(s, s)) ); - s = ei_random(1,200); + s = internal::random(1,200); CALL_SUBTEST_4( syrk(MatrixXcd(s, s)) ); } } -- cgit v1.2.3