| 
					
					
						
							
						
					
					
				 | 
				@ -17,16 +17,16 @@ namespace storm { | 
			
		
		
	
		
			
				 | 
				 | 
				        class StateBlock { | 
				 | 
				 | 
				        class StateBlock { | 
			
		
		
	
		
			
				 | 
				 | 
				        public: | 
				 | 
				 | 
				        public: | 
			
		
		
	
		
			
				 | 
				 | 
				            typedef FlatSetStateContainer container_type; | 
				 | 
				 | 
				            typedef FlatSetStateContainer container_type; | 
			
		
		
	
		
			
				 | 
				 | 
				            typedef typename container_type::value_type value_type; | 
				 | 
				 | 
				 | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				            typedef container_type::value_type value_type; | 
			
		
		
	
		
			
				 | 
				 | 
				            static_assert(std::is_same<value_type, sparse::state_type>::value, "Illegal value type of container."); | 
				 | 
				 | 
				            static_assert(std::is_same<value_type, sparse::state_type>::value, "Illegal value type of container."); | 
			
		
		
	
		
			
				 | 
				 | 
				            typedef typename container_type::iterator iterator; | 
				 | 
				 | 
				 | 
			
		
		
	
		
			
				 | 
				 | 
				            typedef typename container_type::const_iterator const_iterator; | 
				 | 
				 | 
				 | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				            typedef container_type::iterator iterator; | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				            typedef container_type::const_iterator const_iterator; | 
			
		
		
	
		
			
				 | 
				 | 
				             | 
				 | 
				 | 
				             | 
			
		
		
	
		
			
				 | 
				 | 
				            // Default constructors. | 
				 | 
				 | 
				            // Default constructors. | 
			
		
		
	
		
			
				 | 
				 | 
				            StateBlock() = default; | 
				 | 
				 | 
				            StateBlock() = default; | 
			
		
		
	
		
			
				 | 
				 | 
				            StateBlock(StateBlock const& other) = default; | 
				 | 
				 | 
				 | 
			
		
		
	
		
			
				 | 
				 | 
				            StateBlock(StateBlock&& other) = default; | 
				 | 
				 | 
				 | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
							StateBlock(StateBlock const& other) = default; | 
			
		
		
	
		
			
				 | 
				 | 
				#ifndef WINDOWS | 
				 | 
				 | 
				#ifndef WINDOWS | 
			
		
		
	
		
			
				 | 
				 | 
				 | 
				 | 
				 | 
				            StateBlock(StateBlock&& other) = default; | 
			
		
		
	
		
			
				 | 
				 | 
				            StateBlock& operator=(StateBlock const& other) = default; | 
				 | 
				 | 
				            StateBlock& operator=(StateBlock const& other) = default; | 
			
		
		
	
		
			
				 | 
				 | 
				            StateBlock& operator=(StateBlock&& other) = default; | 
				 | 
				 | 
				            StateBlock& operator=(StateBlock&& other) = default; | 
			
		
		
	
		
			
				 | 
				 | 
				#endif | 
				 | 
				 | 
				#endif | 
			
		
		
	
	
		
			
				| 
					
						
							
						
					
					
					
				 | 
				
  |