STORM_LOG_ASSERT(this->getModel().getInitialStates().getNumberOfSetBits()==1,"Multi Objective Model checking on model with multiple initial states is not supported.");
STORM_LOG_ASSERT(this->getModel().getInitialStates().getNumberOfSetBits()==1,"Multi-objective Model checking on model with multiple initial states is not supported.");
STORM_LOG_THROW(this->getModel().isClosed(),storm::exceptions::InvalidArgumentException,"Unable to check multi-objective formula in non-closed Markov automaton.");
// Time formulas are only supported for Markov automata
STORM_LOG_THROW(data.originalModel.isOfType(storm::models::ModelType::MarkovAutomaton),storm::exceptions::InvalidPropertyException,"Time operator formulas are only supported for Markov automata.");
// reward finiteness does not need to be checked if we want to minimize time
STORM_LOG_THROW(formula.hasDiscreteTimeBound(),storm::exceptions::InvalidPropertyException,"Expected a boundedUntilFormula with a discrete time bound but got "<<formula<<".");
STORM_LOG_THROW(*currentObjective.stepBound>0,storm::exceptions::InvalidPropertyException,"Got a boundedUntilFormula with time bound 0. This is not supported.");
STORM_LOG_THROW(formula.hasDiscreteTimeBound(),storm::exceptions::InvalidPropertyException,"Expected a boundedUntilFormula with a discrete time bound but got "<<formula<<".");
STORM_LOG_THROW(formula.getDiscreteTimeBound()>0,storm::exceptions::InvalidPropertyException,"Got a boundedUntilFormula with time bound 0. This is not supported.");
STORM_LOG_THROW(formula.getDiscreteTimeBound()>0,storm::exceptions::InvalidPropertyException,"Got a boundedUntilFormula with time bound 0. This is not supported.");
STORM_LOG_THROW(formula.getIntervalBounds().first==formula.getIntervalBounds().second,storm::exceptions::InvalidPropertyException,"Got a boundedUntilFormula where upper and lower time bounds are equal. This is not supported.");
STORM_LOG_THROW(formula.isReachabilityRewardFormula(),storm::exceptions::InvalidPropertyException,"The formula "<<formula<<" neither considers reachability Probabilities nor reachability rewards");
STORM_LOG_THROW(false,storm::exceptions::InvalidPropertyException,"The formula "<<formula<<" neither considers reachability probabilities nor reachability rewards "<<(data.preprocessedModel.isOfType(storm::models::ModelType::MarkovAutomaton)?"nor reachability time":"")<<". This is not supported.");
STORM_LOG_THROW(!data.originalModel.isOfType(storm::models::ModelType::MarkovAutomaton),storm::exceptions::InvalidPropertyException,"Cumulative reward formulas are not supported for Markov automata.");
STORM_LOG_THROW(formula.hasDiscreteTimeBound(),storm::exceptions::InvalidPropertyException,"Expected a cumulativeRewardFormula with a discrete time bound but got "<<formula<<".");
STORM_LOG_THROW(*currentObjective.stepBound>0,storm::exceptions::InvalidPropertyException,"Got a cumulativeRewardFormula with time bound 0. This is not supported.");
STORM_LOG_THROW(formula.getDiscreteTimeBound()>0,storm::exceptions::InvalidPropertyException,"Got a cumulativeRewardFormula with time bound 0. This is not supported.");
STORM_LOG_THROW(checkHasBeenCalled,storm::exceptions::IllegalFunctionCallException,"Tried to retrieve results but check(..) has not been called before.");
for(autoconst&obj:data.objectives){
STORM_LOG_THROW(!obj.stepBound,storm::exceptions::NotImplementedException,"Scheduler retrival is not implemented for stepbounded objectives.");
STORM_LOG_THROW(!obj.timeBounds,storm::exceptions::NotImplementedException,"Scheduler retrival is not implemented for timeBounded objectives.");
}
returnscheduler;
}
@ -145,7 +145,7 @@ namespace storm {
//Also only compute values for objectives with weightVector != zero,
//one check can be omitted as the result can be computed back from the weighed result and the results from the remaining objectives