/* Copyright (c) 2013 Microsoft Corporation. All rights reserved. Released under Apache 2.0 license as described in the file LICENSE. Author: Leonardo de Moura */ #include #include "mpz.h" namespace lean { unsigned mpz::log2() const { if (is_nonpos()) return 0; unsigned r = mpz_sizeinbase(m_val, 2); lean_assert(r > 0); return r - 1; } unsigned mpz::mlog2() const { if (is_nonneg()) return 0; mpz * _this = const_cast(this); _this->neg(); lean_assert(is_pos()); unsigned r = mpz_sizeinbase(m_val, 2); _this->neg(); lean_assert(is_neg()); return r - 1; } bool mpz::is_power_of_two(unsigned & shift) const { if (is_nonpos()) return false; if (mpz_popcount(m_val) == 1) { shift = log2(); return true; } else { return false; } } mpz operator%(mpz const & a, mpz const & b) { mpz r(rem(a, b)); if (r.is_neg()) { if (b.is_pos()) r += b; else r -= b; } return r; } void display(std::ostream & out, __mpz_struct const * v) { size_t sz = mpz_sizeinbase(v, 10) + 2; if (sz < 1024) { char buffer[1024]; mpz_get_str(buffer, 10, v); out << buffer; } else { std::unique_ptr buffer(new char[sz]); mpz_get_str(buffer.get(), 10, v); out << buffer.get(); } } std::ostream & operator<<(std::ostream & out, mpz const & v) { display(out, v.m_val); return out; } }