mirror of
https://github.com/Z3Prover/z3
synced 2026-01-04 18:18:48 +00:00
disable fixes for #2128 and related as it breaks model evaluation time in regressions, set longer delay for inprocessing in sat solver, report stats
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c7bd985fac
commit
24dfdfe9bc
9 changed files with 44 additions and 34 deletions
|
|
@ -56,11 +56,10 @@ namespace sat {
|
|||
~report() {
|
||||
m_watch.stop();
|
||||
unsigned elim_bin = m_scc.m_num_elim_bin - m_num_elim_bin;
|
||||
IF_VERBOSE(SAT_VB_LVL,
|
||||
IF_VERBOSE(2,
|
||||
verbose_stream() << " (sat-scc :elim-vars " << (m_scc.m_num_elim - m_num_elim);
|
||||
if (elim_bin > 0) verbose_stream() << " :elim-bin " << elim_bin;
|
||||
verbose_stream() << mk_stat(m_scc.m_solver)
|
||||
<< " :time " << std::fixed << std::setprecision(2) << m_watch.get_seconds() << ")\n";);
|
||||
verbose_stream() << m_watch << ")\n";);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue