Lines Matching refs:m_mapL
707 explicit SparseLUMatrixLReturnType(const MappedSupernodalType& mapL) : m_mapL(mapL) in SparseLUMatrixLReturnType()
709 Index rows() { return m_mapL.rows(); } in rows()
710 Index cols() { return m_mapL.cols(); } in cols()
714 m_mapL.solveInPlace(X); in solveInPlace()
716 const MappedSupernodalType& m_mapL; member
724 : m_mapL(mapL),m_mapU(mapU) in SparseLUMatrixUReturnType()
726 Index rows() { return m_mapL.rows(); } in rows()
727 Index cols() { return m_mapL.cols(); } in cols()
734 for (Index k = m_mapL.nsuper(); k >= 0; k--) in solveInPlace()
736 Index fsupc = m_mapL.supToCol()[k]; in solveInPlace()
737 Index lda = m_mapL.colIndexPtr()[fsupc+1] - m_mapL.colIndexPtr()[fsupc]; // leading dimension in solveInPlace()
738 Index nsupc = m_mapL.supToCol()[k+1] - fsupc; in solveInPlace()
739 Index luptr = m_mapL.colIndexPtr()[fsupc]; in solveInPlace()
745 X(fsupc, j) /= m_mapL.valuePtr()[luptr]; in solveInPlace()
750 …Map<const Matrix<Scalar,Dynamic,Dynamic, ColMajor>, 0, OuterStride<> > A( &(m_mapL.valuePtr()[lupt… in solveInPlace()
769 const MatrixLType& m_mapL; member