Progress on early subsumption

Signed-off-by: gothictomato <gothictomato@pm.me>
This commit is contained in:
gothictomato
2022-08-18 22:04:52 -04:00
parent 1d938273f3
commit a1b6cdaea9
10 changed files with 679 additions and 13 deletions

4
cnf.h
View File

@@ -4,6 +4,7 @@
#include <string.h>
#include <stdio.h>
#define CHECK(X, Y) if (X == NULL) { \
printf(Y); \
return NULL; \
@@ -20,6 +21,7 @@ typedef struct {
u8* pars;
} cnf;
cnf* readDIMACS(char* path);
void printcnf(cnf* c);
@@ -28,4 +30,4 @@ void printcnf(cnf* c);
void sortlastnum(cnf* c, u64 N);
void freecnf(cnf* c);
void freecnf(cnf* c);