(a, b)
| 231 | def test_complex128(self): |
| 232 | logger.info( 'Test complex128' ) |
| 233 | def complex_func(a, b): |
| 234 | c = np.zeros(a.shape, dtype='complex128') |
| 235 | c.real = a; c.imag = b |
| 236 | return c |
| 237 | |
| 238 | a = np.linspace( -1, 1, self.ssize, dtype='float64' ) |
| 239 | b = np.linspace( -1, 1, self.ssize, dtype='float64' ) |
nothing calls this directly
no outgoing calls
no test coverage detected