3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-25 14:16:07 +00:00

Fix handling of counter examples with "abc bmc3" engine

This commit is contained in:
Clifford Wolf 2017-01-29 16:58:11 +01:00
parent 170a7efe10
commit 062aae5822
2 changed files with 4 additions and 3 deletions

View file

@ -295,8 +295,9 @@ class SbyJob:
print("flatten", file=f)
print("setattr -unset keep", file=f)
print("delete -output", file=f)
print("memory_map", file=f)
print("opt -full", file=f)
print("memory_map", file=f)
print("opt -fast", file=f)
print("techmap", file=f)
print("opt -fast", file=f)
print("abc -g AND -fast", file=f)