3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-05 22:14:08 +00:00

Use smtbmc args for solver options

This commit is contained in:
Clifford Wolf 2017-02-19 22:52:27 +01:00
parent 221018b19d
commit afeab48894
2 changed files with 8 additions and 7 deletions

View file

@ -2,11 +2,12 @@
[options]
mode bmc
depth 10
wait on
[engines]
smtbmc -s yices
smtbmc -s boolector
smtbmc -s z3 --nomem
smtbmc yices
smtbmc boolector -ack
smtbmc --nomem z3
abc bmc3
[script]

View file

@ -25,18 +25,18 @@ def run(mode, job, engine_idx, engine):
syn_opt = False
opts, args = getopt.getopt(engine[1:], "s:", ["nomem", "syn"])
assert len(args) == 0
for o, a in opts:
if o == "-s":
smtbmc_opts += ["-s", a]
elif o == "--nomem":
if o == "--nomem":
nomem_opt = True
elif o == "--syn":
syn_opt = True
else:
assert False
for i, a in enumerate(args):
smtbmc_opts += ["-s" if i == 0 else "-S", a]
model_name = "smt2"
if syn_opt: model_name += "_syn"
if nomem_opt: model_name += "_nomem"