(self)
| 1069 | assert is_not(Not(a)) |
| 1070 | |
| 1071 | def test_is_implies(self): |
| 1072 | a, b = Bool("a"), Bool("b") |
| 1073 | assert is_implies(Implies(a, b)) |
| 1074 | |
| 1075 | def test_is_arithmetic_ops(self): |
| 1076 | x, y = Ints("x y") |
nothing calls this directly
no test coverage detected