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