3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-09 06:41:26 +00:00

Revert "Remove asserts during cover mode"

This reverts commit 81873292c9.
This commit is contained in:
Krystine Sherwin 2025-07-02 17:59:46 +12:00
parent 81873292c9
commit 205245c827
No known key found for this signature in database
3 changed files with 2 additions and 5 deletions

View file

@ -1020,7 +1020,7 @@ class SbyTask(SbyConfig):
if self.opt_mode in ["bmc", "prove"]:
print("chformal -live -fair -cover -remove", file=f)
if self.opt_mode == "cover":
print("chformal -live -fair -assert -remove", file=f)
print("chformal -live -fair -remove", file=f)
if self.opt_mode == "live":
print("chformal -assert2assume", file=f)
print("chformal -cover -remove", file=f)