From 2cd32cad2782c467316297cec1a2b0ddff89c686 Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Fri, 26 Feb 2016 13:21:44 +0000 Subject: [PATCH] Reverted previous commit since it caused more problems than it solved --- unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h index 68456f579..bbb7e5776 100644 --- a/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +++ b/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h @@ -257,8 +257,7 @@ struct matrix_exp_computeUV static void run(const MatrixType& arg, MatrixType& U, MatrixType& V, int& squarings) { #if LDBL_MANT_DIG == 53 // double precision - - matrix_exp_computeUV::run(arg.cast(), U.cast(), squarings); + matrix_exp_computeUV::run(arg, U, V, squarings); #else