3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-20 11:22:04 +00:00

comment out debug output

This commit is contained in:
Lev Nachmanson 2023-07-16 18:40:53 -10:00
parent fd5902f76e
commit 0a91465e13

View file

@ -203,7 +203,7 @@ namespace euf {
SASSERT(n->num_args() > 0); SASSERT(n->num_args() > 0);
enode * n_prime; enode * n_prime;
void * t = get_table(n); void * t = get_table(n);
verbose_stream() << "insert " << n << "\n"; //verbose_stream() << "insert " << n << "\n";
switch (static_cast<table_kind>(GET_TAG(t))) { switch (static_cast<table_kind>(GET_TAG(t))) {
case UNARY: case UNARY:
n_prime = UNTAG(unary_table*, t)->insert_if_not_there(n); n_prime = UNTAG(unary_table*, t)->insert_if_not_there(n);
@ -225,10 +225,10 @@ namespace euf {
SASSERT(n->num_args() > 0); SASSERT(n->num_args() > 0);
void * t = get_table(n); void * t = get_table(n);
static unsigned count = 0; static unsigned count = 0;
verbose_stream() << "erase " << (++count) << " " << n << "\n"; //verbose_stream() << "erase " << (++count) << " " << n << "\n";
if (count == 10398) { // if (count == 10398) {
verbose_stream() << "here\n"; // verbose_stream() << "here\n";
} // }
switch (static_cast<table_kind>(GET_TAG(t))) { switch (static_cast<table_kind>(GET_TAG(t))) {
case UNARY: case UNARY:
UNTAG(unary_table*, t)->erase(n); UNTAG(unary_table*, t)->erase(n);