mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
compile
This commit is contained in:
parent
7aeabe39a3
commit
1d349fb0e6
1 changed files with 1 additions and 1 deletions
|
@ -657,7 +657,7 @@ namespace polysat {
|
|||
// parity(p) < k && p * r >= 2^k => p * r < 2^k
|
||||
pdd prod = p() * r();
|
||||
rational prodv = (pv * rv).val();
|
||||
SASSERT(prod != rational::power_of_two(parity_pv)); // Why did it evaluate to false in this case?
|
||||
SASSERT(prodv != rational::power_of_two(parity_pv)); // Why did it evaluate to false in this case?
|
||||
unsigned lower = 0, upper = p().power_of_2();
|
||||
// binary search for the parity
|
||||
while (lower + 1 < upper) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue