Lines Matching refs:llt
131 m2 += symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
132 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
134 m2 -= symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
135 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
137 m2.noalias() += symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
138 VERIFY_IS_APPROX(m2, m1 + symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
140 m2.noalias() -= symmLo.template selfadjointView<Lower>().llt().solve(matB); in cholesky()
141 VERIFY_IS_APPROX(m2, m1 - symmLo.template selfadjointView<Lower>().llt().solve(matB)); in cholesky()
461 LLT<MatrixType> llt; in cholesky_verify_assert() local
462 VERIFY_RAISES_ASSERT(llt.matrixL()) in cholesky_verify_assert()
463 VERIFY_RAISES_ASSERT(llt.matrixU()) in cholesky_verify_assert()
464 VERIFY_RAISES_ASSERT(llt.solve(tmp)) in cholesky_verify_assert()
465 VERIFY_RAISES_ASSERT(llt.solveInPlace(&tmp)) in cholesky_verify_assert()