Browse Source

storm-dft: Ignore compound nodes in json parser

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

3
src/storm-dft/parser/DFTJsonParser.cpp

@ -125,6 +125,9 @@ namespace storm {
STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Distribution: " << distribution << " not supported.");
success = false;
}
} else if (type == "compound") {
STORM_LOG_TRACE("Ignoring compound node '" << name << "'.");
} else {
STORM_LOG_THROW(false, storm::exceptions::NotSupportedException, "Type name: " << type << " not recognized.");
success = false;

Loading…
Cancel
Save