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

12 lines
173 B
C

#ifndef _analyze_h_INCLUDED
#define _analyze_h_INCLUDED
#include <stdbool.h>
struct clause;
struct kissat;
int kissat_analyze (struct kissat *, struct clause *);
#endif