Executes the call behavior.
(self, x)
| 832 | self.eps = eps |
| 833 | |
| 834 | def __call__(self, x): |
| 835 | "Executes the call behavior." |
| 836 | with np.errstate(invalid='ignore'): |
| 837 | return umath.less(umath.absolute(umath.cos(x)), self.eps) |
| 838 | |
| 839 | |
| 840 | class _DomainSafeDivide: |
no test coverage detected