Macaulay2 Engine
Loading...
Searching...
No Matches

◆ DMatLUinPlace()

template<class RingType>
DMatLUinPlace< RingType >::DMatLUinPlace ( const Mat & A)

Definition at line 162 of file dmat-lu-inplace.hpp.

163 : mLU(A), // copies A
164 mSign(true), // sign = 1
165 mIsDone(false)
166{
167 for (size_t i = 0; i < A.numRows(); i++) mPerm.push_back(i);
168}
long numRows() const
std::vector< size_t > mPerm

References mIsDone, mLU, mPerm, mSign, and DMat< ACoeffRing >::numRows().