mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
lia2card simplifications, move up before elim01 (which could be deprecated)
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
43441d0fd5
commit
bee4716a85
7 changed files with 55 additions and 10 deletions
|
@ -197,13 +197,17 @@ bool is_threaded();
|
|||
} \
|
||||
} } ((void) 0)
|
||||
|
||||
#ifdef _NO_OMP_
|
||||
#define LOCK_CODE(CODE) CODE;
|
||||
#else
|
||||
#define LOCK_CODE(CODE) \
|
||||
{ \
|
||||
__pragma(omp critical (verbose_lock)) \
|
||||
{ \
|
||||
CODE; \
|
||||
} \
|
||||
__pragma(omp critical (verbose_lock)) \
|
||||
{ \
|
||||
CODE; \
|
||||
} \
|
||||
}
|
||||
#endif
|
||||
|
||||
template<typename T>
|
||||
struct default_eq {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue