diff options
Diffstat (limited to 'Hilbert/FixBitVec.hpp')
-rw-r--r-- | Hilbert/FixBitVec.hpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Hilbert/FixBitVec.hpp b/Hilbert/FixBitVec.hpp index 0117c89..7955e0b 100644 --- a/Hilbert/FixBitVec.hpp +++ b/Hilbert/FixBitVec.hpp @@ -37,23 +37,10 @@ typedef uint64_t FBV_UINT; #define FBVN1S(n) (n==FBV_BITS?FBV1S:(FBV1<<n)-1) #define FBVMOD(i,m) if((i)>=(m))(i)-=(m)*((i)/(m)); -enum EBitVecType -{ - eFix, - eBig -}; - - class CFixBitVec { public: - static EBitVecType - type() - { - return eFix; - } - // Default constructor. The bits parameter // is completely ignored, but accepted in order // to look and feel the same as a BigBitVec. |