Searched refs:idx_b (Results 1 - 1 of 1) sorted by relevance

/external/ceres-solver/internal/ceres/
H A Dincomplete_lq_factorization.cc81 int idx_b = b_rows[row_b]; local
83 while (idx_a < row_a_end && idx_b < row_b_end) {
84 if (a_cols[idx_a] == b_cols[idx_b]) {
85 dot_product += a_values[idx_a++] * b_values[idx_b++];
88 while (a_cols[idx_a] < b_cols[idx_b] && idx_a < row_a_end) {
92 while (a_cols[idx_a] > b_cols[idx_b] && idx_b < row_b_end) {
93 ++idx_b;

Completed in 124 milliseconds