From 77d2e9c98f29cb110b4f40668f989838d1069e34 Mon Sep 17 00:00:00 2001 From: Tim Quatmann Date: Fri, 11 Dec 2020 18:25:19 +0100 Subject: [PATCH] Fixed output of steady-state distr computation. --- src/storm-cli-utilities/model-handling.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/storm-cli-utilities/model-handling.h b/src/storm-cli-utilities/model-handling.h index b5103cae8..520e3c878 100644 --- a/src/storm-cli-utilities/model-handling.h +++ b/src/storm-cli-utilities/model-handling.h @@ -1053,7 +1053,8 @@ namespace storm { } watch.stop(); postprocessingCallback(result); - STORM_PRINT((storm::utility::resources::isTerminate() ? "Result till abort:" : "Result:") << *result); + STORM_PRINT((storm::utility::resources::isTerminate() ? "Result till abort:" : "Result:") << *result << std::endl); + STORM_PRINT("Time for model checking: " << watch << "." << std::endl); } }