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

Function PropagateFunction

lean_py/z3/core.py:4737–4741  ·  view source on GitHub ↗

Create a propagation function.

(name: str, *sorts: SortRef)

Source from the content-addressed store, hash-verified

4735
4736
4737def PropagateFunction(name: str, *sorts: SortRef) -> FuncDeclRef:
4738 """Create a propagation function."""
4739 if len(sorts) < 2:
4740 raise TypeError("PropagateFunction needs at least domain and range sorts")
4741 return Function(name, *sorts)
4742
4743
4744# ---------------------------------------------------------------------------

Callers

nothing calls this directly

Calls 1

FunctionFunction · 0.85

Tested by

no test coverage detected