mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-06 14:24:08 +00:00
smtbmc: Fix induction trace filename with --keep-going for the basecase
--keep-going only applies to the basecase and induction runs without that option, so the trace filename for induction should have no placeholder.
This commit is contained in:
parent
fb5705b5bd
commit
3dcf7766ea
|
@ -131,7 +131,7 @@ def run(mode, task, engine_idx, engine):
|
|||
smtbmc_opts.append("-c")
|
||||
trace_prefix += "%"
|
||||
|
||||
if keep_going:
|
||||
if keep_going and mode != "prove_induction":
|
||||
smtbmc_opts.append("--keep-going")
|
||||
trace_prefix += "%"
|
||||
|
||||
|
|
Loading…
Reference in a new issue