From 3407e8a67eadf419c7b9efb046b865070470b931 Mon Sep 17 00:00:00 2001 From: Jitse Niesen Date: Fri, 8 Jan 2010 12:49:46 +0000 Subject: [PATCH] triangularView --> triangularView Necessary after c5d7c9f0def693e77797e6e43cb1fd2e7f8ae2fd (big delete of "triangular"). --- unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h b/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h index a429b3392..d7409371b 100644 --- a/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h +++ b/unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h @@ -109,7 +109,7 @@ void MatrixFunctionAtomic::computeMu() { const MatrixType N = MatrixType::Identity(m_Arows, m_Arows) - m_Ashifted; VectorType e = VectorType::Ones(m_Arows); - N.template triangularView().solveInPlace(e); + N.template triangularView().solveInPlace(e); m_mu = e.cwiseAbs().maxCoeff(); }