Home | History | Annotate | Download | only in ceres

Lines Matching defs:row

238   // Iterate over each row of the matrix. The block structure of the
240 // blocks. Thus all row blocks containing an e_block/point occur
242 // parameter block in each row block. These structural assumptions
261 const CompressedRow& row = bs.rows[r];
262 if (row.cells.front().block_id != e_block_id) {
266 // Iterate over the blocks in the row, ignoring the first block
269 for (int c = 1; c < row.cells.size(); ++c) {
270 const Cell& cell = row.cells[c];
292 const CompressedRow& row = bs.rows[r];
293 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
294 for (int i = 0; i < row.cells.size(); ++i) {
295 const int block1 = row.cells[i].block_id - num_eliminate_blocks;
296 for (int j = 0; j < row.cells.size(); ++j) {
297 const int block2 = row.cells[j].block_id - num_eliminate_blocks;