mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix removal bug, tune all-interval usage
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ad571510f3
commit
2aedaf315a
6 changed files with 22 additions and 6 deletions
|
@ -8,6 +8,8 @@ from __future__ import print_function
|
|||
from z3 import *
|
||||
import time
|
||||
|
||||
set_option("sat.gc.burst", False) # disable GC at every search. It is wasteful for these small queries.
|
||||
|
||||
def diff_at_j_is_i(xs, j, i):
|
||||
assert(0 <= j and j + 1 < len(xs))
|
||||
assert(1 <= i and i < len(xs))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue