From 0fa361c39385d950c36c749c80708b1e79614577 Mon Sep 17 00:00:00 2001 From: TimQu Date: Mon, 30 Jul 2018 10:22:36 +0200 Subject: [PATCH] displaying property name together with the property --- src/storm-cli-utilities/model-handling.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storm-cli-utilities/model-handling.h b/src/storm-cli-utilities/model-handling.h index 8f3d44c55..412b909b6 100644 --- a/src/storm-cli-utilities/model-handling.h +++ b/src/storm-cli-utilities/model-handling.h @@ -512,7 +512,7 @@ namespace storm { } void printModelCheckingProperty(storm::jani::Property const& property) { - STORM_PRINT(std::endl << "Model checking property " << *property.getRawFormula() << " ..." << std::endl); + STORM_PRINT(std::endl << "Model checking property \"" << property.getName() << "\": " << *property.getRawFormula() << " ..." << std::endl); } template