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

Function SetDel

lean_py/z3/core.py:3633–3635  ·  view source on GitHub ↗

Remove element from set.

(s: ArrayRef, e: ExprRef)

Source from the content-addressed store, hash-verified

3631
3632
3633def SetDel(s: ArrayRef, e: ExprRef) -> ArrayRef:
3634 """Remove element from set."""
3635 return Store(s, e, BoolVal(False))
3636
3637
3638def SetUnion(a: ArrayRef, b: ArrayRef, ctx: Context | None = None) -> ArrayRef:

Callers 1

test_set_delMethod · 0.90

Calls 2

StoreFunction · 0.85
BoolValFunction · 0.85

Tested by 1

test_set_delMethod · 0.72