2023-03-26 19:15:17 +08:00

11 lines
175 B
C

#ifndef _xors_h_INCLUDED
#define _xors_h_INCLUDED
#include <stdbool.h>
struct kissat;
bool kissat_find_xor_gate (struct kissat *, unsigned lit, unsigned negative);
#endif