Revert part of 0fda8308 from #1746 that broke other smtbmc flows
authorClaire Wolf <claire@symbioticeda.com>
Tue, 24 Mar 2020 16:30:31 +0000 (17:30 +0100)
committerClaire 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

index 4c691716e609ad791e2eea84a9a3fc33249bacf5..3559781ec719cf5aa54a01c5561edf5100d20edb 100644 (file)
@@ -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)