Home | History | Annotate | Download | only in ceres

Lines Matching refs:num_rows

55 TripletSparseMatrix::TripletSparseMatrix(int num_rows,
58 : num_rows_(num_rows),
66 CHECK_GE(num_rows, 0);
199 num_rows_ = num_rows_ + B.num_rows();
203 CHECK_EQ(B.num_rows(), num_rows_);
244 const double* values, int num_rows) {
246 new TripletSparseMatrix(num_rows, num_rows, num_rows);
247 for (int i = 0; i < num_rows; ++i) {
252 m->set_num_nonzeros(num_rows);