mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 02:15:19 +00:00
add priority queue to instantiation
This commit is contained in:
parent
942706e271
commit
22b0c3aa70
|
@ -31,12 +31,8 @@ void tbv_manager::debug_alloc() {
|
|||
|
||||
tbv_manager::~tbv_manager() {
|
||||
DEBUG_CODE(
|
||||
ptr_vector<tbv>::iterator it = allocated_tbvs.begin();
|
||||
ptr_vector<tbv>::iterator end = allocated_tbvs.end();
|
||||
for (; it != end; ++it) {
|
||||
std::cout << "dangling: " << (*it) << "\n";
|
||||
TRACE("doc", tout << "dangling: " << (*it) << "\n";);
|
||||
});
|
||||
for (auto t : allocated_tbvs)
|
||||
TRACE("doc", tout << "dangling: " << t << "\n";););
|
||||
}
|
||||
|
||||
void tbv_manager::reset() {
|
||||
|
|
Loading…
Reference in a new issue