|  |  | @ -193,6 +193,14 @@ namespace storm { | 
			
		
	
		
			
				
					|  |  |  |             return modelType == ModelType::DTMC || modelType == ModelType::CTMC; | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |         size_t Program::getNumberOfCommands() const { | 
			
		
	
		
			
				
					|  |  |  |             size_t res = 0; | 
			
		
	
		
			
				
					|  |  |  |             for (auto const& module : this->getModules()) { | 
			
		
	
		
			
				
					|  |  |  |                 res += module.getNumberOfCommands(); | 
			
		
	
		
			
				
					|  |  |  |             } | 
			
		
	
		
			
				
					|  |  |  |             return res; | 
			
		
	
		
			
				
					|  |  |  |         } | 
			
		
	
		
			
				
					|  |  |  |          | 
			
		
	
		
			
				
					|  |  |  |         bool Program::hasUndefinedConstants() const { | 
			
		
	
		
			
				
					|  |  |  |             for (auto const& constant : this->getConstants()) { | 
			
		
	
		
			
				
					|  |  |  |                 if (!constant.isDefined()) { | 
			
		
	
	
		
			
				
					|  |  | 
 |