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