(name: str, width: int)
| 1082 | |
| 1083 | |
| 1084 | def BitVec(name: str, width: int) -> BitVecRef: |
| 1085 | s = BitVecSort(width) |
| 1086 | return BitVecRef(_AstVar(name), s, frozenset([(name, s._ast_sort)])) |
| 1087 | |
| 1088 | |
| 1089 | def BitVecs(names: str, width: int) -> tuple[BitVecRef, ...]: |