mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
a4305f8f2a
- _j notation was not compiled...
26 lines
1.2 KiB
C++
26 lines
1.2 KiB
C++
#ifndef TRIQS_UTILITY_COMPLEX_OPS_H
|
|
#define TRIQS_UTILITY_COMPLEX_OPS_H
|
|
#include <complex>
|
|
|
|
#ifndef TRIQS_WORKAROUND_INTEL_COMPILER_14_BUGS
|
|
inline std::complex<double> operator"" _j ( long double x ) { return std::complex<double>(0,x); }
|
|
inline std::complex<double> operator"" _j ( unsigned long long x ) { return std::complex<double>(0,x); }
|
|
#endif
|
|
|
|
namespace std { // has to be in the right namespace for ADL !
|
|
|
|
template<typename T> std::complex<T> operator+(std::complex<T> const & a, long b) { return a+T(b);}
|
|
template<typename T> std::complex<T> operator+(long a, std::complex<T> const & b) { return T(a)+b;}
|
|
template<typename T> std::complex<T> operator-(std::complex<T> const & a, long b) { return a-T(b);}
|
|
template<typename T> std::complex<T> operator-(long a, std::complex<T> const & b) { return T(a)-b;}
|
|
template<typename T> std::complex<T> operator*(std::complex<T> const & a, long b) { return a*T(b);}
|
|
template<typename T> std::complex<T> operator*(long a, std::complex<T> const & b) { return T(a)*b;}
|
|
template<typename T> std::complex<T> operator/(std::complex<T> const & a, long b) { return a/T(b);}
|
|
template<typename T> std::complex<T> operator/(long a, std::complex<T> const & b) { return T(a)/b;}
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|