Go to the source code of this file.
|
namespace | operations_research |
| In SWIG mode, we don't want anything besides these top-level includes.
|
|
|
| ABSL_FLAG (int, bitset_small_bitset_count, 8, "threshold to count bits with buckets") |
|
◆ BIT_COUNT_RANGE
#define BIT_COUNT_RANGE |
( |
| size, |
|
|
| zero ) |
-------— Bit Operations -------—
Definition at line 26 of file bitset.cc.
◆ IS_EMPTY_RANGE
#define IS_EMPTY_RANGE |
( |
| size | ) |
|
Value: bool IsEmptyRange##
size(
const uint##
size##_t*
const bits, \
const int offset_start = BitOffset##
size(
start); \
const int offset_end = BitOffset##
size(
end); \
const int pos_end = BitPos##
size(
end); \
if (offset_end == offset_start) { \
if (bits[offset_start] & OneRange##
size(pos_start, pos_end)) { \
return false; \
} \
} else { \
if (bits[offset_start] & IntervalUp##
size(pos_start)) { \
return false; \
} \
for (int offset = offset_start + 1; offset < offset_end; ++offset) { \
if (bits[offset]) { \
return false; \
} \
} \
if (bits[offset_end] & IntervalDown##
size(pos_end)) { \
return false; \
} \
} \
return true; \
}
std::optional< int64_t > end
Definition at line 64 of file bitset.cc.
◆ LEAST_SIGNIFCANT_BIT_POSITION
#define LEAST_SIGNIFCANT_BIT_POSITION |
( |
| size | ) |
|
◆ MOST_SIGNIFICANT_BIT_POSITION
#define MOST_SIGNIFICANT_BIT_POSITION |
( |
| size | ) |
|
◆ UNSAFE_LEAST_SIGNIFICANT_BIT_POSITION
#define UNSAFE_LEAST_SIGNIFICANT_BIT_POSITION |
( |
| size | ) |
|
Value: int##
size##_t UnsafeLeastSignificantBitPosition##
size( \
DCHECK(IsBitSet##
size(bits,
end)); \
} \
const int offset_start = BitOffset##
size(
start); \
const int offset_end = BitOffset##
size(
end); \
const uint##
size##_t start_mask = \
bits[offset_start] & IntervalUp##
size(pos_start); \
if (start_mask) { \
return BitShift##
size(offset_start) + \
LeastSignificantBitPosition##
size(start_mask); \
} \
for (int offset = offset_start + 1; offset <= offset_end; ++offset) { \
if (bits[offset]) { \
return BitShift##
size(offset) + \
LeastSignificantBitPosition##
size(bits[offset]); \
} \
} \
return -1; \
}
Definition at line 199 of file bitset.cc.
◆ UNSAFE_MOST_SIGNIFICANT_BIT_POSITION
#define UNSAFE_MOST_SIGNIFICANT_BIT_POSITION |
( |
| size | ) |
|
Value: int##
size##_t UnsafeMostSignificantBitPosition##
size( \
} \
const int offset_start = BitOffset##
size(
start); \
const int offset_end = BitOffset##
size(
end); \
const int pos_end = BitPos##
size(
end); \
const uint##
size##_t end_mask = \
bits[offset_end] & IntervalDown##
size(pos_end); \
if (end_mask) { \
return BitShift##
size(offset_end) + \
MostSignificantBitPosition##
size(end_mask); \
} \
for (int offset = offset_end - 1; offset >= offset_start; --offset) { \
if (bits[offset]) { \
return BitShift##
size(offset) + \
MostSignificantBitPosition##
size(bits[offset]); \
} \
} \
return -1; \
}
Definition at line 231 of file bitset.cc.
◆ ABSL_FLAG()
ABSL_FLAG |
( |
int | , |
|
|
bitset_small_bitset_count | , |
|
|
8 | , |
|
|
"threshold to count bits with buckets" | ) |
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.