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

Add smtc option

This commit is contained in:
Clifford Wolf 2017-02-27 22:28:31 +01:00
parent ad304ddda7
commit 81144819e5
2 changed files with 9 additions and 0 deletions

View file

@ -435,6 +435,12 @@ class SbyJob:
self.handle_bool_option("wait", False)
self.handle_int_option("timeout", None)
self.handle_str_option("smtc", None)
if self.opt_smtc is not None:
for engine in self.engines:
assert engine[0] == "smtbmc"
self.copy_src()
if self.opt_mode == "bmc":

View file

@ -40,6 +40,9 @@ def run(mode, job, engine_idx, engine):
for i, a in enumerate(args):
smtbmc_opts += ["-s" if i == 0 else "-S", a]
if job.opt_smtc is not None:
smtbmc_opts += ["--smtc", "src/%s" % job.opt_smtc]
model_name = "smt2"
if syn_opt: model_name += "_syn"
if nomem_opt: model_name += "_nomem"