aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/matrixExponential.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'unsupported/test/matrixExponential.cpp')
-rw-r--r--unsupported/test/matrixExponential.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/unsupported/test/matrixExponential.cpp b/unsupported/test/matrixExponential.cpp
index 7d65a701a..f7ee71768 100644
--- a/unsupported/test/matrixExponential.cpp
+++ b/unsupported/test/matrixExponential.cpp
@@ -110,18 +110,18 @@ void randomTest(const MatrixType& m, double tol)
void test_matrixExponential()
{
- CALL_SUBTEST(test2dRotation<double>(1e-14));
- CALL_SUBTEST(test2dRotation<float>(1e-5));
- CALL_SUBTEST(test2dHyperbolicRotation<double>(1e-14));
- CALL_SUBTEST(test2dHyperbolicRotation<float>(1e-5));
- CALL_SUBTEST(testPascal<float>(1e-5));
- CALL_SUBTEST(testPascal<double>(1e-14));
- CALL_SUBTEST(randomTest(Matrix2d(), 1e-13));
- CALL_SUBTEST(randomTest(Matrix<double,3,3,RowMajor>(), 1e-13));
- CALL_SUBTEST(randomTest(Matrix4cd(), 1e-13));
- CALL_SUBTEST(randomTest(MatrixXd(8,8), 1e-13));
- CALL_SUBTEST(randomTest(Matrix2f(), 1e-4));
- CALL_SUBTEST(randomTest(Matrix3cf(), 1e-4));
- CALL_SUBTEST(randomTest(Matrix4f(), 1e-4));
- CALL_SUBTEST(randomTest(MatrixXf(8,8), 1e-4));
+ CALL_SUBTEST_2(test2dRotation<double>(1e-14));
+ CALL_SUBTEST_1(test2dRotation<float>(1e-5));
+ CALL_SUBTEST_2(test2dHyperbolicRotation<double>(1e-14));
+ CALL_SUBTEST_1(test2dHyperbolicRotation<float>(1e-5));
+ CALL_SUBTEST_1(testPascal<float>(1e-5));
+ CALL_SUBTEST_2(testPascal<double>(1e-14));
+ CALL_SUBTEST_2(randomTest(Matrix2d(), 1e-13));
+ CALL_SUBTEST_2(randomTest(Matrix<double,3,3,RowMajor>(), 1e-13));
+ CALL_SUBTEST_3(randomTest(Matrix4cd(), 1e-13));
+ CALL_SUBTEST_4(randomTest(MatrixXd(8,8), 1e-13));
+ CALL_SUBTEST_1(randomTest(Matrix2f(), 1e-4));
+ CALL_SUBTEST_5(randomTest(Matrix3cf(), 1e-4));
+ CALL_SUBTEST_1(randomTest(Matrix4f(), 1e-4));
+ CALL_SUBTEST_6(randomTest(MatrixXf(8,8), 1e-4));
}