Start work on Naive Encoders
[satune.git] / src / classlist.h
index ac07af9e8066824cd5f866fb3db864a19efaffe1..d232592fef332c3d58cbe6670569f3e03ce0cfe0 100644 (file)
@@ -9,7 +9,7 @@
 
 #ifndef CLASSLIST_H
 #define CLASSLIST_H
-//#include "hashset.h"
+
 #include "mymemory.h"
 #include <inttypes.h>
 #define bool int
@@ -22,6 +22,11 @@ typedef struct CSolver CSolver;
 struct Constraint;
 typedef struct Constraint Constraint;
 
+typedef struct BooleanOrder BooleanOrder;
+typedef struct BooleanVar BooleanVar;
+typedef struct BooleanLogic BooleanLogic;
+typedef struct BooleanComp BooleanComp;
+
 struct Boolean;
 typedef struct Boolean Boolean;
 
@@ -48,11 +53,14 @@ typedef struct Table Table;
 struct Order;
 typedef struct Order Order;
 
-struct ElementEncoder;
-typedef struct ElementEncoder ElementEncoder;
+struct ElementEncoding;
+typedef struct ElementEncoding ElementEncoding;
+
+struct FunctionEncoding;
+typedef struct FunctionEncoding FunctionEncoding;
 
-struct FunctionEncoder;
-typedef struct FunctionEncoder FunctionEncoder;
+struct TableEntry;
+typedef struct TableEntry TableEntry;
 
 typedef unsigned int uint;
 typedef uint64_t VarType;