Skip to content

Commit

Permalink
Remove unimplemented option to use QR factorization in BandMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Jul 16, 2015
1 parent be0324e commit c08c365
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 15 deletions.
9 changes: 0 additions & 9 deletions include/cantera/numerics/BandMatrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -292,15 +292,6 @@ class BandMatrix : public GeneralMatrix
*/
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
Expand Down
6 changes: 0 additions & 6 deletions src/numerics/BandMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -423,10 +423,4 @@ doublereal* const* BandMatrix::colPts()
return &(m_colPtrs[0]);
}

void BandMatrix::useFactorAlgorithm(int fAlgorithm)
{
// useQR_ = fAlgorithm;
}


}

0 comments on commit c08c365

Please sign in to comment.