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_KISSAT_GLOBAL_H_
2#define ABC_SAT_KISSAT_GLOBAL_H_
3
4// comment out next line to enable kissat debug mode
5#define KISSAT_NDEBUG
6
7#define KISSAT_COMPACT
8#define KISSAT_NOPTIONS
9#define KISSAT_NPROOFS
10#define KISSAT_QUIET
11
12#ifdef KISSAT_NDEBUG
13#define KISSAT_assert(ignore) ((void)0)
14#else
15#define KISSAT_assert(cond) assert(cond)
16#endif
17
19
20#endif