mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
fix nightly regression from solve-eqs context solver addition
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2d0ff7d68a
commit
f99384c6a3
4 changed files with 7 additions and 3 deletions
|
@ -1931,7 +1931,7 @@ namespace smt {
|
|||
derived_bound b(null_theory_var, inf_numeral(0), B_LOWER);
|
||||
dependency2new_bound(d, b);
|
||||
set_conflict(b, ante, "arith_nl");
|
||||
TRACE("non_linear", for (literal lit : b.m_lits) tout << lit << " "; tout << "\n";);
|
||||
TRACE("non_linear", for (literal lit : b.m_lits) get_context().display_literal_verbose(tout, lit) << "\n"; tout << "\n";);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -436,7 +436,7 @@ namespace smt {
|
|||
{
|
||||
context& ctx = th.get_context();
|
||||
m_arith_value.init(&ctx);
|
||||
m_max_set_enumeration = 100;
|
||||
m_max_set_enumeration = 4;
|
||||
}
|
||||
|
||||
~imp() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue