Method
__init__
(
self,
ast: ASTNode,
sort: BitVecSortRef,
vars: frozenset[tuple[str, ASTSort]] = frozenset(),
)
Source from the content-addressed store, hash-verified
| 624 | __slots__ = () |
| 625 | |
| 626 | def __init__( |
| 627 | self, |
| 628 | ast: ASTNode, |
| 629 | sort: BitVecSortRef, |
| 630 | vars: frozenset[tuple[str, ASTSort]] = frozenset(), |
| 631 | ) -> None: |
| 632 | super().__init__(ast, sort, vars) |
| 633 | |
| 634 | def _binop(self, op: str, other: BitVecRef | int) -> BitVecRef: |
| 635 | other = _coerce_bv(other, self._sort) |
Callers
nothing calls this directly
Tested by
no test coverage detected