//=============================================================================
/*! +dssmatrix operator */
inline const dssmatrix& operator+(const dssmatrix& mat)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator+(const dssmatrix&)" << std::endl;
#endif//CPPL_VERBOSE
return mat;
}
//=============================================================================
/*! -dssmatrix operator */
inline _dssmatrix operator-(const dssmatrix& mat)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator-(const dssmatrix&)" << std::endl;
#endif//CPPL_VERBOSE
dssmatrix newmat(mat);
for(std::vector<dcomponent>::iterator it=newmat.Data.begin(); it!=newmat.Data.end(); it++){
it->v =-it->v;
}
return _(newmat);
}