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/sparse_product.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/sparse_product.cpp') diff --git a/test/sparse_product.cpp b/test/sparse_product.cpp index d4809711c..ce42c5f52 100644 --- a/test/sparse_product.cpp +++ b/test/sparse_product.cpp @@ -36,8 +36,8 @@ template void sparse_product(const SparseMatrixType& typedef Matrix DenseMatrix; typedef Matrix DenseVector; - Scalar s1 = ei_random(); - Scalar s2 = ei_random(); + Scalar s1 = internal::random(); + Scalar s2 = internal::random(); // test matrix-matrix product { @@ -54,7 +54,7 @@ template void sparse_product(const SparseMatrixType& initSparse(density, refMat3, m3); initSparse(density, refMat4, m4); - int c = ei_random(0,rows-1); + int c = internal::random(0,rows-1); VERIFY_IS_APPROX(m4=m2*m3, refMat4=refMat2*refMat3); VERIFY_IS_APPROX(m4=m2.transpose()*m3, refMat4=refMat2.transpose()*refMat3); -- cgit v1.2.3