Lines Matching refs:m_matrix
99 inline Index cols() const { return m_matrix.cols(); }
100 inline Index rows() const { return m_matrix.rows(); }
145 …s << " L: " << ((total+=(m_matrix.cols()+1) * sizeof(int) + m_matrix.nonZeros()*(sizeof(in…
159 eigen_assert(m_matrix.rows()==b.rows());
169 if(m_matrix.nonZeros()>0) // otherwise L==I
175 if (m_matrix.nonZeros()>0) // otherwise U==I
255 CholMatrixType m_matrix;
354 return Traits::getL(Base::m_matrix);
360 return Traits::getU(Base::m_matrix);
395 Scalar detL = Base::m_matrix.diagonal().prod();
451 return Traits::getL(Base::m_matrix);
457 return Traits::getU(Base::m_matrix);
549 return Base::m_matrix;
592 eigen_assert(Base::m_matrix.rows()==b.rows());
602 if(Base::m_matrix.nonZeros()>0) // otherwise L==I
605 LDLTTraits::getL(Base::m_matrix).solveInPlace(dest);
607 LLTTraits::getL(Base::m_matrix).solveInPlace(dest);
613 if (Base::m_matrix.nonZeros()>0) // otherwise I==I
616 LDLTTraits::getU(Base::m_matrix).solveInPlace(dest);
618 LLTTraits::getU(Base::m_matrix).solveInPlace(dest);
640 Scalar detL = Diagonal<const CholMatrixType>(Base::m_matrix).prod();