3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-04 13:54:07 +00:00

Merge pull request #268 from YosysHQ/KrystalDelusion-patch-1

Update sby_engine_abc.py
This commit is contained in:
Jannis Harder 2024-03-12 00:37:49 +01:00 committed by GitHub
commit e30a0fe611
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -182,7 +182,7 @@ def run(mode, task, engine_idx, engine):
match = re.match(r"^Output [0-9]+ of miter .* was asserted in frame [0-9]+.", line)
if match: proc_status = "FAIL"
match = re.match(r"^Proved output +([0-9]+) in frame +[0-9]+", line)
match = re.match(r"^Proved output +([0-9]+) in frame +-?[0-9]+", line)
if match:
output = int(match[1])
prop = aiger_props[output]