mirror of
https://github.com/Z3Prover/z3
synced 2025-08-03 18:00:23 +00:00
for Arie
This commit is contained in:
parent
bcedb66911
commit
ef284cca5d
6 changed files with 122 additions and 12 deletions
|
@ -72,7 +72,7 @@ namespace dd {
|
|||
|
||||
void solver::adjust_cfg() {
|
||||
auto & cfg = m_config;
|
||||
IF_VERBOSE(3, verbose_stream() << "start saturate\n"; display_statistics(verbose_stream()));
|
||||
IF_VERBOSE(5, verbose_stream() << "start saturate\n"; display_statistics(verbose_stream()));
|
||||
cfg.m_eqs_threshold = static_cast<unsigned>(cfg.m_eqs_growth * ceil(log(1 + m_to_simplify.size()))* m_to_simplify.size());
|
||||
cfg.m_expr_size_limit = 0;
|
||||
cfg.m_expr_degree_limit = 0;
|
||||
|
@ -83,7 +83,7 @@ namespace dd {
|
|||
cfg.m_expr_size_limit *= cfg.m_expr_size_growth;
|
||||
cfg.m_expr_degree_limit *= cfg.m_expr_degree_growth;;
|
||||
|
||||
IF_VERBOSE(3, verbose_stream() << "set m_config.m_eqs_threshold " << m_config.m_eqs_threshold << "\n";
|
||||
IF_VERBOSE(5, verbose_stream() << "set m_config.m_eqs_threshold " << m_config.m_eqs_threshold << "\n";
|
||||
verbose_stream() << "set m_config.m_expr_size_limit to " << m_config.m_expr_size_limit << "\n";
|
||||
verbose_stream() << "set m_config.m_expr_degree_limit to " << m_config.m_expr_degree_limit << "\n";
|
||||
);
|
||||
|
@ -98,7 +98,7 @@ namespace dd {
|
|||
while (!done() && step()) {
|
||||
TRACE(dd_solver, display(tout););
|
||||
DEBUG_CODE(invariant(););
|
||||
IF_VERBOSE(3, display_statistics(verbose_stream()));
|
||||
IF_VERBOSE(6, display_statistics(verbose_stream()));
|
||||
}
|
||||
DEBUG_CODE(invariant(););
|
||||
}
|
||||
|
|
|
@ -86,8 +86,8 @@ namespace nla {
|
|||
if (m_quota > 0)
|
||||
--m_quota;
|
||||
|
||||
IF_VERBOSE(3, verbose_stream() << "grobner miss, quota " << m_quota << "\n");
|
||||
IF_VERBOSE(4, diagnose_pdd_miss(verbose_stream()));
|
||||
IF_VERBOSE(5, verbose_stream() << "grobner miss, quota " << m_quota << "\n");
|
||||
IF_VERBOSE(5, diagnose_pdd_miss(verbose_stream()));
|
||||
}
|
||||
|
||||
dd::solver::equation_vector const& grobner::core_equations(bool all_eqs) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue