Skip to content

Commit

Permalink
fix #4104
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Apr 27, 2020
1 parent fc1321f commit 6d4bd37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/qe/qe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1460,10 +1460,10 @@ namespace qe {
if (assumption) m_solver.assert_expr(assumption);
bool is_sat = false;
lbool res = l_true;
if (has_uninterpreted(m_fml))
res = l_undef;
while (res == l_true) {
res = m_solver.check();
if (res == l_true && has_uninterpreted(m_fml))
res = l_undef;
if (res == l_true) {
is_sat = true;
final_check();
Expand Down

0 comments on commit 6d4bd37

Please sign in to comment.