triangularView<UpperTriangular> --> triangularView<Upper>
Necessary after c5d7c9f0de
(big delete of "triangular").
This commit is contained in:
parent
ef0ed5b271
commit
3407e8a67e
@ -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();
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user