From efce929c5f3aa249e24c726c568899bf3ba0fdd7 Mon Sep 17 00:00:00 2001 From: Tim Quatmann Date: Wed, 13 Jan 2021 13:09:54 +0100 Subject: [PATCH] Potentially allow verification of SMGs over RationalNumbers --- src/storm/api/verification.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storm/api/verification.h b/src/storm/api/verification.h index ee881e921..9ac504d7c 100644 --- a/src/storm/api/verification.h +++ b/src/storm/api/verification.h @@ -254,7 +254,7 @@ namespace storm { } template - typename std::enable_if::value, std::unique_ptr>::type verifyWithSparseEngine(storm::Environment const& env, std::shared_ptr> const& smg, storm::modelchecker::CheckTask const& task) { + typename std::enable_if::value, std::unique_ptr>::type verifyWithSparseEngine(storm::Environment const& env, std::shared_ptr> const& smg, storm::modelchecker::CheckTask const& task) { std::unique_ptr result; storm::modelchecker::SparseSmgRpatlModelChecker> modelchecker(*smg); if (modelchecker.canHandle(task)) { @@ -264,7 +264,7 @@ namespace storm { } template - typename std::enable_if::value, std::unique_ptr>::type verifyWithSparseEngine(storm::Environment const& env, std::shared_ptr> const& mdp, storm::modelchecker::CheckTask const& task) { + typename std::enable_if::value, std::unique_ptr>::type verifyWithSparseEngine(storm::Environment const& env, std::shared_ptr> const& mdp, storm::modelchecker::CheckTask const& task) { STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Sparse engine cannot verify SMGs with this data type."); }