| 
					
					
						
							
						
					
					
				 | 
				@ -412,6 +412,7 @@ namespace storm { | 
			
		
		
	
		
			
				 | 
				 | 
				        } | 
				 | 
				 | 
				        } | 
			
		
		
	
		
			
				 | 
				 | 
				
 | 
				 | 
				 | 
				
 | 
			
		
		
	
		
			
				 | 
				 | 
				        uint_fast64_t BitVector::getAsInt(uint_fast64_t bitIndex, uint_fast64_t numberOfBits) const { | 
				 | 
				 | 
				        uint_fast64_t BitVector::getAsInt(uint_fast64_t bitIndex, uint_fast64_t numberOfBits) const { | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				            STORM_LOG_ASSERT(numberOfBits <= 64, "Number of bits must be <= 64."); | 
			
		
		
	
		
			
				 | 
				 | 
				            uint64_t bucket = bitIndex >> 6; | 
				 | 
				 | 
				            uint64_t bucket = bitIndex >> 6; | 
			
		
		
	
		
			
				 | 
				 | 
				            uint64_t bitIndexInBucket = bitIndex & mod64mask; | 
				 | 
				 | 
				            uint64_t bitIndexInBucket = bitIndex & mod64mask; | 
			
		
		
	
		
			
				 | 
				 | 
				
 | 
				 | 
				 | 
				
 | 
			
		
		
	
	
		
			
				| 
					
						
							
						
					
					
						
							
						
					
					
				 | 
				@ -451,7 +452,8 @@ namespace storm { | 
			
		
		
	
		
			
				 | 
				 | 
				        } | 
				 | 
				 | 
				        } | 
			
		
		
	
		
			
				 | 
				 | 
				
 | 
				 | 
				 | 
				
 | 
			
		
		
	
		
			
				 | 
				 | 
				        void BitVector::setFromInt(uint_fast64_t bitIndex, uint_fast64_t numberOfBits, uint64_t value) { | 
				 | 
				 | 
				        void BitVector::setFromInt(uint_fast64_t bitIndex, uint_fast64_t numberOfBits, uint64_t value) { | 
			
		
		
	
		
			
				 | 
				 | 
				            STORM_LOG_ASSERT((value >> numberOfBits) == 0, "Integer value too large to fit in the given number of bits."); | 
				 | 
				 | 
				 | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				            STORM_LOG_ASSERT(numberOfBits <= 64, "Number of bits must be <= 64."); | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				            STORM_LOG_ASSERT(numberOfBits == 64 || (value >> numberOfBits) == 0, "Integer value too large to fit in the given number of bits."); | 
			
		
		
	
		
			
				 | 
				 | 
				
 | 
				 | 
				 | 
				
 | 
			
		
		
	
		
			
				 | 
				 | 
				            uint64_t bucket = bitIndex >> 6; | 
				 | 
				 | 
				            uint64_t bucket = bitIndex >> 6; | 
			
		
		
	
		
			
				 | 
				 | 
				            uint64_t bitIndexInBucket = bitIndex & mod64mask; | 
				 | 
				 | 
				            uint64_t bitIndexInBucket = bitIndex & mod64mask; | 
			
		
		
	
	
		
			
				| 
					
						
							
						
					
					
						
							
						
					
					
				 | 
				@ -692,4 +694,4 @@ namespace std { | 
			
		
		
	
		
			
				 | 
				 | 
				    std::size_t hash<storm::storage::BitVector>::operator()(storm::storage::BitVector const& bv) const { | 
				 | 
				 | 
				    std::size_t hash<storm::storage::BitVector>::operator()(storm::storage::BitVector const& bv) const { | 
			
		
		
	
		
			
				 | 
				 | 
				        return boost::hash_range(bv.bucketVector.begin(), bv.bucketVector.end()); | 
				 | 
				 | 
				        return boost::hash_range(bv.bucketVector.begin(), bv.bucketVector.end()); | 
			
		
		
	
		
			
				 | 
				 | 
				    } | 
				 | 
				 | 
				    } | 
			
		
		
	
		
			
				 | 
				 | 
				} | 
				 | 
				 | 
				 | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				} |