Executes the call behavior.
(self, x)
| 883 | self.eps = eps |
| 884 | |
| 885 | def __call__(self, x): |
| 886 | "Executes the call behavior." |
| 887 | with np.errstate(invalid='ignore'): |
| 888 | return umath.less(umath.absolute(umath.cos(x)), self.eps) |
| 889 | |
| 890 | |
| 891 | class _DomainSafeDivide: |
no outgoing calls
no test coverage detected