mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
Use smtbmc args for solver options
This commit is contained in:
parent
221018b19d
commit
afeab48894
|
@ -2,11 +2,12 @@
|
||||||
[options]
|
[options]
|
||||||
mode bmc
|
mode bmc
|
||||||
depth 10
|
depth 10
|
||||||
|
wait on
|
||||||
|
|
||||||
[engines]
|
[engines]
|
||||||
smtbmc -s yices
|
smtbmc yices
|
||||||
smtbmc -s boolector
|
smtbmc boolector -ack
|
||||||
smtbmc -s z3 --nomem
|
smtbmc --nomem z3
|
||||||
abc bmc3
|
abc bmc3
|
||||||
|
|
||||||
[script]
|
[script]
|
||||||
|
|
|
@ -25,18 +25,18 @@ def run(mode, job, engine_idx, engine):
|
||||||
syn_opt = False
|
syn_opt = False
|
||||||
|
|
||||||
opts, args = getopt.getopt(engine[1:], "s:", ["nomem", "syn"])
|
opts, args = getopt.getopt(engine[1:], "s:", ["nomem", "syn"])
|
||||||
assert len(args) == 0
|
|
||||||
|
|
||||||
for o, a in opts:
|
for o, a in opts:
|
||||||
if o == "-s":
|
if o == "--nomem":
|
||||||
smtbmc_opts += ["-s", a]
|
|
||||||
elif o == "--nomem":
|
|
||||||
nomem_opt = True
|
nomem_opt = True
|
||||||
elif o == "--syn":
|
elif o == "--syn":
|
||||||
syn_opt = True
|
syn_opt = True
|
||||||
else:
|
else:
|
||||||
assert False
|
assert False
|
||||||
|
|
||||||
|
for i, a in enumerate(args):
|
||||||
|
smtbmc_opts += ["-s" if i == 0 else "-S", a]
|
||||||
|
|
||||||
model_name = "smt2"
|
model_name = "smt2"
|
||||||
if syn_opt: model_name += "_syn"
|
if syn_opt: model_name += "_syn"
|
||||||
if nomem_opt: model_name += "_nomem"
|
if nomem_opt: model_name += "_nomem"
|
||||||
|
|
Loading…
Reference in a new issue