(self)
| 3932 | assert isinstance(result, ArithRef) |
| 3933 | |
| 3934 | def test_fp_to_sbv(self): |
| 3935 | x = FP("x", Float32()) |
| 3936 | result = fpToSBV(RNE(), x, BitVecSort(32)) |
| 3937 | assert isinstance(result, BitVecRef) |
| 3938 | |
| 3939 | def test_fp_to_ubv(self): |
| 3940 | x = FP("x", Float32()) |
nothing calls this directly
no test coverage detected