aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire Wolf <clifford@clifford.at>2020-03-27 16:48:38 +0100
committerGitHub <noreply@github.com>2020-03-27 16:48:38 +0100
commit4c38895fab3ca2426ffc23e40601f3042a953e47 (patch)
tree4b8d37358dfc7eb03b17f720a6d1b1de923cc30f
parent590d8eccb7d2c58de27ecc7f9ac71cd226b1be29 (diff)
parentd72cb8ea2abfd0346e67868ef4ba04d2069db271 (diff)
downloadyosys-4c38895fab3ca2426ffc23e40601f3042a953e47.tar.gz
yosys-4c38895fab3ca2426ffc23e40601f3042a953e47.tar.bz2
yosys-4c38895fab3ca2426ffc23e40601f3042a953e47.zip
Merge pull request #1815 from boqwxp/fix-ef-optimize
Fix solver output parsing for exists-forall optimization
-rw-r--r--backends/smt2/smtio.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/backends/smt2/smtio.py b/backends/smt2/smtio.py
index 3559781ec..69f59df79 100644
--- a/backends/smt2/smtio.py
+++ b/backends/smt2/smtio.py
@@ -704,7 +704,13 @@ class SmtIo:
if msg is not None:
print("%s waiting for solver (%s)" % (self.timestamp(), msg), flush=True)
- result = self.read()
+ if self.forall:
+ result = self.read()
+ while result not in ["sat", "unsat", "unknown"]:
+ print("%s %s: %s" % (self.timestamp(), self.solver, result))
+ result = self.read()
+ else:
+ result = self.read()
if self.debug_file:
print("(set-info :status %s)" % result, file=self.debug_file)