(self)
| 488 | assert is_not(Not(p)) |
| 489 | |
| 490 | def test_implies(self): |
| 491 | p, q = Bools("p q") |
| 492 | imp = Implies(p, q) |
| 493 | assert is_implies(imp) |
| 494 | |
| 495 | def test_demorgan_proof(self, kernel): |
| 496 | """Guide: De Morgan's law: Not(And(p,q)) == Or(Not(p), Not(q))""" |
nothing calls this directly
no test coverage detected