Skip to content

Commit 6d4bd37

Browse files
fix #4104
Signed-off-by: Nikolaj Bjorner <[email protected]>
1 parent fc1321f commit 6d4bd37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/qe/qe.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1460,10 +1460,10 @@ namespace qe {
14601460
if (assumption) m_solver.assert_expr(assumption);
14611461
bool is_sat = false;
14621462
lbool res = l_true;
1463-
if (has_uninterpreted(m_fml))
1464-
res = l_undef;
14651463
while (res == l_true) {
14661464
res = m_solver.check();
1465+
if (res == l_true && has_uninterpreted(m_fml))
1466+
res = l_undef;
14671467
if (res == l_true) {
14681468
is_sat = true;
14691469
final_check();

0 commit comments

Comments
 (0)