3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-23 13:18:00 +00:00

Working BTOR BMC engine

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-12-08 07:01:21 +01:00
parent 4c485766e2
commit 150f30ae08
2 changed files with 26 additions and 18 deletions

View file

@ -338,6 +338,10 @@ class SbyJob:
with open("%s/model/design_%s.ys" % (self.workdir, model_name), "w") as f:
print("# running in %s/model/" % (self.workdir), file=f)
print("read_ilang design%s.il" % ("_nomem" if "_nomem" in model_name else ""), file=f)
print("flatten", file=f)
print("setattr -unset keep", file=f)
print("delete -output", file=f)
print("opt -full", file=f)
if "_syn" in model_name:
print("techmap", file=f)
print("opt -fast", file=f)