BitVector.h 620 B

1234567891011121314151617
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. typedef uint BVIndex;
  7. const BVIndex BVInvalidIndex = (uint)-1;
  8. const int MachBits = 8;
  9. #include "UnitBitVector.h"
  10. #include "FixedBitVectorEnumerator.h"
  11. #include "FixedBitVector.h"
  12. #include "SparseBitVector.h"