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

Add "smtbmc --presat"

This commit is contained in:
Clifford Wolf 2017-07-07 02:47:53 +02:00
parent 6ef12a4b31
commit 68d90a5510

View file

@ -25,7 +25,7 @@ def run(mode, job, engine_idx, engine):
syn_opt = False
stbv_opt = False
opts, args = getopt.getopt(engine[1:], "s:", ["nomem", "syn", "stbv"])
opts, args = getopt.getopt(engine[1:], "", ["nomem", "syn", "stbv", "presat"])
for o, a in opts:
if o == "--nomem":
@ -34,6 +34,8 @@ def run(mode, job, engine_idx, engine):
syn_opt = True
elif o == "--stbv":
stbv_opt = True
elif o == "--presat":
smtbmc_opts += ["--presat"]
else:
assert False