(self, x, y)
| 2439 | np.seterr(**self.olderr) |
| 2440 | |
| 2441 | def tst_allclose(self, x, y): |
| 2442 | assert_(np.allclose(x, y), "%s and %s not close" % (x, y)) |
| 2443 | |
| 2444 | def tst_not_allclose(self, x, y): |
| 2445 | assert_(not np.allclose(x, y), "%s and %s shouldn't be close" % (x, y)) |
no test coverage detected