|
|
@ -137,7 +137,7 @@ namespace storm { |
|
|
|
} |
|
|
|
|
|
|
|
// Finally, check whether all modules are okay with the current settings.
|
|
|
|
this->checkAllModules(); |
|
|
|
this->finalizeAllModules(); |
|
|
|
} |
|
|
|
|
|
|
|
void SettingsManager::setFromConfigurationFile(std::string const& configFilename) { |
|
|
@ -162,6 +162,8 @@ namespace storm { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
// Finally, check whether all modules are okay with the current settings.
|
|
|
|
this->finalizeAllModules(); |
|
|
|
} |
|
|
|
|
|
|
|
void SettingsManager::printHelp(std::string const& hint) const { |
|
|
@ -379,9 +381,11 @@ namespace storm { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void SettingsManager::checkAllModules() const { |
|
|
|
void SettingsManager::finalizeAllModules() { |
|
|
|
for (auto const& nameModulePair : this->modules) { |
|
|
|
nameModulePair.second->finalize(); |
|
|
|
nameModulePair.second->check(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|