Lines Matching refs:vecB
76 VectorType vecB = VectorType::Random(rows), vecX(rows); in cholesky() local
96 vecX = chollo.solve(vecB); in cholesky()
97 VERIFY_IS_APPROX(symm * vecX, vecB); in cholesky()
104 vecX = cholup.solve(vecB); in cholesky()
105 VERIFY_IS_APPROX(symm * vecX, vecB); in cholesky()
148 vecX = ldltlo.solve(vecB); in cholesky()
149 VERIFY_IS_APPROX(symm * vecX, vecB); in cholesky()
155 vecX = ldltup.solve(vecB); in cholesky()
156 VERIFY_IS_APPROX(symm * vecX, vecB); in cholesky()
192 vecB = A * vecX; in cholesky()
196 vecX = ldltlo.solve(vecB); in cholesky()
197 VERIFY_IS_APPROX(A * vecX, vecB); in cholesky()
208 vecB = A * vecX; in cholesky()
212 vecX = ldltlo.solve(vecB); in cholesky()
213 VERIFY_IS_APPROX(A * vecX, vecB); in cholesky()
227 vecB = A * vecX; in cholesky()
231 vecX = ldltlo.solve(vecB); in cholesky()
232 VERIFY_IS_APPROX(A * vecX, vecB); in cholesky()
259 VectorType vecB = VectorType::Random(rows), vecX(rows); in cholesky_cplx() local
274 vecX = chollo.solve(vecB); in cholesky_cplx()
275 VERIFY_IS_APPROX(symm * vecX, vecB); in cholesky_cplx()
293 vecX = ldltlo.solve(vecB); in cholesky_cplx()
294 VERIFY_IS_APPROX(symm * vecX, vecB); in cholesky_cplx()
310 VectorType vecB; in cholesky_bug241() local
311 vecB << 1, 1; in cholesky_bug241()
312 VectorType vecX = matA.ldlt().solve(vecB); in cholesky_bug241()
313 VERIFY_IS_APPROX(matA * vecX, vecB); in cholesky_bug241()