Merge pull request #3258 from jix/fix-no-assertions

smtbmc: fix bmc with no assertions
This commit is contained in:
Miodrag Milanović 2022-03-29 21:20:07 +02:00 committed by GitHub
commit d44f618de5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1589,6 +1589,8 @@ else: # not tempind, covermode
active_assert_expr = "(and %s)" % " ".join(active_assert_exprs)
smt_assert("(not %s)" % active_assert_expr)
else:
smt_assert("false")
if smt_check_sat() == "sat":