|
@ -577,6 +577,10 @@ namespace storm { |
|
|
std::fill_n(buckets, this->bucketCount(), 0); |
|
|
std::fill_n(buckets, this->bucketCount(), 0); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void BitVector::fill() { |
|
|
|
|
|
std::fill_n(buckets, this->bucketCount(), -1ull); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
uint_fast64_t BitVector::getNumberOfSetBits() const { |
|
|
uint_fast64_t BitVector::getNumberOfSetBits() const { |
|
|
return getNumberOfSetBitsBeforeIndex(bitCount); |
|
|
return getNumberOfSetBitsBeforeIndex(bitCount); |
|
|
} |
|
|
} |
|
|