• Home
  • Raw
  • Download

Lines Matching refs:solve

96     vecX = chollo.solve(vecB);  in cholesky()
98 matX = chollo.solve(matB); in cholesky()
104 vecX = cholup.solve(vecB); in cholesky()
106 matX = cholup.solve(matB); 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()
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()
148 vecX = ldltlo.solve(vecB); in cholesky()
150 matX = ldltlo.solve(matB); in cholesky()
155 vecX = ldltup.solve(vecB); in cholesky()
157 matX = ldltup.solve(matB); in cholesky()
171 VERIFY_EVALUATION_COUNT(matX = ldltlo.solve(matX), 0); in cholesky()
172 VERIFY_IS_APPROX(matX, ldltlo.solve(matB).eval()); in cholesky()
176 VERIFY_EVALUATION_COUNT(matX = ldltup.solve(matX), 0); in cholesky()
177 VERIFY_IS_APPROX(matX, ldltup.solve(matB).eval()); in cholesky()
196 vecX = ldltlo.solve(vecB); in cholesky()
212 vecX = ldltlo.solve(vecB); in cholesky()
231 vecX = ldltlo.solve(vecB); in cholesky()
274 vecX = chollo.solve(vecB); in cholesky_cplx()
293 vecX = ldltlo.solve(vecB); in cholesky_cplx()
312 VectorType vecX = matA.ldlt().solve(vecB); in cholesky_bug241()
364 VERIFY_RAISES_ASSERT(llt.solve(tmp)) in cholesky_verify_assert()
373 VERIFY_RAISES_ASSERT(ldlt.solve(tmp)) in cholesky_verify_assert()