| 605 | SparseQR_QProduct(const SparseQRType& qr, const Derived& other, bool transpose) : |
| 606 | m_qr(qr),m_other(other),m_transpose(transpose) {} |
| 607 | inline Index rows() const { return m_transpose ? m_qr.rows() : m_qr.cols(); } |
| 608 | inline Index cols() const { return m_other.cols(); } |
| 609 | |
| 610 | // Assign to a vector |