mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
remove tracing, fix doctext
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1ae0769af5
commit
cbe52e298b
10 changed files with 16 additions and 36 deletions
|
@ -169,28 +169,6 @@ bool family_manager::has_family(symbol const & s) const {
|
|||
return m_families.contains(s);
|
||||
}
|
||||
|
||||
#if 0
|
||||
static unsigned s_count = 0;
|
||||
void ast::inc_ref() {
|
||||
SASSERT(m_ref_count < UINT_MAX);
|
||||
m_ref_count ++;
|
||||
if (get_id() == 1) {
|
||||
s_count++;
|
||||
if (s_count >= 36530) {
|
||||
TRACE("rc", tout << "inc_ref " << m_ref_count << "\n";);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ast::dec_ref() {
|
||||
SASSERT(m_ref_count > 0);
|
||||
m_ref_count --;
|
||||
if (get_id() == 1 && s_count >= 36530) {
|
||||
TRACE("rc", tout << "dec_ref " << m_ref_count << "\n";);
|
||||
// IF_VERBOSE(0, verbose_stream() << "dec_rc " << s_count << "\n";);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
// -----------------------------------
|
||||
//
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue