mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 09:34:08 +00:00
fix #4146
This commit is contained in:
parent
c5550e4385
commit
b571e43f85
|
@ -794,11 +794,15 @@ namespace polynomial {
|
|||
~monomial_manager() {
|
||||
dec_ref(m_unit);
|
||||
CTRACE("polynomial", !m_monomials.empty(),
|
||||
tout << "monomials leaked\n";
|
||||
tout << "monomials leaked (can happen during cancelation)\n";
|
||||
for (auto * m : m_monomials) {
|
||||
m->display(tout << m->id() << " " << m->ref_count() << " ") << "\n";
|
||||
});
|
||||
SASSERT(m_monomials.empty());
|
||||
for (monomial* m : m_monomials) {
|
||||
unsigned obj_sz = monomial::get_obj_size(m->size());
|
||||
m_allocator->deallocate(obj_sz, m);
|
||||
}
|
||||
m_monomials.reset();
|
||||
if (m_own_allocator)
|
||||
dealloc(m_allocator);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue