*** empty log message ***

This commit is contained in:
jiri
2006-04-10 16:08:42 +00:00
parent 3a243630de
commit 44ca93561d
2 changed files with 3 additions and 2 deletions

View File

@@ -71,6 +71,7 @@ public:
SparseMat & operator+=(const SparseMat &rhs);
SparseMat & addtriangle(const SparseMat &rhs, const bool lower, const char sign);
SparseMat & join(SparseMat &rhs); //more efficient +=, rhs will be emptied
void clear() {unsort();deletelist();}
SparseMat & operator-=(const SparseMat &rhs);
inline const SparseMat operator+(const T &rhs) const {return SparseMat(*this) += rhs;}
inline const SparseMat operator-(const T &rhs) const {return SparseMat(*this) -= rhs;}