mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 00:55:31 +00:00
travis timeouts
This commit is contained in:
parent
26c96e49cd
commit
1bb9a02160
2 changed files with 8 additions and 9 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue