mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
smtbmc: Allow using --keep-going in cover mode
See YosysHQ/yosys#3816 for the smtbmc change that made --keep-going do something in cover mode
This commit is contained in:
parent
c027aea3db
commit
28c053bd94
|
@ -69,8 +69,6 @@ def run(mode, task, engine_idx, engine):
|
|||
task.error("smtbmc options --basecase and --induction are exclusive.")
|
||||
induction_only = True
|
||||
elif o == "--keep-going":
|
||||
if mode not in ("bmc", "prove", "prove_basecase", "prove_induction"):
|
||||
task.error("smtbmc option --keep-going is only supported in bmc and prove mode.")
|
||||
keep_going = True
|
||||
elif o == "--seed":
|
||||
random_seed = a
|
||||
|
@ -134,7 +132,8 @@ def run(mode, task, engine_idx, engine):
|
|||
|
||||
if keep_going and mode != "prove_induction":
|
||||
smtbmc_opts.append("--keep-going")
|
||||
trace_prefix += "%"
|
||||
if mode != "cover":
|
||||
trace_prefix += "%"
|
||||
|
||||
if dumpsmt2:
|
||||
smtbmc_opts += ["--dump-smt2", trace_prefix.replace("%", "") + ".smt2"]
|
||||
|
|
Loading…
Reference in a new issue