| 361 | } |
| 362 | |
| 363 | static inline void |
| 364 | _inline_mul( npy_complex64 a, npy_complex64 b, npy_complex64 &r) |
| 365 | { |
| 366 | r.real = a.real*b.real - a.imag*b.imag; |
| 367 | r.imag = a.real*b.imag + a.imag*b.real; |
| 368 | } |
| 369 | |
| 370 | static inline void |
| 371 | _inline_mul( npy_complex128 a, npy_complex128 b, npy_complex128 &r) |
no outgoing calls
no test coverage detected
searching dependent graphs…