(a: FPRef, ctx: Context | None = None)
| 3456 | |
| 3457 | # FP conversions |
| 3458 | def fpToReal(a: FPRef, ctx: Context | None = None) -> ArithRef: |
| 3459 | return ArithRef(AppNode(_AstVar("fpToReal"), (a._ast,)), RealSort(), a._vars) |
| 3460 | |
| 3461 | |
| 3462 | def fpToSBV(rm: FPRMRef, a: FPRef, sort: BitVecSortRef, ctx: Context | None = None) -> BitVecRef: |