Get the bitset used to serialize to disk Return the bitset and bits in the bitsets
| 104 | // Get the bitset used to serialize to disk |
| 105 | // Return the bitset and bits in the bitsets |
| 106 | inline std::pair<unsigned char *, uint64> GetBitSet() { |
| 107 | return std::make_pair(bitset_, m_); |
| 108 | } |
| 109 | |
| 110 | inline uint64 GetSeed() { return seed_; } |
| 111 |