mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 12:50:32 +00:00
parent
164a73febb
commit
cce27ff65f
5 changed files with 12 additions and 5 deletions
|
@ -150,6 +150,9 @@ namespace smt {
|
|||
void qi_queue::instantiate() {
|
||||
unsigned since_last_check = 0;
|
||||
for (entry & curr : m_new_entries) {
|
||||
if (m_context.get_cancel_flag()) {
|
||||
break;
|
||||
}
|
||||
fingerprint * f = curr.m_qb;
|
||||
quantifier * qa = static_cast<quantifier*>(f->get_data());
|
||||
|
||||
|
@ -171,9 +174,6 @@ namespace smt {
|
|||
if (m_context.resource_limits_exceeded()) {
|
||||
break;
|
||||
}
|
||||
if (m_context.get_cancel_flag()) {
|
||||
break;
|
||||
}
|
||||
since_last_check = 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue