From f01d8943adec962312978157eb8307c97effb811 Mon Sep 17 00:00:00 2001 From: Matthias Volk Date: Thu, 27 Feb 2020 20:49:18 +0100 Subject: [PATCH] Indicate if result is not fully correct due to abort --- 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 b35b9f0d3..5845d5c31 100644 --- a/src/storm-cli-utilities/model-handling.h +++ b/src/storm-cli-utilities/model-handling.h @@ -666,7 +666,7 @@ namespace storm { if (result) { std::stringstream ss; ss << "'" << *property.getFilter().getStatesFormula() << "'"; - STORM_PRINT("Result (for " << (property.getFilter().getStatesFormula()->isInitialFormula() ? "initial" : ss.str()) << " states): "); + STORM_PRINT((storm::utility::resources::isTerminate() ? "Result till abort" : "Result") << " (for " << (property.getFilter().getStatesFormula()->isInitialFormula() ? "initial" : ss.str()) << " states): "); printFilteredResult(result, property.getFilter().getFilterType()); if (watch) { STORM_PRINT("Time for model checking: " << *watch << "." << std::endl);