mirror of
https://github.com/Z3Prover/z3
synced 2025-07-31 08:23:17 +00:00
parent
cbf089e10d
commit
9ca5b3f304
14 changed files with 20 additions and 21 deletions
|
@ -191,7 +191,7 @@ namespace smt {
|
|||
|
||||
template<typename Ext>
|
||||
bool theory_arith<Ext>::satisfy_bounds() const {
|
||||
if (get_manager().limit().get_cancel_flag())
|
||||
if (get_manager().limit().is_canceled())
|
||||
return true;
|
||||
int num = get_num_vars();
|
||||
for (theory_var v = 0; v < num; v++) {
|
||||
|
@ -217,7 +217,7 @@ namespace smt {
|
|||
|
||||
template<typename Ext>
|
||||
bool theory_arith<Ext>::valid_assignment() const {
|
||||
if (get_manager().limit().get_cancel_flag())
|
||||
if (get_manager().limit().is_canceled())
|
||||
return true;
|
||||
if (valid_row_assignment() &&
|
||||
satisfy_bounds() &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue