Browse Source

fixed exporting model-features

tempestpy_adaptions
TimQu 6 years ago
parent
commit
6d5af2d414
  1. 3
      src/storm/storage/jani/ModelFeatures.cpp

3
src/storm/storage/jani/ModelFeatures.cpp

@ -21,7 +21,7 @@ namespace storm {
}
std::string ModelFeatures::toString() const {
std::string res = "[";
std::string res;
bool first = true;
for (auto const& f : features) {
if (!first) {
@ -30,7 +30,6 @@ namespace storm {
res += storm::jani::toString(f);
first = false;
}
res += "]";
return res;
}

Loading…
Cancel
Save