14 lines
357 B
C
14 lines
357 B
C
#ifndef THICKENINGS_H
|
|
#define THICKENINGS_H
|
|
|
|
#define BV_QWORD_RANK 10
|
|
#include "bitvec.h"
|
|
#include "weyl.h"
|
|
|
|
#define DEBUG(msg, ...) do{fprintf(stderr, msg, ##__VA_ARGS__); }while(0)
|
|
|
|
// enumerating balanced thickenings
|
|
long enumerate_balanced_thickenings(doublequotient_t *dq, void (*callback) (const bitvec_t *, int, void*), void *callback_data);
|
|
|
|
#endif
|