3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-10-08 18:51:57 +00:00

Fixes and improvements in BTOR engine

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2018-12-08 07:16:19 +01:00
parent a362b35349
commit 3d66e7cec5
2 changed files with 7 additions and 3 deletions

View file

@ -533,8 +533,8 @@ class SbyJob:
self.opt_skip = None
else:
for engine in self.engines:
if engine[0] != "smtbmc":
self.error("Option skip is only valid for smtbmc engine.")
if engine[0] not in ["smtbmc", "btor"]:
self.error("Option skip is only valid for smtbmc and btor engines.")
self.copy_src()