mirror of
https://github.com/Z3Prover/z3
synced 2025-04-08 18:31:49 +00:00
Require verbosity=1 to log parallel tactic progress
This commit is contained in:
parent
6cc82f0401
commit
45595af665
|
@ -351,7 +351,7 @@ private:
|
|||
}
|
||||
|
||||
void log_branches(lbool status) {
|
||||
IF_VERBOSE(0, verbose_stream() << "(tactic.parallel :progress " << m_progress << "% ";
|
||||
IF_VERBOSE(1, verbose_stream() << "(tactic.parallel :progress " << m_progress << "% ";
|
||||
if (status == l_true) verbose_stream() << ":status sat";
|
||||
if (status == l_undef) verbose_stream() << ":status unknown";
|
||||
if (m_num_unsat > 0) verbose_stream() << " :closed " << m_num_unsat << "@" << m_last_depth;
|
||||
|
|
Loading…
Reference in a new issue