3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 14:24:08 +00:00

Merge pull request #193 from jix/abc_pdr_v

abc pdr: Enable log output by default
This commit is contained in:
Jannis Harder 2022-07-13 16:07:04 +02:00 committed by GitHub
commit b8a1bdd40a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,6 +41,7 @@ def run(mode, task, engine_idx, engine):
elif abc_command[0] == "pdr":
if mode != "prove":
task.error("ABC command 'pdr' is only valid in prove mode.")
abc_command[0] += f" -v"
else:
task.error(f"Invalid ABC command {abc_command[0]}.")