aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/test/matrix_function.cpp
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2013-07-26 13:51:10 +0100
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2013-07-26 13:51:10 +0100
commite43934d60f20d3f3884493d542bdcb0cb330c39a (patch)
tree17bba87b1e1f12248a155ac35162703256160883 /unsupported/test/matrix_function.cpp
parent75edc7cc8bcc1bdf5a3defddc2f751062ec49ec1 (diff)
MatrixFunctions: Clean up StemFunction.h
Diffstat (limited to 'unsupported/test/matrix_function.cpp')
-rw-r--r--unsupported/test/matrix_function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unsupported/test/matrix_function.cpp b/unsupported/test/matrix_function.cpp
index 3c76cfb65..487d5a9b8 100644
--- a/unsupported/test/matrix_function.cpp
+++ b/unsupported/test/matrix_function.cpp
@@ -102,7 +102,7 @@ void testMatrixExponential(const MatrixType& A)
typedef typename NumTraits<Scalar>::Real RealScalar;
typedef std::complex<RealScalar> ComplexScalar;
- VERIFY_IS_APPROX(A.exp(), A.matrixFunction(StdStemFunctions<ComplexScalar>::exp));
+ VERIFY_IS_APPROX(A.exp(), A.matrixFunction(internal::stem_function_exp<ComplexScalar>));
}
template<typename MatrixType>