Browse Source

Fixed output of steady-state distr computation.

tempestpy_adaptions
Tim Quatmann 4 years ago
parent
commit
77d2e9c98f
  1. 3
      src/storm-cli-utilities/model-handling.h

3
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);
}
}

Loading…
Cancel
Save