mirror of
https://github.com/Z3Prover/z3
synced 2026-08-02 12:13:25 +00:00
Update verbose_stream output in sat_asymm_branch.cpp
Refactor verbose_stream output to include memory statistics.
This commit is contained in:
parent
dece18a60a
commit
0e4898be1c
1 changed files with 3 additions and 1 deletions
|
|
@ -68,7 +68,9 @@ namespace sat {
|
|||
if (num_learned > 0) verbose_stream() << " :elim-learned-literals " << num_learned;
|
||||
if (num_units > 0) verbose_stream() << " :units " << num_units;
|
||||
if (tr > 0) verbose_stream() << " :hte " << tr;
|
||||
verbose_stream() << " :cost " << m_asymm_branch.m_counter << ")\n";);
|
||||
verbose_stream() << " :cost " << m_asymm_branch.m_counter;
|
||||
verbose_stream() << mem_stat();
|
||||
verbose_stream() << m_watch << ")\n";);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue