diff options
author | clairexen <claire@symbioticeda.com> | 2020-05-30 15:04:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-30 15:04:51 +0200 |
commit | ea46ed81f94547b1facf3b6e4b0866084ec3a072 (patch) | |
tree | 62802ed1718e0cae69037a9dae9c99f7604d001d /backends/smt2/smtbmc.py | |
parent | 0a14e1e837ad0aeae6944a9eafe1a14b79c12cb3 (diff) | |
parent | ea30465107a148454f19226e44b242de73d200dd (diff) | |
download | yosys-ea46ed81f94547b1facf3b6e4b0866084ec3a072.tar.gz yosys-ea46ed81f94547b1facf3b6e4b0866084ec3a072.tar.bz2 yosys-ea46ed81f94547b1facf3b6e4b0866084ec3a072.zip |
Merge pull request #2018 from boqwxp/qbfsat-timeout
smtbmc and qbfsat: Add timeout option to set solver timeouts for Z3, Yices, and CVC4.
Diffstat (limited to 'backends/smt2/smtbmc.py')
-rw-r--r-- | backends/smt2/smtbmc.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/smt2/smtbmc.py b/backends/smt2/smtbmc.py index cc3ebb129..03f001bfd 100644 --- a/backends/smt2/smtbmc.py +++ b/backends/smt2/smtbmc.py @@ -1557,8 +1557,9 @@ else: # not tempind, covermode smt_assert(get_constr_expr(constr_asserts, i)) print_msg("Solving for step %d.." % (last_check_step)) - if smt_check_sat() != "sat": - print("%s No solution found!" % smt.timestamp()) + status = smt_check_sat() + if status != "sat": + print("%s No solution found! (%s)" % (smt.timestamp(), status)) retstatus = "FAILED" break |