mirror of
https://github.com/Z3Prover/z3
synced 2025-08-07 11:41:22 +00:00
mux
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2788f72bbb
commit
9262908ebb
30 changed files with 191 additions and 341 deletions
|
@ -139,8 +139,6 @@ uint64_t u64_gcd(uint64_t u, uint64_t v) {
|
|||
template<bool SYNCH>
|
||||
mpz_manager<SYNCH>::mpz_manager():
|
||||
m_allocator("mpz_manager") {
|
||||
if (SYNCH)
|
||||
omp_init_nest_lock(&m_lock);
|
||||
#ifndef _MP_GMP
|
||||
if (sizeof(digit_t) == sizeof(uint64_t)) {
|
||||
// 64-bit machine
|
||||
|
@ -197,8 +195,6 @@ mpz_manager<SYNCH>::~mpz_manager() {
|
|||
mpz_clear(m_int64_max);
|
||||
mpz_clear(m_int64_min);
|
||||
#endif
|
||||
if (SYNCH)
|
||||
omp_destroy_nest_lock(&m_lock);
|
||||
}
|
||||
|
||||
#ifndef _MP_GMP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue