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:
parent
bdd8685146
commit
7d20fbb280
3 changed files with 8 additions and 45 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue