3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-31 19:52:29 +00:00

numeral helper functions

This commit is contained in:
Jakob Rath 2022-08-01 12:14:06 +02:00 committed by Nikolaj Bjorner
parent e31926d132
commit 6eae27ffad
6 changed files with 27 additions and 4 deletions

View file

@ -29,6 +29,9 @@ Revision History:
unsigned u_gcd(unsigned u, unsigned v);
uint64_t u64_gcd(uint64_t u, uint64_t v);
unsigned trailing_zeros(uint64_t);
unsigned trailing_zeros(uint32_t);
#ifdef _MP_GMP
typedef unsigned digit_t;