projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e46faa
)
Revert part of 0fda8308 from #1746 that broke other smtbmc flows
author
Claire Wolf
<claire@symbioticeda.com>
Tue, 24 Mar 2020 16:30:31 +0000
(17:30 +0100)
committer
Claire Wolf
<claire@symbioticeda.com>
Tue, 24 Mar 2020 16:33:46 +0000
(17:33 +0100)
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
backends/smt2/smtio.py
patch
|
blob
|
history
diff --git
a/backends/smt2/smtio.py
b/backends/smt2/smtio.py
index 4c691716e609ad791e2eea84a9a3fc33249bacf5..3559781ec719cf5aa54a01c5561edf5100d20edb 100644
(file)
--- a/
backends/smt2/smtio.py
+++ b/
backends/smt2/smtio.py
@@
-704,9
+704,7
@@
class SmtIo:
if msg is not None:
print("%s waiting for solver (%s)" % (self.timestamp(), msg), flush=True)
- result = ""
- while result not in ["sat", "unsat"]:
- result = self.read()
+ result = self.read()
if self.debug_file:
print("(set-info :status %s)" % result, file=self.debug_file)