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

travis timeouts

This commit is contained in:
Nuno Lopes 2021-02-21 13:13:19 +00:00
parent 26c96e49cd
commit 1bb9a02160
2 changed files with 8 additions and 9 deletions

View file

@ -65,13 +65,13 @@ def process_model(s, xij, n):
def all_models(n):
count = 0
s, xij = ais(n)
start = time.clock()
start = time.time()
while sat == s.check():
block = process_model(s, xij, n)
s.add(Not(And(block)))
count += 1
print(s.statistics())
print(time.clock() - start)
print(time.time() - start)
print(count)
set_option(verbose=1)