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:
parent
ad304ddda7
commit
81144819e5
|
@ -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":
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue