Skip to content

Commit

Permalink
Merge pull request #268 from YosysHQ/KrystalDelusion-patch-1
Browse files Browse the repository at this point in the history
Update sby_engine_abc.py
  • Loading branch information
jix authored Mar 11, 2024
2 parents c73cd3e + 6c8b838 commit e30a0fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sbysrc/sby_engine_abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def output_callback(line):
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]
Expand Down

0 comments on commit e30a0fe

Please sign in to comment.