Lines Matching refs:llt
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()
128 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
130 m2.noalias() -= symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
131 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
361 LLT<MatrixType> llt; in cholesky_verify_assert() local
362 VERIFY_RAISES_ASSERT(llt.matrixL()) in cholesky_verify_assert()
363 VERIFY_RAISES_ASSERT(llt.matrixU()) in cholesky_verify_assert()
364 VERIFY_RAISES_ASSERT(llt.solve(tmp)) in cholesky_verify_assert()
365 VERIFY_RAISES_ASSERT(llt.solveInPlace(&tmp)) in cholesky_verify_assert()