[Numerics] Remove unused BandMatrix::err method
This commit is contained in:
parent
7fef1b0051
commit
4467b898a5
2 changed files with 0 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue