Browse Source

binary storm-gspn now exits with 0 if no gspnfile is given

tempestpy_adaptions
TimQu 6 years ago
parent
commit
0f97eb89db
  1. 3
      src/storm-gspn-cli/storm-gspn.cpp

3
src/storm-gspn-cli/storm-gspn.cpp

@ -69,7 +69,8 @@ int main(const int argc, const char **argv) {
// parse gspn from file
if (!gspnSettings.isGspnFileSet()) {
return -1;
// If no gspn file is given, nothing needs to be done.
return 0;
}
std::string constantDefinitionString = "";

Loading…
Cancel
Save