Browse Source

Use to_string in DRN exporter

main
Matthias Volk 7 years ago
parent
commit
300ccd731f
  1. 2
      src/storm/utility/DirectEncodingExporter.cpp

2
src/storm/utility/DirectEncodingExporter.cpp

@ -73,7 +73,7 @@ namespace storm {
}
if(rewardModelEntry.second.hasStateRewards()) {
os << rewardModelEntry.second.getStateRewardVector().at(group);
os << storm::utility::to_string(rewardModelEntry.second.getStateRewardVector().at(group));
} else {
os << "0";
}

Loading…
Cancel
Save