Home | History | Annotate | Download | only in ceres

Lines Matching refs:row

259   // Iterate over each row of the matrix. The block structure of the
261 // blocks. Thus all row blocks containing an e_block/point occur
263 // parameter block in each row block. These structural assumptions
282 const CompressedRow& row = bs.rows[r];
283 if (row.cells.front().block_id != e_block_id) {
287 // Iterate over the blocks in the row, ignoring the first block
290 for (int c = 1; c < row.cells.size(); ++c) {
291 const Cell& cell = row.cells[c];
313 const CompressedRow& row = bs.rows[r];
314 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
315 for (int i = 0; i < row.cells.size(); ++i) {
316 const int block1 = row.cells[i].block_id - num_eliminate_blocks;
317 for (int j = 0; j < row.cells.size(); ++j) {
318 const int block2 = row.cells[j].block_id - num_eliminate_blocks;