STORM_LOG_THROW(it!=expressionToBddMap.end(),storm::exceptions::InvalidArgumentException,"The given expression was not used in the abstraction process and can therefore not be retrieved.");
STORM_LOG_THROW(it!=expressionToBddMap.end(),storm::exceptions::InvalidArgumentException,"The given expression was not used in the abstraction process and can therefore not be retrieved.");
STORM_LOG_THROW(program.getModelType()==storm::prism::Program::ModelType::MDP,storm::exceptions::NotSupportedException,"Currently only MDPs are supported by the game-based model checker.");
STORM_LOG_THROW(program.getModelType()==storm::prism::Program::ModelType::DTMC||program.getModelType()==storm::prism::Program::ModelType::MDP,storm::exceptions::NotSupportedException,"Currently only DTMCs/MDPs are supported by the game-based model checker.");
// Start by preparing the program. That is, we flatten the modules if there is more than one.
// Start by preparing the program. That is, we flatten the modules if there is more than one.
STORM_LOG_THROW(checkTask.isOnlyInitialStatesRelevantSet(),storm::exceptions::InvalidPropertyException,"The game-based abstraction refinement model checker can only compute the result for the initial states.");
STORM_LOG_THROW(checkTask.isOnlyInitialStatesRelevantSet(),storm::exceptions::InvalidPropertyException,"The game-based abstraction refinement model checker can only compute the result for the initial states.");
STORM_LOG_THROW(formula.isAtomicExpressionFormula()||formula.isAtomicLabelFormula(),storm::exceptions::InvalidPropertyException,"The target states have to be given as label or an expression.");
STORM_LOG_THROW(formula.isAtomicExpressionFormula()||formula.isAtomicLabelFormula(),storm::exceptions::InvalidPropertyException,"The target states have to be given as label or an expression.");
STORM_LOG_THROW(rowExpressionAdapter!=nullptr,storm::exceptions::InvalidOperationException,"Cannot create BDD for expression without expression adapter.");
STORM_LOG_THROW(rowExpressionAdapter!=nullptr,storm::exceptions::InvalidOperationException,"Cannot create BDD for expression without expression adapter.");
this->addOption(storm::settings::OptionBuilder(moduleName,addAllGuardsOptionName,true,"Sets whether all guards are added as initial predicates.").build());
STORM_LOG_THROW(program.getModelType()==storm::prism::Program::ModelType::MDP,storm::exceptions::InvalidSettingsException,"Cannot treat non-MDP model using the abstraction refinement engine.");
STORM_LOG_THROW(program.getModelType()==storm::prism::Program::ModelType::DTMC||program.getModelType()==storm::prism::Program::ModelType::MDP,storm::exceptions::InvalidSettingsException,"Can only treat DTMCs/MDPs using the abstraction refinement engine.");
xxxxxxxxxx