(self)
| 3904 | assert isinstance(result, FPRef) |
| 3905 | |
| 3906 | def test_fp_min_max(self): |
| 3907 | x, y = FPs("x y", Float32()) |
| 3908 | assert isinstance(fpMin(x, y), FPRef) |
| 3909 | assert isinstance(fpMax(x, y), FPRef) |
| 3910 | |
| 3911 | def test_fp_comparisons(self): |
| 3912 | x, y = FPs("x y", Float32()) |