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