STORM_LOG_DEBUG("Obtained quantitative bounds ["<<quantitativeResult.getMin().getRange(initialStates).first<<", "<<quantitativeResult.getMax().getRange(initialStates).second<<"] on the actual value for the initial states in "<<std::chrono::duration_cast<std::chrono::milliseconds>(quantitativeEnd-quantitativeStart).count()<<"ms.");
//
//// (9) Check whether the lower and upper bounds are close enough to terminate with an answer.
// result = checkForResultAfterQuantitativeCheck<ValueType>(quantitativeResult.min.getInitialStatesRange().first, quantitativeResult.max.getInitialStatesRange().second, comparator);
//if (result) {
// return result;
//}
//
//// Make sure that all strategies are still valid strategies.
// STORM_LOG_ASSERT(quantitativeResult.min.getPlayer1Strategy().isZero() || quantitativeResult.min.getPlayer1Strategy().template toAdd<ValueType>().sumAbstract(game.getPlayer1Variables()).getMax() <= 1, "Player 1 strategy for min is illegal.");
// STORM_LOG_ASSERT(quantitativeResult.max.getPlayer1Strategy().isZero() || quantitativeResult.max.getPlayer1Strategy().template toAdd<ValueType>().sumAbstract(game.getPlayer1Variables()).getMax() <= 1, "Player 1 strategy for max is illegal.");
// STORM_LOG_ASSERT(quantitativeResult.min.getPlayer2Strategy().isZero() || quantitativeResult.min.getPlayer2Strategy().template toAdd<ValueType>().sumAbstract(game.getPlayer2Variables()).getMax() <= 1, "Player 2 strategy for min is illegal.");
// STORM_LOG_ASSERT(quantitativeResult.max.getPlayer2Strategy().isZero() || quantitativeResult.max.getPlayer2Strategy().template toAdd<ValueType>().sumAbstract(game.getPlayer2Variables()).getMax() <= 1, "Player 2 strategy for max is illegal.");
//
// (9) Check whether the lower and upper bounds are close enough to terminate with an answer.
// Make sure that all strategies are still valid strategies.
STORM_LOG_ASSERT(minStrategyPair.getNumberOfUndefinedPlayer1States()==targetStates.getNumberOfSetBits()&&minStrategyPair.getNumberOfUndefinedPlayer2States()==0,"Minimal strategy pair has undefined choices for some relevant states.");
STORM_LOG_ASSERT(maxStrategyPair.getNumberOfUndefinedPlayer1States()==targetStates.getNumberOfSetBits()&&maxStrategyPair.getNumberOfUndefinedPlayer2States()==0,"Maximal strategy pair has undefined choices for some relevant states.");