2016-07-26 08:09:34 +00:00
|
|
|
#ifndef THICKENINGS_H
|
|
|
|
#define THICKENINGS_H
|
|
|
|
|
2016-11-19 10:16:45 +00:00
|
|
|
#define BV_QWORD_RANK 10
|
|
|
|
#include "bitvec.h"
|
2016-11-20 22:19:08 +00:00
|
|
|
#include "weyl.h"
|
2016-07-26 08:09:34 +00:00
|
|
|
|
|
|
|
#define DEBUG(msg, ...) do{fprintf(stderr, msg, ##__VA_ARGS__); }while(0)
|
|
|
|
|
2016-11-19 10:16:45 +00:00
|
|
|
// enumerating balanced thickenings
|
2017-01-27 19:48:44 +00:00
|
|
|
long enumerate_balanced_thickenings(doublequotient_t *dq, void (*callback) (const bitvec_t *, int, void*), void *callback_data);
|
2016-07-26 08:09:34 +00:00
|
|
|
|
|
|
|
#endif
|