mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 10:52:02 +00:00
pull unstable
Signed-off-by: Nikolaj Bjorner <nbjorner@hotmail.com>
This commit is contained in:
commit
52619b9dbb
337 changed files with 24943 additions and 30606 deletions
|
@ -3328,13 +3328,13 @@ namespace smt {
|
|||
CASSERT("dyn_ack", check_clauses(m_lemmas) && check_clauses(m_aux_clauses));
|
||||
}
|
||||
|
||||
if (resource_limits_exceeded()) {
|
||||
SASSERT(!inconsistent());
|
||||
if (resource_limits_exceeded() && !inconsistent()) {
|
||||
return l_undef;
|
||||
}
|
||||
|
||||
if (m_base_lvl == m_scope_lvl && m_fparams.m_simplify_clauses)
|
||||
simplify_clauses();
|
||||
|
||||
|
||||
if (!decide()) {
|
||||
final_check_status fcs = final_check();
|
||||
|
@ -3349,8 +3349,7 @@ namespace smt {
|
|||
}
|
||||
}
|
||||
|
||||
if (resource_limits_exceeded()) {
|
||||
SASSERT(!inconsistent());
|
||||
if (resource_limits_exceeded() && !inconsistent()) {
|
||||
return l_undef;
|
||||
}
|
||||
}
|
||||
|
@ -3363,7 +3362,7 @@ namespace smt {
|
|||
if (m_last_search_failure != OK)
|
||||
return true;
|
||||
|
||||
if (m_timer.ms_timeout(m_fparams.m_soft_timeout)) {
|
||||
if (m_timer.ms_timeout(m_fparams.m_timeout)) {
|
||||
m_last_search_failure = TIMEOUT;
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue