|  | @ -13,11 +13,8 @@ namespace storm { | 
		
	
		
			
				|  |  |             // Transform the transition matrix into a vector containing the states with the state to which the transition goes.
 |  |  |             // Transform the transition matrix into a vector containing the states with the state to which the transition goes.
 | 
		
	
		
			
				|  |  |             std::vector<State*> stateVector = toStateVector(matrix, initialStates); |  |  |             std::vector<State*> stateVector = toStateVector(matrix, initialStates); | 
		
	
		
			
				|  |  | 
 |  |  | 
 | 
		
	
		
			
				|  |  |             // TODO: not initializing all fields of Lattice::Node yet, what to do?
 |  |  |  | 
		
	
		
			
				|  |  |             // Start creating the Lattice
 |  |  |             // Start creating the Lattice
 | 
		
	
		
			
				|  |  |             Lattice::Node top = {topStates}; |  |  |  | 
		
	
		
			
				|  |  |             Lattice::Node bottom = {bottomStates}; |  |  |  | 
		
	
		
			
				|  |  |             Lattice *lattice = new Lattice(&top, &bottom, numberOfStates); |  |  |  | 
		
	
		
			
				|  |  |  |  |  |             Lattice *lattice = new Lattice(topStates, bottomStates, numberOfStates); | 
		
	
		
			
				|  |  |             storm::storage::BitVector oldStates(numberOfStates); |  |  |             storm::storage::BitVector oldStates(numberOfStates); | 
		
	
		
			
				|  |  |             // Create a copy of the states already present in the lattice.
 |  |  |             // Create a copy of the states already present in the lattice.
 | 
		
	
		
			
				|  |  |             storm::storage::BitVector seenStates = topStates|=bottomStates; |  |  |             storm::storage::BitVector seenStates = topStates|=bottomStates; | 
		
	
	
		
			
				|  | 
 |