| 13780 | #if CYTHON_CCOMPLEX |
| 13781 | #else |
| 13782 | static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { |
| 13783 | return (a.real == b.real) && (a.imag == b.imag); |
| 13784 | } |
| 13785 | static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { |
| 13786 | __pyx_t_float_complex z; |
| 13787 | z.real = a.real + b.real; |
nothing calls this directly
no outgoing calls
no test coverage detected