Skip to content

Commit

Permalink
fix #4234
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed May 7, 2020
1 parent da9b037 commit 6a61e8d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/opt/opt_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,10 @@ namespace opt {
s.get_model(m_model);
s.get_labels(m_labels);
model_updated(m_model.get());
}
if (!m_model) {
is_sat = l_undef;
}
}
if (is_sat != l_true) {
TRACE("opt", tout << m_hard_constraints << " " << asms << "\n";);
if (!asms.empty()) {
Expand Down

0 comments on commit 6a61e8d

Please sign in to comment.