Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
try dampening
  • Loading branch information
NikolajBjorner committed Sep 14, 2021
1 parent f13ccf8 commit 9aad331
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/smt/user_propagator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ void user_propagator::propagate_cb(
unsigned num_fixed, unsigned const* fixed_ids,
unsigned num_eqs, unsigned const* eq_lhs, unsigned const* eq_rhs,
expr* conseq) {
if (ctx.lit_internalized(conseq) && ctx.get_assignment(ctx.get_literal(conseq)) == l_true)
return;
m_prop.push_back(prop_info(num_fixed, fixed_ids, num_eqs, eq_lhs, eq_rhs, expr_ref(conseq, m)));
}

Expand Down

0 comments on commit 9aad331

Please sign in to comment.