DomainGreaterEqual(v)(x) is True where x < v.
| 926 | |
| 927 | |
| 928 | class _DomainGreaterEqual: |
| 929 | """ |
| 930 | DomainGreaterEqual(v)(x) is True where x < v. |
| 931 | |
| 932 | """ |
| 933 | |
| 934 | def __init__(self, critical_value): |
| 935 | "DomainGreaterEqual(v)(x) = true where x < v" |
| 936 | self.critical_value = critical_value |
| 937 | |
| 938 | def __call__(self, x): |
| 939 | "Executes the call behavior." |
| 940 | with np.errstate(invalid='ignore'): |
| 941 | return umath.less(x, self.critical_value) |
| 942 | |
| 943 | |
| 944 | class _MaskedUFunc: |
no outgoing calls
no test coverage detected
searching dependent graphs…