mirror of
https://github.com/Z3Prover/z3
synced 2025-07-19 02:42:02 +00:00
parent
0b856638e9
commit
426e4cc75c
65 changed files with 135 additions and 146 deletions
|
@ -191,7 +191,7 @@ public:
|
|||
return m_solver2->get_consequences(asms, vars, consequences);
|
||||
}
|
||||
catch (z3_exception& ex) {
|
||||
if (get_manager().canceled()) {
|
||||
if (!get_manager().inc()) {
|
||||
throw;
|
||||
}
|
||||
else {
|
||||
|
@ -217,7 +217,7 @@ public:
|
|||
if (m_inc_timeout == UINT_MAX) {
|
||||
IF_VERBOSE(PS_VB_LVL, verbose_stream() << "(combined-solver \"using solver 2 (without a timeout)\")\n";);
|
||||
lbool r = m_solver2->check_sat_core(num_assumptions, assumptions);
|
||||
if (r != l_undef || !use_solver1_when_undef() || get_manager().canceled()) {
|
||||
if (r != l_undef || !use_solver1_when_undef() || !get_manager().inc()) {
|
||||
return r;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue