Lines Matching refs:solve
89 vecX = chollo.solve(vecB); in cholesky()
91 matX = chollo.solve(matB); in cholesky()
94 const MatrixType symmLo_inverse = chollo.solve(MatrixType::Identity(rows,cols)); in cholesky()
105 vecX = cholup.solve(vecB); in cholesky()
107 matX = cholup.solve(matB); in cholesky()
112 const MatrixType symmUp_inverse = cholup.solve(MatrixType::Identity(rows,cols)); in cholesky()
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()
159 vecX = ldltlo.solve(vecB); in cholesky()
161 matX = ldltlo.solve(matB); in cholesky()
164 const MatrixType symmLo_inverse = ldltlo.solve(MatrixType::Identity(rows,cols)); in cholesky()
176 vecX = ldltup.solve(vecB); in cholesky()
178 matX = ldltup.solve(matB); in cholesky()
183 const MatrixType symmUp_inverse = ldltup.solve(MatrixType::Identity(rows,cols)); in cholesky()
200 VERIFY_EVALUATION_COUNT(matX = ldltlo.solve(matX), 0); in cholesky()
201 VERIFY_IS_APPROX(matX, ldltlo.solve(matB).eval()); in cholesky()
205 VERIFY_EVALUATION_COUNT(matX = ldltup.solve(matX), 0); in cholesky()
206 VERIFY_IS_APPROX(matX, ldltup.solve(matB).eval()); in cholesky()
225 vecX = ldltlo.solve(vecB); in cholesky()
241 vecX = ldltlo.solve(vecB); in cholesky()
262 vecX = ldltlo.solve(vecB); in cholesky()
318 vecX = chollo.solve(vecB); in cholesky_cplx()
338 vecX = ldltlo.solve(vecB); in cholesky_cplx()
357 VectorType vecX = matA.ldlt().solve(vecB); in cholesky_bug241()
464 VERIFY_RAISES_ASSERT(llt.solve(tmp)) in cholesky_verify_assert()
473 VERIFY_RAISES_ASSERT(ldlt.solve(tmp)) in cholesky_verify_assert()