Floating-point rounding mode.
| 3220 | |
| 3221 | |
| 3222 | class FPRMRef(ExprRef): |
| 3223 | """Floating-point rounding mode.""" |
| 3224 | |
| 3225 | __slots__ = () |
| 3226 | |
| 3227 | def __init__(self, name: str) -> None: |
| 3228 | super().__init__( |
| 3229 | _AstVar(name), |
| 3230 | SortRef(_rm_ast_sort), |
| 3231 | frozenset(), |
| 3232 | ) |
| 3233 | |
| 3234 | |
| 3235 | def FPSort(ebits: int, sbits: int, ctx: Context | None = None) -> FPSortRef: |
no outgoing calls
no test coverage detected