3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-07-19 12:52:05 +00:00

Add smtbmc prove support

This commit is contained in:
Clifford Wolf 2017-01-30 12:59:20 +01:00
parent 5125128bbd
commit ffeee1a11f
3 changed files with 74 additions and 16 deletions

View file

@ -25,8 +25,10 @@ def run(job):
if "depth" in job.options:
job.opt_depth = int(job.options["depth"])
job.basecase_done = False
job.induction_done = False
job.status = "UNKNOWN"
job.basecase_pass = False
job.induction_pass = False
job.basecase_tasks = list()
job.induction_tasks = list()