From c08c365ebba18e052393c21d68988096cf8f2b86 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 16 Jul 2015 10:52:42 -0400 Subject: [PATCH] Remove unimplemented option to use QR factorization in BandMatrix --- include/cantera/numerics/BandMatrix.h | 9 --------- src/numerics/BandMatrix.cpp | 6 ------ 2 files changed, 15 deletions(-) diff --git a/include/cantera/numerics/BandMatrix.h b/include/cantera/numerics/BandMatrix.h index 0cdfa623db..2aabb43d70 100644 --- a/include/cantera/numerics/BandMatrix.h +++ b/include/cantera/numerics/BandMatrix.h @@ -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 diff --git a/src/numerics/BandMatrix.cpp b/src/numerics/BandMatrix.cpp index 7b00fdc8ea..814d09df87 100644 --- a/src/numerics/BandMatrix.cpp +++ b/src/numerics/BandMatrix.cpp @@ -423,10 +423,4 @@ doublereal* const* BandMatrix::colPts() return &(m_colPtrs[0]); } -void BandMatrix::useFactorAlgorithm(int fAlgorithm) -{ -// useQR_ = fAlgorithm; -} - - }