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/prec_inverse_4x4.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/prec_inverse_4x4.cpp') diff --git a/test/prec_inverse_4x4.cpp b/test/prec_inverse_4x4.cpp index 8b1aa8869..c40cf7399 100644 --- a/test/prec_inverse_4x4.cpp +++ b/test/prec_inverse_4x4.cpp @@ -53,7 +53,7 @@ template void inverse_general_4x4(int repeat) RealScalar absdet; do { m = MatrixType::Random(); - absdet = ei_abs(m.determinant()); + absdet = internal::abs(m.determinant()); } while(absdet < NumTraits::epsilon()); MatrixType inv = m.inverse(); double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / NumTraits::epsilon() ); -- cgit v1.2.3