Lines Matching refs:ss_
170 ss_.Free(factor_); in ~SparseSchurComplementSolver()
310 cholmod_lhs = ss_.CreateSparseMatrix(tsm); in SolveReducedLinearSystemUsingSuiteSparse()
314 factor_ = ss_.BlockAnalyzeCholesky(cholmod_lhs, in SolveReducedLinearSystemUsingSuiteSparse()
326 cholmod_lhs = ss_.CreateSparseMatrixTranspose(tsm); in SolveReducedLinearSystemUsingSuiteSparse()
330 factor_ = ss_.AnalyzeCholeskyWithNaturalOrdering(cholmod_lhs, in SolveReducedLinearSystemUsingSuiteSparse()
336 ss_.Free(cholmod_lhs); in SolveReducedLinearSystemUsingSuiteSparse()
344 ss_.Cholesky(cholmod_lhs, factor_, &summary.message); in SolveReducedLinearSystemUsingSuiteSparse()
346 ss_.Free(cholmod_lhs); in SolveReducedLinearSystemUsingSuiteSparse()
355 ss_.CreateDenseVector(const_cast<double*>(rhs()), num_rows, num_rows); in SolveReducedLinearSystemUsingSuiteSparse()
356 cholmod_dense* cholmod_solution = ss_.Solve(factor_, in SolveReducedLinearSystemUsingSuiteSparse()
359 ss_.Free(cholmod_rhs); in SolveReducedLinearSystemUsingSuiteSparse()
370 ss_.Free(cholmod_solution); in SolveReducedLinearSystemUsingSuiteSparse()