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_symm.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'test/product_symm.cpp') diff --git a/test/product_symm.cpp b/test/product_symm.cpp index 5ddae30c0..21c2f605b 100644 --- a/test/product_symm.cpp +++ b/test/product_symm.cpp @@ -47,8 +47,8 @@ template void symm(int size = Size, in Rhs2 rhs2 = Rhs2::Random(othersize, rows), rhs22(othersize, rows), rhs23(othersize, rows); Rhs3 rhs3 = Rhs3::Random(cols, othersize), rhs32(cols, othersize), rhs33(cols, othersize); - Scalar s1 = ei_random(), - s2 = ei_random(); + Scalar s1 = internal::random(), + s2 = internal::random(); m2 = m1.template triangularView(); m3 = m2.template selfadjointView(); @@ -98,14 +98,14 @@ void test_product_symm() { for(int i = 0; i < g_repeat ; i++) { - CALL_SUBTEST_1(( symm(ei_random(1,320),ei_random(1,320)) )); - CALL_SUBTEST_2(( symm(ei_random(1,320),ei_random(1,320)) )); - CALL_SUBTEST_3(( symm,Dynamic,Dynamic>(ei_random(1,200),ei_random(1,200)) )); - CALL_SUBTEST_4(( symm,Dynamic,Dynamic>(ei_random(1,200),ei_random(1,200)) )); - - CALL_SUBTEST_5(( symm(ei_random(1,320)) )); - CALL_SUBTEST_6(( symm(ei_random(1,320)) )); - CALL_SUBTEST_7(( symm,Dynamic,1>(ei_random(1,320)) )); - CALL_SUBTEST_8(( symm,Dynamic,1>(ei_random(1,320)) )); + CALL_SUBTEST_1(( symm(internal::random(1,320),internal::random(1,320)) )); + CALL_SUBTEST_2(( symm(internal::random(1,320),internal::random(1,320)) )); + CALL_SUBTEST_3(( symm,Dynamic,Dynamic>(internal::random(1,200),internal::random(1,200)) )); + CALL_SUBTEST_4(( symm,Dynamic,Dynamic>(internal::random(1,200),internal::random(1,200)) )); + + CALL_SUBTEST_5(( symm(internal::random(1,320)) )); + CALL_SUBTEST_6(( symm(internal::random(1,320)) )); + CALL_SUBTEST_7(( symm,Dynamic,1>(internal::random(1,320)) )); + CALL_SUBTEST_8(( symm,Dynamic,1>(internal::random(1,320)) )); } } -- cgit v1.2.3