From bdbc6d9c69cc705b8964e95a4b1e07717f20014e Mon Sep 17 00:00:00 2001 From: dehnert Date: Tue, 7 Nov 2017 16:33:59 +0100 Subject: [PATCH] fixed typo --- .../abstraction/AbstractAbstractionRefinementModelChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp b/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp index b40ae38ee..e831df563 100644 --- a/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp +++ b/src/storm/modelchecker/abstraction/AbstractAbstractionRefinementModelChecker.cpp @@ -299,7 +299,7 @@ namespace storm { template std::pair, std::unique_ptr> AbstractAbstractionRefinementModelChecker::computeQuantitativeResult(storm::models::symbolic::Model const& abstractModel, storm::abstraction::SymbolicStateSet const& constraintStates, storm::abstraction::SymbolicStateSet const& targetStates, storm::abstraction::SymbolicQualitativeResultMinMax const& qualitativeResults) { - STORM_LOG_THROW(abstractModel.isOfType(storm::models::ModelType::Dtmc) || abstractModel.isOfType(storm::models::ModelType::Mdp) || abstractModel.isOfType(storm::models::ModelType::Mdp), storm::exceptions::NotSupportedException, "Abstract model type is not supported."); + STORM_LOG_THROW(abstractModel.isOfType(storm::models::ModelType::Dtmc) || abstractModel.isOfType(storm::models::ModelType::Mdp) || abstractModel.isOfType(storm::models::ModelType::S2pg), storm::exceptions::NotSupportedException, "Abstract model type is not supported."); if (abstractModel.isOfType(storm::models::ModelType::Dtmc)) { return computeQuantitativeResult(*abstractModel.template as>(), constraintStates, targetStates, qualitativeResults);