Browse Source

Removed superfluous '.' in output of Markov automata model data.

tempestpy_adaptions
Tim Quatmann 4 years ago
parent
commit
065b366198
  1. 2
      src/storm/models/sparse/MarkovAutomaton.cpp

2
src/storm/models/sparse/MarkovAutomaton.cpp

@ -288,7 +288,7 @@ namespace storm {
this->printModelInformationHeaderToStream(out);
out << "Choices: \t" << this->getNumberOfChoices() << std::endl;
out << "Markovian St.: \t" << this->getMarkovianStates().getNumberOfSetBits() << std::endl;
out << "Max. Rate.: \t";
out << "Max. Rate: \t";
if (this->getMarkovianStates().empty()) {
out << "None";
} else {

Loading…
Cancel
Save