|
|
@ -381,10 +381,10 @@ namespace storm { |
|
|
|
if (model->getType() == storm::models::ModelType::Dtmc) { |
|
|
|
result = verifySparseDtmc(model->template as<storm::models::sparse::Dtmc<storm::RationalFunction>>(), task); |
|
|
|
} else if (model->getType() == storm::models::ModelType::Mdp) { |
|
|
|
std::shared_ptr<storm::models::sparse::Mdp<storm::RationalFunction>> mdp = model->template as<storm::models::sparse::Mdp<storm::RationalFunction>>(); |
|
|
|
//std::shared_ptr<storm::models::sparse::Mdp<storm::RationalFunction>> mdp = model->template as<storm::models::sparse::Mdp<storm::RationalFunction>>(); |
|
|
|
STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "The parametric engine currently does not support MDPs."); |
|
|
|
} else if (model->getType() == storm::models::ModelType::Ctmc) { |
|
|
|
verifySparseCtmc(model->template as<storm::models::sparse::Ctmc<storm::RationalFunction>>(), task); |
|
|
|
result = verifySparseCtmc(model->template as<storm::models::sparse::Ctmc<storm::RationalFunction>>(), task); |
|
|
|
} else { |
|
|
|
STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "The parametric engine currently does not support " << model->getType()); |
|
|
|
} |
|
|
|