ABC: A System for Sequential Synthesis and Verification
 
Loading...
Searching...
No Matches
global.h
Go to the documentation of this file.
1#ifndef ABC_SAT_CADICAL_GLOBAL_HPP_
2#define ABC_SAT_CADICAL_GLOBAL_HPP_
3
4// comment out next line to enable cadical debug mode
5#define CADICAL_NDEBUG
6
7#define CADICAL_NBUILD
8#define CADICAL_QUIET
9#define CADICAL_NCONTRACTS
10#define CADICAL_NTRACING
11#define CADICAL_NCLOSEFROM
12
13#ifdef CADICAL_NDEBUG
14#define CADICAL_assert(ignore) ((void)0)
15#else
16#define CADICAL_assert(cond) assert(cond)
17#endif
18
20
21#endif