Home | History | Annotate | Download | only in ceres

Lines Matching refs:rhs_

90   if (rhs_.rows() != lhs_.rows()) {
91 rhs_.resize(lhs_.rows());
93 rhs_.setZero();
94 rhs_.head(num_rows) = ConstVectorRef(b, num_rows);
111 rhs_.data(),
115 VectorRef(x, num_cols) = rhs_.head(num_cols);
141 if (rhs_.rows() != augmented_num_rows) {
142 rhs_.resize(augmented_num_rows);
143 rhs_.setZero();
145 rhs_.head(num_rows) = ConstVectorRef(b, num_rows);
149 VectorRef(x, num_cols) = A->matrix().householderQr().solve(rhs_);