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

use --witness option when calling pono

This commit is contained in:
N. Engelhardt 2022-01-12 10:48:32 +01:00
parent f5a41e5ab1
commit 5a04ac3fcc

View file

@ -46,7 +46,7 @@ def run(mode, task, engine_idx, engine):
elif solver_args[0] == "pono":
if random_seed:
task.error("Setting the random seed is not available for the pono solver.")
solver_cmd = task.exe_paths["pono"] + f" -v 1 -e bmc -k {task.opt_depth - 1}"
solver_cmd = task.exe_paths["pono"] + f" --witness -v 1 -e bmc -k {task.opt_depth - 1}"
else:
task.error(f"Invalid solver command {solver_args[0]}.")