mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
triangularView<UpperTriangular> --> triangularView<Upper>
Necessary after c5d7c9f0de
(big delete of "triangular").
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user