Home | History | Annotate | Download | only in test

Lines Matching refs:cols

19     x = solver.derived().solveWithGuess(b,g) + Result::Zero(x.rows(), x.cols());
31 x = solver.derived().solve(b) + Result::Zero(x.rows(), x.cols());
50 Rhs x(A.cols(), b.cols());
86 MappedSparseMatrix<Scalar,Mat::Options,StorageIndex> Am(A.rows(), A.cols(), A.nonZeros(), const_cast<StorageIndex*>(A.outerIndexPtr()), const_cast<StorageIndex*>(A.innerIndexPtr()), const_cast<Scalar*>(A.valuePtr()));
91 Map<DenseRhs> xm(dx.data(), dx.rows(), dx.cols());
92 Map<const DenseRhs> bm(db.data(), db.rows(), db.cols());
104 Rhs x(b.rows(), b.cols());
113 DenseRhs x(refX.rows(), refX.cols());
116 x.block(0,0,x.rows(),x.cols()) = solver.solve(db.block(0,0,db.rows(),db.cols()));
150 Rhs x(A.cols(), b.cols());
328 halfA.resize(A.rows(), A.cols());
335 << " (" << A.rows() << "x" << A.cols() << ") using " << typeid(Solver).name() << "..." << std::endl;
459 << " (" << A.rows() << "x" << A.cols() << ") using " << typeid(Solver).name() << "..." << std::endl;
523 int cols = internal::random<int>(1,rows);
524 double density = (std::max)(8./(rows*cols), 0.01);
526 A.resize(rows,cols);
527 dA.resize(rows,cols);