3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-09-24 15:56:53 -07:00
parent 38ad66ce17
commit d0fc463a0c
2 changed files with 16 additions and 6 deletions

View file

@ -609,7 +609,7 @@ namespace qe {
if (a.is_power(n, n1, n2) && a.is_numeral(n2, r) && r.is_unsigned()) {
return;
}
if (a.is_div(n) && s.m_mode == qsat_t) {
if (a.is_div(n) && s.m_mode == qsat_t && is_ground(n)) {
m_has_divs = true;
return;
}