Browse Source

Fixed trigger rates for timed transitions not being saved in .pnpro files

tempestpy_adaptions
Alexander Bork 7 years ago
parent
commit
1850cf7368
  1. 1
      src/storm-gspn/storage/gspn/GSPN.cpp

1
src/storm-gspn/storage/gspn/GSPN.cpp

@ -433,6 +433,7 @@ namespace storm {
stream << space3 << "<transition name=\"" << trans.getName() << "\" ";
stream << "type=\"EXP\" ";
stream << "nservers-x=\"" << trans.getRate() << "\" ";
stream << "delay=\"" << trans.getRate() << "\" ";
if (transitionLayout.count(trans.getID()) > 0) {
stream << "x=\"" << transitionLayout.at(trans.getID()).x << "\" ";
stream << "y=\"" << transitionLayout.at(trans.getID()).y << "\" ";

Loading…
Cancel
Save