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/cholesky.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/cholesky.cpp') diff --git a/test/cholesky.cpp b/test/cholesky.cpp index 46140bb11..0a0424aa1 100644 --- a/test/cholesky.cpp +++ b/test/cholesky.cpp @@ -78,7 +78,7 @@ template void cholesky(const MatrixType& m) //symm.template part().setZero(); #ifdef HAS_GSL -// if (ei_is_same_type::ret) +// if (internal::is_same_type::ret) // { // typedef GslTraits Gsl; // typename Gsl::Matrix gMatA=0, gSymm=0; @@ -128,7 +128,7 @@ template void cholesky(const MatrixType& m) // LDLT { - int sign = ei_random()%2 ? 1 : -1; + int sign = internal::random()%2 ? 1 : -1; if(sign == -1) { @@ -226,7 +226,7 @@ template void cholesky_cplx(const MatrixType& m) // LDLT { - int sign = ei_random()%2 ? 1 : -1; + int sign = internal::random()%2 ? 1 : -1; if(sign == -1) { @@ -273,9 +273,9 @@ void test_cholesky() CALL_SUBTEST_3( cholesky(Matrix2d()) ); CALL_SUBTEST_4( cholesky(Matrix3f()) ); CALL_SUBTEST_5( cholesky(Matrix4d()) ); - s = ei_random(1,200); + s = internal::random(1,200); CALL_SUBTEST_2( cholesky(MatrixXd(s,s)) ); - s = ei_random(1,100); + s = internal::random(1,100); CALL_SUBTEST_6( cholesky_cplx(MatrixXcd(s,s)) ); } -- cgit v1.2.3