(self)
| 293 | check_complex_value(np.sqrt, -1, 0, 0, 1) |
| 294 | |
| 295 | def test_simple_conjugate(self): |
| 296 | ref = np.conj(np.sqrt(complex(1, 1))) |
| 297 | |
| 298 | def f(z): |
| 299 | return np.sqrt(np.conj(z)) |
| 300 | |
| 301 | check_complex_value(f, 1, 1, ref.real, ref.imag, False) |
| 302 | |
| 303 | #def test_branch_cut(self): |
| 304 | # _check_branch_cut(f, -1, 0, 1, -1) |
nothing calls this directly
no test coverage detected