3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-30 04:15:51 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-10-26 12:06:02 -07:00
parent 1720addc4e
commit 2258b9b9b6
3 changed files with 14 additions and 4 deletions

View file

@ -1354,7 +1354,6 @@ namespace pb {
si(si), m_pb(m),
m_lookahead(nullptr),
m_constraint_id(0), m_ba(*this), m_sort(m_ba) {
TRACE("pb", tout << this << "\n";);
m_num_propagations_since_pop = 0;
}
@ -1432,6 +1431,7 @@ namespace pb {
}
if (!c->well_formed())
IF_VERBOSE(0, verbose_stream() << *c << "\n");
SASSERT(c->well_formed());
VERIFY(c->well_formed());
if (m_solver && m_solver->get_config().m_drat) {
auto * out = s().get_drat().out();