| 13789 | return z; |
| 13790 | } |
| 13791 | static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { |
| 13792 | __pyx_t_float_complex z; |
| 13793 | z.real = a.real - b.real; |
| 13794 | z.imag = a.imag - b.imag; |
| 13795 | return z; |
| 13796 | } |
| 13797 | static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { |
| 13798 | __pyx_t_float_complex z; |
| 13799 | z.real = a.real * b.real - a.imag * b.imag; |