(self)
| 3937 | assert isinstance(result, BitVecRef) |
| 3938 | |
| 3939 | def test_fp_to_ubv(self): |
| 3940 | x = FP("x", Float32()) |
| 3941 | result = fpToUBV(RNE(), x, BitVecSort(32)) |
| 3942 | assert isinstance(result, BitVecRef) |
| 3943 | |
| 3944 | def test_fp_to_fp(self): |
| 3945 | x = FP("x", Float32()) |
nothing calls this directly
no test coverage detected