| 13943 | return z; |
| 13944 | } |
| 13945 | static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { |
| 13946 | __pyx_t_double_complex z; |
| 13947 | z.real = a.real - b.real; |
| 13948 | z.imag = a.imag - b.imag; |
| 13949 | return z; |
| 13950 | } |
| 13951 | static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { |
| 13952 | __pyx_t_double_complex z; |
| 13953 | z.real = a.real * b.real - a.imag * b.imag; |