(self, kernel)
| 933 | assert _try_prove(fpIsNaN(fpNaN(Float64()))) |
| 934 | |
| 935 | def test_zero_is_zero(self, kernel): |
| 936 | assert _try_prove(fpIsZero(fpPlusZero(Float64()))) |
| 937 | |
| 938 | def test_neg_zero_is_zero(self, kernel): |
| 939 | assert _try_prove(fpIsZero(fpMinusZero(Float64()))) |
nothing calls this directly
no test coverage detected