Browse Source

Fixed output of TotalRewardFormulae with non-trivial reward accumulation.

tempestpy_adaptions
TimQu 6 years ago
parent
commit
fd2e4efc0b
  1. 3
      src/storm/logic/TotalRewardFormula.cpp

3
src/storm/logic/TotalRewardFormula.cpp

@ -30,6 +30,9 @@ namespace storm {
std::ostream& TotalRewardFormula::writeToStream(std::ostream& out) const {
out << "C";
if (hasRewardAccumulation()) {
out << "[" << getRewardAccumulation() << "]";
}
return out;
}
}

Loading…
Cancel
Save