Browse Source

removed unused setting

tempestpy_adaptions
TimQu 6 years ago
parent
commit
52fc8c8e35
  1. 7
      src/storm-gspn/settings/modules/GSPNSettings.cpp
  2. 5
      src/storm-gspn/settings/modules/GSPNSettings.h

7
src/storm-gspn/settings/modules/GSPNSettings.cpp

@ -36,10 +36,6 @@ namespace storm {
return this->getOption(gspnFileOptionName).getArgumentByName("filename").getValueAsString(); return this->getOption(gspnFileOptionName).getArgumentByName("filename").getValueAsString();
} }
bool GSPNSettings::isToJaniSet() const {
return this->getOption(gspnToJaniOptionName).getHasOptionBeenSet();
}
bool GSPNSettings::isCapacitiesFileSet() const { bool GSPNSettings::isCapacitiesFileSet() const {
return this->getOption(capacitiesFileOptionName).getHasOptionBeenSet(); return this->getOption(capacitiesFileOptionName).getHasOptionBeenSet();
} }
@ -54,9 +50,6 @@ namespace storm {
bool GSPNSettings::check() const { bool GSPNSettings::check() const {
if(!isGspnFileSet()) { if(!isGspnFileSet()) {
if(isToJaniSet()) {
return false;
}
if(isCapacitiesFileSet()) { if(isCapacitiesFileSet()) {
return false; return false;
} }

5
src/storm-gspn/settings/modules/GSPNSettings.h

@ -24,11 +24,6 @@ namespace storm {
*/ */
std::string getGspnFilename() const; std::string getGspnFilename() const;
/**
* Whether the gspn should be transformed to Jani
*/
bool isToJaniSet() const;
/** /**
* Retrievew whether the pgcl file option was set * Retrievew whether the pgcl file option was set
*/ */
Loading…
Cancel
Save