MCPcopy Create free account
hub / github.com/BasisResearch/lean.py / __init__

Method __init__

lean_py/z3/core.py:626–632  ·  view source on GitHub ↗
(
        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

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected