Lines Matching refs:solution
118 DenseSchurComplementSolver::SolveReducedLinearSystem(double* solution) { in SolveReducedLinearSystem() argument
148 VectorRef(solution, num_rows) = llt.solve(ConstVectorRef(rhs(), num_rows)); in SolveReducedLinearSystem()
150 VectorRef(solution, num_rows) = ConstVectorRef(rhs(), num_rows); in SolveReducedLinearSystem()
154 solution, in SolveReducedLinearSystem()
252 SparseSchurComplementSolver::SolveReducedLinearSystem(double* solution) { in SolveReducedLinearSystem() argument
255 return SolveReducedLinearSystemUsingSuiteSparse(solution); in SolveReducedLinearSystem()
257 return SolveReducedLinearSystemUsingCXSparse(solution); in SolveReducedLinearSystem()
259 return SolveReducedLinearSystemUsingEigen(solution); in SolveReducedLinearSystem()
273 double* solution) { in SolveReducedLinearSystemUsingSuiteSparse() argument
368 VectorRef(solution, num_rows) in SolveReducedLinearSystemUsingSuiteSparse()
380 double* solution) { in SolveReducedLinearSystemUsingCXSparse() argument
410 VectorRef(solution, num_rows) = ConstVectorRef(rhs(), num_rows); in SolveReducedLinearSystemUsingCXSparse()
421 } else if (!cxsparse_.SolveCholesky(lhs, cxsparse_factor_, solution)) { in SolveReducedLinearSystemUsingCXSparse()
436 double* solution) { in SolveReducedLinearSystemUsingEigen() argument
505 VectorRef(solution, num_rows) = in SolveReducedLinearSystemUsingEigen()