mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 05:15:52 +00:00
remove remaining _NO_OMP_
This commit is contained in:
parent
37882f5afa
commit
9b375150eb
11 changed files with 39 additions and 71 deletions
|
@ -58,7 +58,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
|
||||
|
@ -218,7 +218,7 @@ public:
|
|||
\brief Return the significand as a mpz numeral.
|
||||
*/
|
||||
void significand(mpff const & n, unsynch_mpz_manager & m, mpz & r);
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
void significand(mpff const & n, synch_mpz_manager & m, mpz & r);
|
||||
#endif
|
||||
|
||||
|
@ -386,7 +386,7 @@ public:
|
|||
void set(mpff & n, mpff const & v);
|
||||
void set(mpff & n, unsynch_mpz_manager & m, mpz const & v);
|
||||
void set(mpff & n, unsynch_mpq_manager & m, mpq const & v);
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
void set(mpff & n, synch_mpq_manager & m, mpq const & v);
|
||||
void set(mpff & n, synch_mpz_manager & m, mpz const & v);
|
||||
#endif
|
||||
|
@ -429,7 +429,7 @@ public:
|
|||
*/
|
||||
void to_mpz(mpff const & n, unsynch_mpz_manager & m, mpz & t);
|
||||
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
/**
|
||||
\brief Convert n into a mpz numeral.
|
||||
|
||||
|
@ -447,7 +447,7 @@ public:
|
|||
*/
|
||||
void to_mpq(mpff const & n, unsynch_mpq_manager & m, mpq & t);
|
||||
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
/**
|
||||
\brief Convert n into a mpq numeral.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue