Home
last modified time | relevance | path

Searched refs:symmLo (Results 1 – 1 of 1) sorted by relevance

/external/eigen/test/
Dcholesky.cpp35 MatrixType symmLo = symm.template triangularView<Lower>(); in test_chol_update() local
39 CholType<MatrixType,Lower> chollo(symmLo); in test_chol_update()
92 SquareMatrixType symmLo = symm.template triangularView<Lower>(); in cholesky() local
94 LLT<SquareMatrixType,Lower> chollo(symmLo); in cholesky()
109 MatrixType neg = -symmLo; in cholesky()
121 m2 += symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
122 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
124 m2 -= symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
125 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
127 m2.noalias() += symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
[all …]