(self)
| 3859 | assert isinstance(RoundTowardZero(), FPRMRef) |
| 3860 | |
| 3861 | def test_fp_add(self): |
| 3862 | x, y = FPs("x y", Float32()) |
| 3863 | result = fpAdd(RNE(), x, y) |
| 3864 | assert isinstance(result, FPRef) |
| 3865 | |
| 3866 | def test_fp_sub(self): |
| 3867 | x, y = FPs("x y", Float32()) |