mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 08:15:47 +00:00
neatify logging
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
b11ec3bfbf
commit
ed7cac8cc0
4 changed files with 109 additions and 27 deletions
|
@ -84,11 +84,11 @@ namespace sat {
|
|||
if (s.m_inconsistent)
|
||||
break;
|
||||
unsigned num_elim = m_elim_literals + m_tr - elim;
|
||||
IF_VERBOSE(1, verbose_stream() << "(sat-asymm-branch-step :elim " << num_elim << ")\n";);
|
||||
IF_VERBOSE(2, verbose_stream() << "(sat-asymm-branch-step :elim " << num_elim << ")\n";);
|
||||
if (num_elim == 0)
|
||||
break;
|
||||
}
|
||||
IF_VERBOSE(1, if (m_elim_learned_literals > eliml0)
|
||||
IF_VERBOSE(2, if (m_elim_learned_literals > eliml0)
|
||||
verbose_stream() << "(sat-asymm-branch :elim " << m_elim_learned_literals - eliml0 << ")\n";);
|
||||
return m_elim_literals > elim0;
|
||||
}
|
||||
|
@ -98,7 +98,7 @@ namespace sat {
|
|||
unsigned elim = m_elim_literals;
|
||||
process(nullptr, s.m_clauses);
|
||||
s.propagate(false);
|
||||
IF_VERBOSE(1, if (m_elim_learned_literals > eliml0)
|
||||
IF_VERBOSE(2, if (m_elim_learned_literals > eliml0)
|
||||
verbose_stream() << "(sat-asymm-branch :elim " << m_elim_learned_literals - eliml0 << ")\n";);
|
||||
return m_elim_literals > elim;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue