(x, y)
| 2154 | |
| 2155 | |
| 2156 | def assert_arctan2_ispzero(x, y): |
| 2157 | assert_((ncu.arctan2(x, y) == 0 and not np.signbit(ncu.arctan2(x, y))), "arctan(%s, %s) is %s, not +0" % (x, y, ncu.arctan2(x, y))) |
| 2158 | |
| 2159 | |
| 2160 | def assert_arctan2_isnzero(x, y): |
no test coverage detected