We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26344e commit e820701Copy full SHA for e820701
src/smt/smt_context.cpp
@@ -4265,9 +4265,11 @@ namespace smt {
4265
SASSERT(num_lits == 1);
4266
expr * unit = bool_var2expr(lits[0].var());
4267
bool unit_sign = lits[0].sign();
4268
+ while (m.is_not(unit, unit))
4269
+ unit_sign = !unit_sign;
4270
m_units_to_reassert.push_back(unit);
4271
m_units_to_reassert_sign.push_back(unit_sign);
- TRACE("reassert_units", tout << "asserting #" << unit->get_id() << " " << unit_sign << " @ " << m_scope_lvl << "\n";);
4272
+ TRACE("reassert_units", tout << "asserting " << mk_pp(unit, m) << " #" << unit->get_id() << " " << unit_sign << " @ " << m_scope_lvl << "\n";);
4273
}
4274
4275
m_conflict_resolution->release_lemma_atoms();
0 commit comments