Skip to content

Commit e30a0fe

Browse files
authored
Merge pull request #268 from YosysHQ/KrystalDelusion-patch-1
Update sby_engine_abc.py
2 parents c73cd3e + 6c8b838 commit e30a0fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sbysrc/sby_engine_abc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def output_callback(line):
182182
match = re.match(r"^Output [0-9]+ of miter .* was asserted in frame [0-9]+.", line)
183183
if match: proc_status = "FAIL"
184184

185-
match = re.match(r"^Proved output +([0-9]+) in frame +[0-9]+", line)
185+
match = re.match(r"^Proved output +([0-9]+) in frame +-?[0-9]+", line)
186186
if match:
187187
output = int(match[1])
188188
prop = aiger_props[output]

0 commit comments

Comments
 (0)