3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 12:08:18 +00:00

no normalize

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-01-20 19:21:19 +01:00
parent 75a81af426
commit b1ff4bc24a

View file

@ -722,7 +722,6 @@ namespace algebraic_numbers {
\brief Make sure that if a is 0, then a.m_cell == 0 \brief Make sure that if a is 0, then a.m_cell == 0
*/ */
void normalize(numeral & a) { void normalize(numeral & a) {
std::cout << "normalize\n";
if (is_zero(a)) if (is_zero(a))
return; return;
if (a.is_basic()) { if (a.is_basic()) {