• Home
  • Raw
  • Download

Lines Matching refs:num_rows

111   set_rhs(new double[lhs()->num_rows()]);  in InitStorage()
126 const int num_rows = m->num_rows(); in SolveReducedLinearSystem() local
130 if (num_rows == 0) { in SolveReducedLinearSystem()
138 ConstMatrixRef(m->values(), num_rows, num_rows) in SolveReducedLinearSystem()
148 VectorRef(solution, num_rows) = llt.solve(ConstVectorRef(rhs(), num_rows)); in SolveReducedLinearSystem()
150 VectorRef(solution, num_rows) = ConstVectorRef(rhs(), num_rows); in SolveReducedLinearSystem()
152 LAPACK::SolveInPlaceUsingCholesky(num_rows, in SolveReducedLinearSystem()
248 set_rhs(new double[lhs()->num_rows()]); in InitStorage()
293 const int num_rows = tsm->num_rows(); in SolveReducedLinearSystemUsingSuiteSparse()
297 if (num_rows == 0) { in SolveReducedLinearSystemUsingSuiteSparse()
355 ss_.CreateDenseVector(const_cast<double*>(rhs()), num_rows, num_rows); in SolveReducedLinearSystemUsingSuiteSparse()
368 VectorRef(solution, num_rows) in SolveReducedLinearSystemUsingSuiteSparse()
369 = VectorRef(static_cast<double*>(cholmod_solution->x), num_rows); in SolveReducedLinearSystemUsingSuiteSparse()
401 const int num_rows = tsm->num_rows(); in SolveReducedLinearSystemUsingCXSparse()
405 if (num_rows == 0) { in SolveReducedLinearSystemUsingCXSparse()
410 VectorRef(solution, num_rows) = ConstVectorRef(rhs(), num_rows); in SolveReducedLinearSystemUsingCXSparse()
460 const int num_rows = tsm->num_rows(); in SolveReducedLinearSystemUsingEigen()
464 if (num_rows == 0) { in SolveReducedLinearSystemUsingEigen()
472 crsm.num_rows(), in SolveReducedLinearSystemUsingEigen()
473 crsm.num_rows(), in SolveReducedLinearSystemUsingEigen()
505 VectorRef(solution, num_rows) = in SolveReducedLinearSystemUsingEigen()
506 simplicial_ldlt_->solve(ConstVectorRef(rhs(), num_rows)); in SolveReducedLinearSystemUsingEigen()