mirror of
https://github.com/Z3Prover/z3
synced 2025-06-28 08:58:44 +00:00
parent
f946fc516c
commit
13883de389
2 changed files with 51 additions and 39 deletions
|
@ -34,11 +34,13 @@ struct tactic_report::imp {
|
|||
m_goal(g),
|
||||
m_start_memory(static_cast<double>(memory::get_allocation_size())/static_cast<double>(1024*1024)) {
|
||||
m_watch.start();
|
||||
TRACE("tactic", g.display(tout << id << "\n"););
|
||||
}
|
||||
|
||||
~imp() {
|
||||
m_watch.stop();
|
||||
double end_memory = static_cast<double>(memory::get_allocation_size())/static_cast<double>(1024*1024);
|
||||
TRACE("tactic", m_goal.display(tout););
|
||||
IF_VERBOSE(0,
|
||||
verbose_stream() << "(" << m_id
|
||||
<< " :num-exprs " << m_goal.num_exprs()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue