aboutsummaryrefslogtreecommitdiffstats
path: root/backends/smt2/smtbmc.py
diff options
context:
space:
mode:
authorAlberto Gonzalez <boqwxp@airmail.cc>2020-05-01 23:17:35 +0000
committerAlberto Gonzalez <boqwxp@airmail.cc>2020-05-25 20:39:30 +0000
commit9847a4eea8b6d758c06d3d95f2bfe84c57774364 (patch)
tree90f2cb6e54d0604c1c6c7a75e45c6a2687b8cb40 /backends/smt2/smtbmc.py
parentf9eef5e3f710684c8cfe5430190b5cf4f7c2e34e (diff)
downloadyosys-9847a4eea8b6d758c06d3d95f2bfe84c57774364.tar.gz
yosys-9847a4eea8b6d758c06d3d95f2bfe84c57774364.tar.bz2
yosys-9847a4eea8b6d758c06d3d95f2bfe84c57774364.zip
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.py5
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