3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-07-30 09:53:19 +00:00

Add "mode live" support

This commit is contained in:
Clifford Wolf 2017-03-01 11:09:14 +01:00
parent 6e03f1d895
commit 774849a6ed
3 changed files with 54 additions and 1 deletions

View file

@ -27,6 +27,8 @@ def run(mode, job, engine_idx, engine):
assert False
if solver_args[0] == "suprove":
if mode == "live" and (len(solver_args) == 1 or solver_args[1][0] != "+"):
solver_args.insert(1, "+simple_liveness")
solver_cmd = " ".join([job.exe_paths["suprove"]] + solver_args[1:])
elif solver_args[0] == "avy":