3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-08 10:25:18 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-01-20 19:18:23 +01:00
parent af9ae35984
commit 75a81af426

View file

@ -722,6 +722,7 @@ namespace algebraic_numbers {
\brief Make sure that if a is 0, then a.m_cell == 0
*/
void normalize(numeral & a) {
std::cout << "normalize\n";
if (is_zero(a))
return;
if (a.is_basic()) {
@ -730,9 +731,9 @@ namespace algebraic_numbers {
}
else {
algebraic_cell * c = a.to_algebraic();
if (!upm().normalize_interval_core(c->m_p_sz, c->m_p, sign_lower(c), bqm(), lower(c), upper(c)))
if (!upm().normalize_interval_core(c->m_p_sz, c->m_p, sign_lower(c), bqm(), lower(c), upper(c)))
reset(a);
SASSERT(acell_inv(*c));
SASSERT(is_zero(a) || acell_inv(*a.to_algebraic()));
}
}