Browse Source

Ignore zoom attribute in pnpro files

tempestpy_adaptions
Matthias Volk 4 years ago
parent
commit
ab045f2865
No known key found for this signature in database GPG Key ID: 83A57678F739FCD3
  1. 3
      src/storm-gspn/parser/GreatSpnEditorProjectParser.cpp

3
src/storm-gspn/parser/GreatSpnEditorProjectParser.cpp

@ -88,7 +88,8 @@ namespace storm {
if (name.compare("name") == 0) {
builder.setGspnName(storm::adapters::XMLtoString(attr->getNodeValue()));
} else if (name.compare("show-color-cmd") == 0 ||
name.compare("show-fluid-cmd") == 0) {
name.compare("show-fluid-cmd") == 0 ||
name.compare("zoom") == 0) {
// ignore node
} else {
// Found node or attribute which is at the moment not handled by this parser.

Loading…
Cancel
Save