mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
update
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
67b9ecbd97
commit
b52379fe88
1 changed files with 2 additions and 2 deletions
|
@ -1355,12 +1355,12 @@ namespace polysat {
|
|||
* = max y . r(x_max,y) < N, where x_max = 2^128-1
|
||||
* = max y . y*x_max - 1 <= N - 1
|
||||
* = floor(N / x_max)
|
||||
* = 2^128
|
||||
* = 2^128 + 1
|
||||
*
|
||||
* max y . q(x, y) < N
|
||||
* = max y . (y + 1) * x_max - 1 <= N -1
|
||||
* = floor(N / x_max) - 1
|
||||
* = 2^128 - 1 (NSB: this is a weaker bound than what it should be. Is using "floor" too much?)
|
||||
* = 2^128
|
||||
*
|
||||
* min y . 0 < r(x,y) forall x in A_x
|
||||
* = min y . 0 < r(x_min, y)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue