Browse Source

Added missing line breaks

tempestpy_adaptions
Tim Quatmann 5 years ago
parent
commit
b53b6ab275
  1. 4
      src/storm-pomdp/modelchecker/ApproximatePOMDPModelchecker.cpp

4
src/storm-pomdp/modelchecker/ApproximatePOMDPModelchecker.cpp

@ -94,12 +94,12 @@ namespace storm {
stream << "# Max. Number of states with same observation: " << pomdp.getMaxNrStatesWithSameObservation() << std::endl;
if (statistics.aborted) {
stream << "# Computation aborted early";
stream << "# Computation aborted early" << std::endl;
}
// Refinement information:
if (statistics.refinementSteps) {
stream << "# Number of refinement steps: " << statistics.refinementSteps.get();
stream << "# Number of refinement steps: " << statistics.refinementSteps.get() << std::endl;
}
// The overapproximation MDP:

Loading…
Cancel
Save