diff --git a/src/storm/modelchecker/rpatl/helper/SparseSmgRpatlHelper.cpp b/src/storm/modelchecker/rpatl/helper/SparseSmgRpatlHelper.cpp index d4e06bbde..40e1c47e9 100644 --- a/src/storm/modelchecker/rpatl/helper/SparseSmgRpatlHelper.cpp +++ b/src/storm/modelchecker/rpatl/helper/SparseSmgRpatlHelper.cpp @@ -132,16 +132,16 @@ namespace storm { clippedStatesOfCoalition.complement(); // Use the bounded globally game vi helper. - storm::modelchecker::helper::internal::BoundedGloballyGameViHelper viHelper(transitionMatrix, clippedStatesOfCoalition); + storm::modelchecker::helper::internal::GameViHelper viHelper(transitionMatrix, clippedStatesOfCoalition); if(!relevantStates.empty() && upperBound > 0) { // Reduce the matrix to relevant states. storm::storage::SparseMatrix submatrix = transitionMatrix.getSubmatrix(true, relevantStates, relevantStates, false); // Update the BoundedGloballyViHelper. - storm::modelchecker::helper::internal::BoundedGloballyGameViHelper viHelper(submatrix, clippedStatesOfCoalition); + storm::modelchecker::helper::internal::GameViHelper viHelper(submatrix, clippedStatesOfCoalition); if (produceScheduler) { viHelper.setProduceScheduler(true); } - viHelper.performValueIteration(env, x, goal.direction(), upperBound, constrainedChoiceValues); + viHelper.performValueIterationUpperBound(env, x, goal.direction(), upperBound, constrainedChoiceValues); } viHelper.fillResultVector(x, relevantStates);