3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-25 18:15:32 +00:00

do not cooperate if OMP mode is disabled (i.e. it's single threaded only)

This commit is contained in:
Nuno Lopes 2018-07-14 12:21:43 +01:00
parent bdd8685146
commit 7d20fbb280
3 changed files with 8 additions and 45 deletions

View file

@ -814,9 +814,6 @@ public:
bool is_even(mpz const & a) { return mpz_manager<SYNCH>::is_even(a); }
public:
bool is_even(mpq const & a) { return is_int(a) && is_even(a.m_num); }
friend bool operator==(mpq const & a, mpq const & b) ;
friend bool operator>=(mpq const & a, mpq const & b);
};
typedef mpq_manager<true> synch_mpq_manager;