From a7f05847acdccd5a975de52fcb954b458a994b3e Mon Sep 17 00:00:00 2001 From: Sebastian Junges Date: Sun, 24 May 2020 11:07:51 -0700 Subject: [PATCH] better info message if an engine does not support a model --- src/storm/utility/Engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm/utility/Engine.cpp b/src/storm/utility/Engine.cpp index 02aae8e1d..3c892c8b9 100644 --- a/src/storm/utility/Engine.cpp +++ b/src/storm/utility/Engine.cpp @@ -213,7 +213,7 @@ namespace storm { for (auto const& f : {p.getRawFormula(), p.getFilter().getStatesFormula()}) { auto task = storm::modelchecker::CheckTask(*f, true); if (!canHandle(engine, modelDescription.getModelType(), task)) { - STORM_LOG_INFO("Engine " << engine << " can not handle formula '" << *f << "'."); + STORM_LOG_INFO("Engine " << engine << " can not handle formula '" << *f << "' on models of type " << modelDescription.getModelType() << "."); return false; } }