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

Method __init__

lean_py/z3/core.py:400–405  ·  view source on GitHub ↗
(
        self,
        ast: ASTNode,
        vars: frozenset[tuple[str, ASTSort]] = frozenset(),
    )

Source from the content-addressed store, hash-verified

398 __slots__ = ()
399
400 def __init__(
401 self,
402 ast: ASTNode,
403 vars: frozenset[tuple[str, ASTSort]] = frozenset(),
404 ) -> None:
405 super().__init__(ast, BoolSort(), vars)
406
407 def __and__(self, other: BoolRef) -> BoolRef:
408 return And(self, other)

Callers

nothing calls this directly

Calls 2

BoolSortFunction · 0.85
__init__Method · 0.45

Tested by

no test coverage detected