Skip to content

Commit

Permalink
fix #6559
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Feb 4, 2023
1 parent d69155b commit 3712cbd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/qe/qe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1513,10 +1513,11 @@ namespace qe {
propagate_assignment(*model_eval);
VERIFY(CHOOSE_VAR == update_current(*model_eval, true));
SASSERT(m_current->fml());
if (l_true != m_solver.check()) {
return l_true;
}
if (l_true != m_solver.check())
return l_true;
m_solver.get_model(model);
if (!model)
return l_undef;
model_eval = alloc(model_evaluator, *model);
search_tree* st = m_current;
update_current(*model_eval, false);
Expand Down

0 comments on commit 3712cbd

Please sign in to comment.