Lines Matching refs:m_matrix
68 inline Index cols() const { return m_matrix.cols(); } in cols()
69 inline Index rows() const { return m_matrix.rows(); } in rows()
142 …s << " L: " << ((total+=(m_matrix.cols()+1) * sizeof(int) + m_matrix.nonZeros()*(sizeof(in… in dumpMemory()
156 eigen_assert(m_matrix.rows()==b.rows()); in _solve()
166 if(m_matrix.nonZeros()>0) // otherwise L==I in _solve()
172 if (m_matrix.nonZeros()>0) // otherwise U==I in _solve()
233 CholMatrixType m_matrix; variable
330 return Traits::getL(Base::m_matrix);
336 return Traits::getU(Base::m_matrix);
371 Scalar detL = Base::m_matrix.diagonal().prod();
425 return Traits::getL(Base::m_matrix);
431 return Traits::getU(Base::m_matrix);
523 return Base::m_matrix;
566 eigen_assert(Base::m_matrix.rows()==b.rows());
576 if(Base::m_matrix.nonZeros()>0) // otherwise L==I
579 LDLTTraits::getL(Base::m_matrix).solveInPlace(dest);
581 LLTTraits::getL(Base::m_matrix).solveInPlace(dest);
587 if (Base::m_matrix.nonZeros()>0) // otherwise I==I
590 LDLTTraits::getU(Base::m_matrix).solveInPlace(dest);
592 LLTTraits::getU(Base::m_matrix).solveInPlace(dest);
607 Scalar detL = Diagonal<const CholMatrixType>(Base::m_matrix).prod();