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."); }