12 lines
173 B
C
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
|