Remove unimplemented option to use QR factorization in BandMatrix

This commit is contained in:
Ray Speth 2015-07-16 10:52:42 -04:00
parent be0324e2cf
commit c08c365ebb
2 changed files with 0 additions and 15 deletions

View file

@ -292,15 +292,6 @@ public:
*/
virtual size_t checkColumns(doublereal& valueSmall) const;
//! Change the way the matrix is factored
/*!
* @param fAlgorithm integer
* 0 LU factorization
* 1 QR factorization
*/
virtual void useFactorAlgorithm(int fAlgorithm);
protected:
//! Matrix data

View file

@ -423,10 +423,4 @@ doublereal* const* BandMatrix::colPts()
return &(m_colPtrs[0]);
}
void BandMatrix::useFactorAlgorithm(int fAlgorithm)
{
// useQR_ = fAlgorithm;
}
}