(self)
| 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") |