mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-11 19:29:02 +08:00
triangularView<UpperTriangular> --> triangularView<Upper>
Necessary after c5d7c9f0def693e77797e6e43cb1fd2e7f8ae2fd (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;
|
const MatrixType N = MatrixType::Identity(m_Arows, m_Arows) - m_Ashifted;
|
||||||
VectorType e = VectorType::Ones(m_Arows);
|
VectorType e = VectorType::Ones(m_Arows);
|
||||||
N.template triangularView<UpperTriangular>().solveInPlace(e);
|
N.template triangularView<Upper>().solveInPlace(e);
|
||||||
m_mu = e.cwiseAbs().maxCoeff();
|
m_mu = e.cwiseAbs().maxCoeff();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user