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.c
View File

@@ -1,5 +1,6 @@
#include "cnf.h"
/*
cnf* readDIMACS(char* path) {
cnf* c = malloc(sizeof(cnf));
CHECK(c, "Failed to alloc CNF struct\n");
@@ -324,4 +325,5 @@ void sortlastnum(cnf* c, u64 N) {
memcpy(c->lastvars, swaparr, sizeof(u32) * c->clausecnt);
free(swaparr);
free(d);
}
}
*/