mirror of
https://github.com/Z3Prover/z3
synced 2025-06-14 18:06:15 +00:00
remove remaining _NO_OMP_
This commit is contained in:
parent
37882f5afa
commit
9b375150eb
11 changed files with 39 additions and 71 deletions
|
@ -272,7 +272,7 @@ void mpfx_manager::set(mpfx & n, unsynch_mpz_manager & m, mpz const & v) {
|
|||
set_core(n, m, v);
|
||||
}
|
||||
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
void mpfx_manager::set(mpfx & n, synch_mpz_manager & m, mpz const & v) {
|
||||
set_core(n, m, v);
|
||||
}
|
||||
|
@ -311,7 +311,7 @@ void mpfx_manager::set(mpfx & n, unsynch_mpq_manager & m, mpq const & v) {
|
|||
set_core(n, m, v);
|
||||
}
|
||||
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
void mpfx_manager::set(mpfx & n, synch_mpq_manager & m, mpq const & v) {
|
||||
set_core(n, m, v);
|
||||
}
|
||||
|
@ -718,7 +718,7 @@ void mpfx_manager::to_mpz(mpfx const & n, unsynch_mpz_manager & m, mpz & t) {
|
|||
to_mpz_core(n, m, t);
|
||||
}
|
||||
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
void mpfx_manager::to_mpz(mpfx const & n, synch_mpz_manager & m, mpz & t) {
|
||||
to_mpz_core(n, m, t);
|
||||
}
|
||||
|
@ -744,7 +744,7 @@ void mpfx_manager::to_mpq(mpfx const & n, unsynch_mpq_manager & m, mpq & t) {
|
|||
to_mpq_core(n, m, t);
|
||||
}
|
||||
|
||||
#ifndef _NO_OMP_
|
||||
#ifndef SINGLE_THREAD
|
||||
void mpfx_manager::to_mpq(mpfx const & n, synch_mpq_manager & m, mpq & t) {
|
||||
to_mpq_core(n, m, t);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue