3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-13 22:41:15 +00:00

make m_inf_set private and cosmetic improvements in nla patching

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-05-25 13:46:47 -07:00
parent d8cea7c8d5
commit caa384f6c9
12 changed files with 95 additions and 43 deletions

View file

@ -1712,7 +1712,6 @@ public:
final_check_status st = FC_DONE;
switch (is_sat) {
case l_true:
TRACE("arith", display(tout););
switch (check_lia()) {
case l_true:
@ -2189,7 +2188,10 @@ public:
TRACE("arith", tout << "canceled\n";);
return l_undef;
}
if (!m_nla) return l_true;
if (!m_nla) {
TRACE("arith", tout << "no nla\n";);
return l_true;
}
if (!m_nla->need_check()) return l_true;
return check_nla_continue();
}