|  | @ -143,6 +143,7 @@ namespace storm { | 
		
	
		
			
				|  |  |                 initializeNextIteration(); |  |  |                 initializeNextIteration(); | 
		
	
		
			
				|  |  |             } |  |  |             } | 
		
	
		
			
				|  |  | 
 |  |  | 
 | 
		
	
		
			
				|  |  |  |  |  |             if (approximationThreshold > 0) { | 
		
	
		
			
				|  |  |                 switch (heuristic) { |  |  |                 switch (heuristic) { | 
		
	
		
			
				|  |  |                     case storm::builder::ApproximationHeuristic::NONE: |  |  |                     case storm::builder::ApproximationHeuristic::NONE: | 
		
	
		
			
				|  |  |                         // Do not change anything
 |  |  |                         // Do not change anything
 | 
		
	
	
		
			
				|  | @ -155,6 +156,7 @@ namespace storm { | 
		
	
		
			
				|  |  |                         approximationThreshold = 10 * std::pow(2, iteration); |  |  |                         approximationThreshold = 10 * std::pow(2, iteration); | 
		
	
		
			
				|  |  |                         break; |  |  |                         break; | 
		
	
		
			
				|  |  |                 } |  |  |                 } | 
		
	
		
			
				|  |  |  |  |  |             } | 
		
	
		
			
				|  |  |             exploreStateSpace(approximationThreshold); |  |  |             exploreStateSpace(approximationThreshold); | 
		
	
		
			
				|  |  | 
 |  |  | 
 | 
		
	
		
			
				|  |  |             size_t stateSize = stateStorage.getNumberOfStates() + (mergeFailedStates ? 1 : 0); |  |  |             size_t stateSize = stateStorage.getNumberOfStates() + (mergeFailedStates ? 1 : 0); | 
		
	
	
		
			
				|  | @ -319,7 +321,7 @@ namespace storm { | 
		
	
		
			
				|  |  |                 // Try to explore the next state
 |  |  |                 // Try to explore the next state
 | 
		
	
		
			
				|  |  |                 generator.load(currentState); |  |  |                 generator.load(currentState); | 
		
	
		
			
				|  |  | 
 |  |  | 
 | 
		
	
		
			
				|  |  |                 if (nrExpandedStates > approximationThreshold && !currentExplorationHeuristic->isExpand()) { |  |  |  | 
		
	
		
			
				|  |  |  |  |  |                 if (approximationThreshold > 0.0 && nrExpandedStates > approximationThreshold && !currentExplorationHeuristic->isExpand()) { | 
		
	
		
			
				|  |  |                 //if (currentExplorationHeuristic->isSkip(approximationThreshold)) {
 |  |  |                 //if (currentExplorationHeuristic->isSkip(approximationThreshold)) {
 | 
		
	
		
			
				|  |  |                     // Skip the current state
 |  |  |                     // Skip the current state
 | 
		
	
		
			
				|  |  |                     ++nrSkippedStates; |  |  |                     ++nrSkippedStates; | 
		
	
	
		
			
				|  | 
 |