11 lines
175 B
C
11 lines
175 B
C
|
#ifndef _ands_h_INCLUDED
|
||
|
#define _ands_h_INCLUDED
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
struct kissat;
|
||
|
|
||
|
bool kissat_find_and_gate (struct kissat *, unsigned lit, unsigned negative);
|
||
|
|
||
|
#endif
|