3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 19:05:51 +00:00

remove remaining _NO_OMP_

This commit is contained in:
Nuno Lopes 2019-06-05 10:07:16 +01:00
parent 37882f5afa
commit 9b375150eb
11 changed files with 39 additions and 71 deletions

View file

@ -51,7 +51,7 @@ class mpz;
class mpq;
template<bool SYNCH> class mpz_manager;
template<bool SYNCH> class mpq_manager;
#ifndef _NO_OMP_
#ifndef SINGLE_THREAD
typedef mpz_manager<true> synch_mpz_manager;
typedef mpq_manager<true> synch_mpq_manager;
#else
@ -318,7 +318,7 @@ public:
void set(mpfx & n, mpfx const & v);
void set(mpfx & n, unsynch_mpz_manager & m, mpz const & v);
void set(mpfx & n, unsynch_mpq_manager & m, mpq const & v);
#ifndef _NO_OMP_
#ifndef SINGLE_THREAD
void set(mpfx & n, synch_mpz_manager & m, mpz const & v);
void set(mpfx & n, synch_mpq_manager & m, mpq const & v);
#endif
@ -366,7 +366,7 @@ public:
*/
void to_mpz(mpfx const & n, unsynch_mpz_manager & m, mpz & t);
#ifndef _NO_OMP_
#ifndef SINGLE_THREAD
/**
\brief Convert n into a mpz numeral.
@ -380,7 +380,7 @@ public:
*/
void to_mpq(mpfx const & n, unsynch_mpq_manager & m, mpq & t);
#ifndef _NO_OMP_
#ifndef SINGLE_THREAD
/**
\brief Convert n into a mpq numeral.
*/