aboutsummaryrefslogtreecommitdiffhomepage
path: root/unsupported/Eigen
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-01-08 12:49:46 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2010-01-08 12:49:46 +0000
commit3407e8a67eadf419c7b9efb046b865070470b931 (patch)
treebe1deba5dcdbdb2a0f024b0fdb3d0e97ceccdf40 /unsupported/Eigen
parentef0ed5b2717745751210b44fefa7729f3e455812 (diff)
triangularView<UpperTriangular> --> triangularView<Upper>
Necessary after c5d7c9f0def693e77797e6e43cb1fd2e7f8ae2fd (big delete of "triangular").
Diffstat (limited to 'unsupported/Eigen')
-rw-r--r--unsupported/Eigen/src/MatrixFunctions/MatrixFunctionAtomic.h2
1 files changed, 1 insertions, 1 deletions
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<MatrixType>::computeMu()
{
const MatrixType N = MatrixType::Identity(m_Arows, m_Arows) - m_Ashifted;
VectorType e = VectorType::Ones(m_Arows);
- N.template triangularView<UpperTriangular>().solveInPlace(e);
+ N.template triangularView<Upper>().solveInPlace(e);
m_mu = e.cwiseAbs().maxCoeff();
}