DomainGreater(v)(x) is True where x <= v.
| 910 | |
| 911 | |
| 912 | class _DomainGreater: |
| 913 | """ |
| 914 | DomainGreater(v)(x) is True where x <= v. |
| 915 | |
| 916 | """ |
| 917 | |
| 918 | def __init__(self, critical_value): |
| 919 | "DomainGreater(v)(x) = true where x <= v" |
| 920 | self.critical_value = critical_value |
| 921 | |
| 922 | def __call__(self, x): |
| 923 | "Executes the call behavior." |
| 924 | with np.errstate(invalid='ignore'): |
| 925 | return umath.less_equal(x, self.critical_value) |
| 926 | |
| 927 | |
| 928 | class _DomainGreaterEqual: |
no outgoing calls
no test coverage detected
searching dependent graphs…