//=============================================================================
/*! complex*_zgsmatrix operator */
inline _zgsmatrix operator*(const std::complex<double>& d, const _zgsmatrix& mat)
{
#ifdef CPPL_VERBOSE
std::cerr << "# [MARK] operator*(const std::complex<double>&, const _zgsmatrix&)" << std::endl;
#endif//CPPL_VERBOSE
zscal_(mat.VOL, d, mat.Array, 1);
return mat;
}