3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-09-24 12:31:23 -07:00
parent 1203af83eb
commit 38ad66ce17

View file

@ -521,7 +521,7 @@ public:
static unsigned hash(mpz const & a) { return mpz_manager<SYNCH>::hash(a); }
static unsigned hash(mpq const & a) { return hash(a.m_num); }
static unsigned hash(mpq const & a) { return hash(a.m_num) + 3*hash(a.m_den); }
bool eq(mpz const & a, mpz const & b) { return mpz_manager<SYNCH>::eq(a, b); }