From 170128770a2c934e9af8cda3642e3fbd44048668 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 26 Feb 2009 10:09:23 +0000 Subject: compilation fix + test orho methods for complex --- test/geo_orthomethods.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'test/geo_orthomethods.cpp') diff --git a/test/geo_orthomethods.cpp b/test/geo_orthomethods.cpp index 1485877d0..ae9f73518 100644 --- a/test/geo_orthomethods.cpp +++ b/test/geo_orthomethods.cpp @@ -63,6 +63,7 @@ template void orthomethods_3() template void orthomethods(int size=Size) { + typedef typename NumTraits::Real RealScalar; typedef Matrix VectorType; typedef Matrix Matrix3N; typedef Matrix MatrixN3; @@ -74,7 +75,7 @@ template void orthomethods(int size=Size) // unitOrthogonal VERIFY_IS_MUCH_SMALLER_THAN(v0.unitOrthogonal().dot(v0), Scalar(1)); - VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), Scalar(1)); + VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), RealScalar(1)); if (size>3) { @@ -82,7 +83,7 @@ template void orthomethods(int size=Size) v0.end(size-3).setRandom(); VERIFY_IS_MUCH_SMALLER_THAN(v0.unitOrthogonal().dot(v0), Scalar(1)); - VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), Scalar(1)); + VERIFY_IS_APPROX(v0.unitOrthogonal().norm(), RealScalar(1)); } // colwise/rowwise cross product @@ -110,7 +111,7 @@ void test_geo_orthomethods() CALL_SUBTEST( (orthomethods()) ); CALL_SUBTEST( (orthomethods()) ); CALL_SUBTEST( (orthomethods()) ); - CALL_SUBTEST( (orthomethods()) ); + CALL_SUBTEST( (orthomethods,8>()) ); CALL_SUBTEST( (orthomethods(36)) ); CALL_SUBTEST( (orthomethods(35)) ); } -- cgit v1.2.3