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/geo_hyperplane.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/geo_hyperplane.cpp') diff --git a/test/geo_hyperplane.cpp b/test/geo_hyperplane.cpp index bed6f5b40..23027f38e 100644 --- a/test/geo_hyperplane.cpp +++ b/test/geo_hyperplane.cpp @@ -51,8 +51,8 @@ template void hyperplane(const HyperplaneType& _plane) HyperplaneType pl1(n1, p1); HyperplaneType pl2 = pl1; - Scalar s0 = ei_random(); - Scalar s1 = ei_random(); + Scalar s0 = internal::random(); + Scalar s1 = internal::random(); VERIFY_IS_APPROX( n1.dot(n1), Scalar(1) ); @@ -103,8 +103,8 @@ template void lines() Vector center = Vector::Random(); Vector u = Vector::Random(); Vector v = Vector::Random(); - Scalar a = ei_random(); - while (ei_abs(a-1) < 1e-4) a = ei_random(); + Scalar a = internal::random(); + while (internal::abs(a-1) < 1e-4) a = internal::random(); while (u.norm() < 1e-4) u = Vector::Random(); while (v.norm() < 1e-4) v = Vector::Random(); -- cgit v1.2.3