#ifndef BIT_CUBE_H #define BIT_CUBE_H #include "bigint.h" #include "bit_matrix.h" static inline const vector>> bit_cube(bigint a, bigint b, bigint c) { return vector>> (a, bit_matrix(b, c)); } #endif