mirror of
https://github.com/Z3Prover/z3
synced 2025-06-09 07:33:24 +00:00
do not bound all free vars
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
8068c64cab
commit
813b906341
1 changed files with 1 additions and 5 deletions
|
@ -1461,7 +1461,7 @@ public:
|
||||||
return atom;
|
return atom;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool all_variables_have_bounds() {
|
bool make_sure_all_vars_have_bounds() {
|
||||||
if (!m_has_int) {
|
if (!m_has_int) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -1595,10 +1595,6 @@ public:
|
||||||
TRACE("arith", tout << "canceled\n";);
|
TRACE("arith", tout << "canceled\n";);
|
||||||
return l_undef;
|
return l_undef;
|
||||||
}
|
}
|
||||||
if (!all_variables_have_bounds()) {
|
|
||||||
TRACE("arith", tout << "not all variables have bounds\n";);
|
|
||||||
return l_false;
|
|
||||||
}
|
|
||||||
if (!check_idiv_bounds()) {
|
if (!check_idiv_bounds()) {
|
||||||
TRACE("arith", tout << "idiv bounds check\n";);
|
TRACE("arith", tout << "idiv bounds check\n";);
|
||||||
return l_false;
|
return l_false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue