diff options
author | Paul Baltescu <pauldb89@gmail.com> | 2013-02-22 16:52:25 +0000 |
---|---|---|
committer | Paul Baltescu <pauldb89@gmail.com> | 2013-02-22 16:52:25 +0000 |
commit | 6717daa034bfcfa429275f64d84607ae1568d488 (patch) | |
tree | c04c1546eed0e9acaa21907a5f8ab5aedc1a08fc /extractor/veb_bitset.h | |
parent | bb79fdc140a5593124d3943769a644c6cc3d87f6 (diff) | |
parent | d69c289e172562039bcbe987657280332ab6315e (diff) |
Merge branch 'master' into experiment
Diffstat (limited to 'extractor/veb_bitset.h')
-rw-r--r-- | extractor/veb_bitset.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/extractor/veb_bitset.h b/extractor/veb_bitset.h deleted file mode 100644 index f8a91234..00000000 --- a/extractor/veb_bitset.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef _VEB_BITSET_H_ -#define _VEB_BITSET_H_ - -#include <boost/dynamic_bitset.hpp> - -#include "veb.h" - -class VEBBitset: public VEB { - public: - VEBBitset(int size); - - void Insert(int value); - - int GetMinimum(); - - int GetSuccessor(int value); - - private: - boost::dynamic_bitset<> bitset; -}; - -#endif |