mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
fix the nla_exp division
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
d4a88f1de6
commit
5248a2dcab
|
@ -334,9 +334,12 @@ public:
|
||||||
k--;
|
k--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
SASSERT(powers.size() == 0);
|
||||||
while(k ++ < i)
|
while(k ++ < i)
|
||||||
children().pop_back();
|
children().pop_back();
|
||||||
|
|
||||||
|
if (children().size() == 0)
|
||||||
|
*this = scalar(T(1));
|
||||||
|
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue