3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 20:38:43 +00:00

fix the nla_exp division

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-07-25 12:34:12 -07:00
parent d4a88f1de6
commit 5248a2dcab

View file

@ -334,9 +334,12 @@ public:
k--;
}
}
SASSERT(powers.size() == 0);
while(k ++ < i)
children().pop_back();
if (children().size() == 0)
*this = scalar(T(1));
return *this;
}