Results seem sensible

This commit is contained in:
Florian Stecker
2016-11-23 20:58:05 +01:00
parent c4824abafd
commit 1e0959b7ce
6 changed files with 316 additions and 89 deletions

View File

@@ -7,6 +7,11 @@
#define QUEUE_SIZE 5000
#define ERROR(condition, msg, ...) if(condition){fprintf(stderr, msg, ##__VA_ARGS__); exit(1);}
#ifdef _DEBUG
#define LOG(msg, ...) fprintf(stderr, msg, ##__VA_ARGS__)
#else
#define LOG(msg, ...)
#endif
typedef struct {
unsigned int start;