3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

add disabled pass to detect upper bound range constraints

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-07-05 16:51:05 -07:00
parent a374e2c575
commit f23dc894b4
2 changed files with 78 additions and 43 deletions

View file

@ -343,7 +343,7 @@ public:
static rational power_of_two(unsigned k);
bool is_power_of_two(unsigned & shift) {
bool is_power_of_two(unsigned & shift) const {
return m().is_power_of_two(m_val, shift);
}