| 13934 | #if CYTHON_CCOMPLEX |
| 13935 | #else |
| 13936 | static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { |
| 13937 | return (a.real == b.real) && (a.imag == b.imag); |
| 13938 | } |
| 13939 | static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { |
| 13940 | __pyx_t_double_complex z; |
| 13941 | z.real = a.real + b.real; |
nothing calls this directly
no outgoing calls
no test coverage detected