| 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; |
| 13800 | z.imag = a.real * b.imag + a.imag * b.real; |
| 13801 | return z; |
| 13802 | } |
| 13803 | #if 1 |
| 13804 | static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { |
| 13805 | if (b.imag == 0) { |
no outgoing calls
no test coverage detected