| 1714 | } |
| 1715 | |
| 1716 | expr expr::notImplies(const expr &rhs) const { |
| 1717 | if (eq(rhs)) |
| 1718 | return false; |
| 1719 | return *this && !rhs; |
| 1720 | } |
| 1721 | |
| 1722 | expr expr::ule(const expr &rhs) const { |
| 1723 | if (eq(rhs) || isZero() || rhs.isAllOnes()) |
no outgoing calls
no test coverage detected