[Numerics] Remove unused BandMatrix::err method

This commit is contained in:
Ray Speth 2014-03-24 04:02:56 +00:00
parent 7fef1b0051
commit 4467b898a5
2 changed files with 0 additions and 13 deletions

View file

@ -339,14 +339,6 @@ protected:
//! Extra dp work array needed - size = 3n
vector_fp work_;
private:
//! Error function that gets called for unhandled cases
/*!
* @param msg String containing the message.
*/
void err(const std::string& msg) const;
};
//! Utility routine to print out the matrix

View file

@ -328,11 +328,6 @@ ostream& operator<<(ostream& s, const BandMatrix& m)
return s;
}
void BandMatrix::err(const std::string& msg) const
{
throw CanteraError("BandMatrix() unimplemented function", msg);
}
doublereal BandMatrix::rcond(doublereal a1norm)
{
int printLevel = 0;