//=============================================================================
/*! +_zgsmatrix operator */
inline const _zgsmatrix& operator+(const _zgsmatrix& mat)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator+(const _zgsmatrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
return mat;
}
//=============================================================================
/*! -_zgsmatrix operator */
inline _zgsmatrix operator-(const _zgsmatrix& mat)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator-(const _zgsmatrix&)"
<< std::endl;
#endif//CPPL_VERBOSE
for(long i=0; i<mat.VOL; i++){
mat.Array[i] =-mat.Array[i];
}
return mat;
}