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

Method test_is_logical_ops

tests/test_z3_ported.py:1571–1576  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1569 assert is_distinct(Distinct(x, y))
1570
1571 def test_is_logical_ops(self):
1572 a, b = Bools("a b")
1573 assert is_and(And(a, b))
1574 assert is_or(Or(a, b))
1575 assert is_not(Not(a))
1576 assert is_implies(Implies(a, b))
1577
1578 def test_is_arith_ops(self):
1579 x, y = Ints("x y")

Callers

nothing calls this directly

Calls 9

BoolsFunction · 0.90
is_andFunction · 0.90
AndFunction · 0.90
is_orFunction · 0.90
OrFunction · 0.90
is_notFunction · 0.90
NotFunction · 0.90
is_impliesFunction · 0.90
ImpliesFunction · 0.90

Tested by

no test coverage detected